C. 자동 가동 계산기 실현

978 단어 살다
원리: windows. h 를 이용 하여 레 지 스 트 를 수정 하고 레 지 스 트 에 항목 을 추가 합 니 다.
#include
#include
#include
using namespace std;

//     :C:\WINDOWS\system32\calc.exe
void HKRunator(char *programName)   //    (**   **)
{
	HKEY hkey = NULL;
	DWORD rc;

	rc = RegCreateKeyEx(HKEY_LOCAL_MACHINE,                      //        ,           
		"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run",
		0,
		NULL,
		REG_OPTION_NON_VOLATILE,
		KEY_WOW64_64KEY | KEY_ALL_ACCESS,    //  windows         ,    “”KEY_WOW64_64KEY | “”   
		NULL,
		&hkey,
		NULL);

	if (rc == ERROR_SUCCESS)
	{
		rc = RegSetValueEx(hkey,
			"UStealer",//      ;
			0,
			REG_SZ,
			(const BYTE *)programName,
			strlen(programName));
		if (rc == ERROR_SUCCESS)
		{
			RegCloseKey(hkey);//     ;
		}
	}
}
int main() {
	char s[100] = "\"C:\\WINDOWS\\system32\\calc.exe\"";
	HKRunator(s);
	return 0;

}

좋은 웹페이지 즐겨찾기