Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~801 People Reached
Favorite Forums
Favorite Tags
Member Avatar for fireup6

I have a simple form which starts a new thread, and this thread displays the value of a control (TextBox) Form contains: TextBox with default value of "Default" StartButton which starts a new thread Form: [CODE] Public Class Form Private Sub StartButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles …

Member Avatar for Teme64
0
188
Member Avatar for fireup6

I'm coding a dll which i am injecting into a target process. This dll patches some code to intercept some function calls before they happen, and i need to read whats in the registers and possibly modify them before i return. The EDX register for instance, will hold an address …

0
71
Member Avatar for fireup6

[img]http://img4.imageshack.us/img4/5140/71788648.jpg[/img] [code]program stub; {$APPTYPE CONSOLE} uses SysUtils,Windows; var bufferhandle : THandle; bufferaddress : pointer; processhandle : THandle; begin ///build buffer bufferhandle := GlobalAlloc(GMEM_MOVEABLE and GMEM_ZEROINIT, 1); bufferaddress := GlobalLock(bufferhandle); //get process handle processhandle := GetCurrentProcess; //read one byte of file and load into buffer ReadProcessMemory(processhandle, ptr($830022), bufferaddress, 1, nil); end. …

Member Avatar for FlamingClaw
0
228
Member Avatar for fireup6

Im using CodeGear Delphi 2009 Builder. I also installed C++ builder so i have all the .c .h includes. I downloaded the source of an application and without making any changes i tried to compile. I get many errors in most units: [IMG]http://img376.imageshack.us/img376/6752/26142144un0.jpg[/IMG] I've spent hours trying everything. Some of …

Member Avatar for LizR
0
314