![]() |
|
|||||||
| View Poll Results: Would you use this debugger? | |||
| Yes (mainly x32) |
|
97 | 29.04% |
Not at all
|
|
25 | 7.49% |
| Yes, if it gets better (please post feature suggestions) |
|
90 | 26.95% |
| Yes (mainly x64) |
|
122 | 36.53% |
| Voters: 334. You may not vote on this poll | |||
|
|
Thread Tools | Display Modes |
|
#11
|
|||
|
|||
|
Hello,
Syoma is right, you can do something like setting the EIP. Another method is to simply code a small DLL loader that does something like this: Code:
#include <windows.h>
int main() {
HINSTANCE hInst = LoadLibraryA("x32gui.dll");
typedef int (*GUIGUIINIT)(int, char**);
GUIGUIINIT _gui_guiinit = (GUIGUIINIT)GetProcAddress(hInst, "_gui_guiinit");
int result = _gui_guiinit(0, nullptr);
return 0;
}
Mr. eXoDia |
| The Following User Says Thank You to mr.exodia For This Useful Post: | ||
b30wulf (09-24-2015) | ||
| Tags |
| bit, debugger, x32, x64, x64_dbg |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Debug with x64dbg | dnvthv | General Discussion | 2 | 03-22-2025 21:49 |
| Add .lib file on x64dbg ? | LaDidi | General Discussion | 0 | 02-18-2022 14:39 |
| DBG2AP - x64dbg plugin | Agmcz | Community Tools | 1 | 06-15-2019 07:14 |
| nfd - x64dbg plugin | hors | Community Tools | 2 | 04-01-2018 08:18 |
| x64dbg python | Storm Shadow | Developer Section | 6 | 08-04-2017 15:29 |