Tagged Questions
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 ...
1
vote
1answer
25 views
Questions about SetWindowsHookEx() and hooking
Here is a little background information. I'm working on replacing a dll that has been used in a dll injection technique via the AppInit_DLLs registry entry. Its purpose was to be present in every ...
1
vote
2answers
75 views
Verifying process integrity in memory?
It looks like it's impossible to prevent determined attackers from modifying one's process code/data. I'm hoping that its at least possible to detect such tampering.
Under Windows, is it possible to ...
1
vote
2answers
143 views
How to subclass Windows Explorer's window
I want to change color of listview of explorer.exe like this
I got the handle of listview window by GetTopWindow function and his family.
To subclass listview window of explorer.exe, I ...
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
2answers
70 views
reliably monitor/track/log user file accesses on Windows 7
I need to track all files accessed (created, opened, read) by a user and log these actions for further processing within a separate application. I have investigated and searched for possible ways to ...
1
vote
4answers
226 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
100 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
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
1answer
468 views
dll injection using C
hey i m trying to inject a dll into a process i.e lsass.exe to get hashes.Its a bit hacky but cant help its my project.
I have a code of dll injection but in visual C++ it gives errors such as..
at ...
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 ...