能力值:
( LV2,RANK:10 )
|
-
-
2 楼
程序运行图及UE下图。。附下载
如图
。附下载
1.zip
|
能力值:
( LV4,RANK:50 )
|
-
-
3 楼
这不是bat,这写出来就是exe
// dll 代码 #include <windows.h>
HINSTANCE hMod = NULL; HHOOK hhk; BOOL WINAPI DllMain(HANDLE hModule, DWORD ul_reason_for_call, LPVOID lpReserved) { hMod = (HINSTANCE)hModule; return 1; }
LRESULT CALLBACK fn(int code, WPARAM wParam, LPARAM lParam) { // add to do ... return 0; }
bool hook() { hhk = SetWindowsHookEx(WH_SHELL, fn, hMod, 0); return (hhk != 0); }
bool unhook() { return UnhookWindowsHookEx(hhk); }
// exe 代码 #include <iostream> using std::cout; using std::endl; int main(int argc, char* argv[]) { cout<<"000000000000 -- by 00(000000000)"<<endl; cout<<endl; cout<<"WL 的名字必须为 WLServer.exe,不区分大小写"<<endl; cout<< "如果有非法连接,会在 WL 目录下 worldhack.txt 有记录,请经常查看"<<endl; cout<<endl; if ( hook() ) { cout<<"启动保护成功,请不要关闭本程序(不要在本窗口上按任何键)"<<endl; } else { cout<<"启动保护失败"<<endl; } cout<<endl; system("pause"); unhook(); return 0; }
|
能力值:
( LV4,RANK:50 )
|
-
-
4 楼
不是 bat
这是 console 的输出
v3 = sub_4010E0(std::cout, "000000000000 -- by 00(000000000)"); v4 = std::basic_ostream<char_std::char_traits<char>>::operator<<(v3, std::endl); v5 = std::basic_ostream<char_std::char_traits<char>>::operator<<(v4, std::endl); v6 = sub_4010E0(v5, "WL 的名字必须为 WLServer.exe,不区分大小写"); v7 = std::basic_ostream<char_std::char_traits<char>>::operator<<(v6, std::endl); v8 = sub_4010E0(v7, "如果有非法连接,会在 WL 目录下 worldhack.txt 有记录,请经常查看"); v9 = std::basic_ostream<char_std::char_traits<char>>::operator<<(v8, std::endl); std::basic_ostream<char_std::char_traits<char>>::operator<<(v9, std::endl); if ( hook() ) { v10 = sub_4010E0(std::cout, "启动保护成功,请不要关闭本程序(不要在本窗口上按任何键)"); v11 = std::basic_ostream<char_std::char_traits<char>>::operator<<(v10, std::endl); } else { v11 = sub_4010E0(std::cout, "启动保护失败"); } std::basic_ostream<char_std::char_traits<char>>::operator<<(v11, std::endl); system("pause"); unhook(); return 0;
|
能力值:
( LV5,RANK:70 )
|
-
-
5 楼
看界面就能看出是bat?
|
能力值:
( LV2,RANK:10 )
|
-
-
6 楼
您好 这个DLL和EXE的代码您是如何看到的呢?
|
|
|