能力值:
(RANK:1060 )
|
-
-
2 楼
// fuckkingsoft.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "windows.h"
int main(int argc, char* argv[])
{
HWND hWnd = GetWindow(GetDesktopWindow(),GW_CHILD);
CHAR x[0x200] = { 0 };
hWnd = GetWindow(hWnd, GW_HWNDFIRST);
while (hWnd)
{
GetWindowTextA(hWnd, x, 0x200);
if (!stricmp(x, "crackmeapp"))
{
SendMessage(hWnd, WM_SYSCOMMAND, SC_CLOSE, 0);
break;
}
hWnd = GetWindow(hWnd, GW_HWNDNEXT);
}
printf("Hello World!\n");
return 0;
}
|
能力值:
(RANK:1060 )
|
-
-
3 楼
第三个。运行此vbs就OK
set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.AppActivate "CrackMeApp"
WScript.Sleep 100
WshShell.SendKeys "{ESC}"
|
能力值:
(RANK:1060 )
|
-
-
4 楼
|
能力值:
(RANK:1060 )
|
-
-
5 楼
|
|
|