Tagged Questions
The codecave tag has no wiki summary.
14
votes
10answers
3k views
What is a code cave, and is there any legitimate use for one?
I encountered this word for the first time in the StackOverflow question "C# Theoretical: Write a JMP to a codecave in asm." I see that according to Wiktionary, a code cave is:
an unused block of ...
3
votes
2answers
1k views
C# Theoretical: Write a JMP to a codecave in asm
Lets assume I've allocated the address where my codecave is placed using VirtualAllocEx (it returns the address) and I write my code into that address using WriteProcessMemory().
Here's the question:
...
1
vote
0answers
90 views
How to serialize the data from hooked process for injector in C# and C++/CLI?
I am facing a strange problem while serializing the data from hooked process for injector (which injected the spy dll into some other process). I am successfully landing spy dll into other managed ...
1
vote
3answers
405 views
VirtualAlloc C++ , injected dll, asm
I want to reserve space for my codecave in application.
I use VirtualAlloc function to reserve this space.
I have X questions.
What parameters (sllocation type and protection) should I use to ...
1
vote
2answers
133 views
Problem with a trainer I'm trying to create (for educational purposes)
I'm trying to create a trainer for Icy Tower 1.4 for educational purposes.
I wrote a function that shorten the WriteProcessMemory function like that:
void WPM(HWND hWnd,int address,byte data[])
{
...
0
votes
0answers
70 views
How to hook a process completely developed in VB 6.0?
I am facing the problem having a VB 6.0 made process and it has some controls (e.g Buttons,TextBoxes, drop downs etc and finally a "Send " button). When I fill up all the fields required, I just click ...
0
votes
2answers
113 views
How to hook Native process whose export functions are not available?
I need to solve a reverse engineering problem of a native process.
I am having unmanaged .exe of having some controls on it ( e.g TextBox, Buttons, TextAreas, ComboBoxes). After filling all the data ...
0
votes
1answer
171 views
How to hook MANAGED(.NET) Processes and collect information inside that process?
I need to hook managed (C#,C++/CLI) processes, I need to find and send information about how many windows it has(its associated controls and their properties)to the target application which is written ...
0
votes
4answers
296 views
Injecting thread with codecave
By using 'codecave' technique to inject code into another process; is it possible to inject code to create a new thread (and also inject the code for the new thread) and let that thread execute ...
0
votes
2answers
374 views
Is Export table contains all entries of Win32 Exe functions?
I need to know all of the Win32.exe functions or class methods contained inside its exported table (PE File). Where can I get this information? I understand every section of the PE file format but ...