Tagged Questions

9
votes
2answers
6k views

Hooking DirectX EndScene from an injected DLL

I want to detour EndScene from an arbitrary DirectX 9 application to create a small overlay. As an example, you could take the frame counter overlay of FRAPS, which is shown in games when activated. ...
5
votes
2answers
496 views

Call a function from C# .exe with unmanaged C++ .dll

So, I have an executable file that was made with C#, I don't have its source code but I have disassembled it with IDA, and it gave me a lot of object oriented assembly. I've made an .exe file that ...
3
votes
1answer
136 views

Hooking sendto() causes crash depending on code ordering

I'm using a DLL-injector to inject a dll which goes into the IAT and replaces the system call sendto() with my own. This is the replace method. void replaceFunction(DWORD f, DWORD nf) { // Base ...
3
votes
5answers
2k views

Getting a handle to the processes main thread

I have created an additional thread in some small testing app and want to suspend the main thread from this additional thread. The additional thread is created via CreateRemoteThread from an external ...
2
votes
1answer
62 views

How to call this assembly function in Inlined ASM in C++ (DLL Injection)

seg000:004481D0 ; =============== S U B R O U T I N E ======================================= seg000:004481D0 seg000:004481D0 ; Attributes: bp-based frame seg000:004481D0 seg000:004481D0 sub_4481D0 ...
2
votes
2answers
131 views

Ejecting after injecting DLL from running process

I wrote this function to inject DLL into running process: DLL_Results CDLL_Loader::InjectDll() { DWORD ThreadTeminationStatus; LPVOID VirtualMem; HANDLE hProcess, hRemoteThread; ...
2
votes
4answers
165 views

Using undocumented classes in C++

I'm in the process of reverse-engineering a Windows executable. I found a class that I want to use from some code that I inject into the executable (different thread, own stack). How would I go about ...
1
vote
2answers
127 views

Remote thread is failing on call to LoadLibrary with error 87

I am tring to create a Remote thread that will load a DLL I wrote, and run a function from it. The DLL is working fine (Checked) but from some reason, the Remote thread fails and the proccess in which ...
1
vote
1answer
381 views

C++ function hook inside source code of DLL

I have the source code from a C++ DLL. This DLL is part of an applicaton. I want to hook a function loaded in memory by another DLL, so that my hooked function gets called by all other DLL's instead ...
1
vote
1answer
150 views

How to catch EVERY exception in C++/Windows?

I have a DLL that's being injected into very old, buggy and now unsupported by it's developer application. Sometimes that application crashes, and I need some way to catch literally all unhandled ...
1
vote
7answers
238 views

Change the address of a member function in C++

in C++, I can easily create a function pointer by taking the address of a member function. However, is it possible to change the address of that local function? I.e. say I have funcA() and funcB() ...
1
vote
4answers
227 views

Grabbing memory from another process

in Windows, lets say I have used DLL Injection to get into another process. I have also done some screencaptures of the memory on the process I have injected into and know the location of the data I ...
0
votes
2answers
101 views

Window Maximum Maximise

I am looking to create a program where I can set the maximum maximize size (as in the size the window maximises to when you hit the maximise button) and maximize position (X/Y coordinated for the ...
0
votes
0answers
160 views

Injecting DLL that starts .NET runtime corrupts clr.dll

I've been trying to load the .NET runtime using some code from MSDN Community Goodies and my own C++ injection code. I inject a C++ DLL that calls the .NET loading code from MSDN. Both these ...
0
votes
3answers
163 views

Variable keeps getting set to NULL after function in DLL

I need valid data to be in the global variable QObject *p. However, assigning anything to this variable inside of a function works within the scope of the function, but after the function returns, p ...
0
votes
2answers
605 views

WinAPI Get access to another application's controls

I need to get list of all controls from win calculator (calc.exe) and press buttons on calc from my application. I tried code injection and now could execute my code from calc application. In the ...
0
votes
0answers
91 views

Intercepting the Move command in Windows

I am working on a plugin for a document tagging software. I would like to intercept the MOVE operation in Windows explorer , and let the tagging software handle it instead . I was thinking about ...
0
votes
2answers
418 views

finding a loaded dll using a CreateToolHelp32Snapshot, finding a function within the dll and then calling it, GetProcAddress

I'm trying to get a handle to a function within a .dll. I am creating a CreateToolHelp32Snapshot and then enumerating over the modules until I find the one I want, from that .dll I want to find a ...
0
votes
2answers
470 views

In another process address space, calling functions in dlls, how to

Ok, so I have a dll injected into a target process address space. How do I return a list of the functions provided by a dll that the target process is using, lets say user32.dll; then lets say that ...
0
votes
2answers
1k views

LoadLibraryW doesn't work while LoadLibraryA does the job

I have written some sample program and DLL to learn the concept of DLL injection. My injection code to inject the DLL to the sample program is as follows (error handling omitted): std::wstring ...