-
Автор темы
- #1
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Код:
#include <iostream>
#include <string>
#include <winnt.h>
#include <libloaderapi.h>
/*
#include <stdio.h>
#include <direct.h>
#include <string>
std::string getCurrentFilePath() {
char path[FILENAME_MAX];
_getcwd(path, sizeof(path));
return path;
}
*/ @Irval
int main() {
TCHAR szExeFileName[MAX_PATH];
GetModuleFileName(NULL, szExeFileName, MAX_PATH);
string path = string(szExeFileName);
string exe = path.substr(path.find_last_of("\\") + 1, path.size());
srand(time(0));
char letters[] = "01V8YutSgDmzEX8pK3gimydac1Sn2eWa9g3z";
char newname[17];
int z = rand() % 5 + 5;
for (int i = 0; i < z; i++)
{
char x = letters[rand() % 36];
newname[i] = x;
}
newname[z] = 0x0;
strcat_s(newname, ".exe\0");
rename(exe.c_str(), newname);
return 0;
}
4:20
в int main()
Последнее редактирование: