Register for your free account! | Forgot your password?

Go Back   elitepvpers > Coders Den > General Coding
You last visited: Today at 00:36

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Spielehack mit Delphi

Discussion on Spielehack mit Delphi within the General Coding forum part of the Coders Den category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: May 2011
Posts: 79
Received Thanks: 5
Spielehack mit Delphi

Ich wollte mal fragen, ob ihr ein Tutorial kennt, wo beschrieben wird
wie man einen Spielehack mit delphi erstellt.
In C++ bin ich noch nicht eingearbeitet und habe das programm auch nicht.

Das mit delphi kann am besten ein normales programm sein oder
eine dll.

MfG HerrErdnuss
HerrErdnuss is offline  
Old 06/08/2011, 17:25   #2
 
HardCore.1337's Avatar
 
elite*gold: 1
Join Date: Feb 2009
Posts: 1,726
Received Thanks: 729
bitte:

1 sek. gesucht

sonst hier die DLL Injektion Vorlage

Code:
library testdll;

uses
  SysUtils,
  Windows,
  Classes;

VAR
    dwOldDestProt: DWord = 0; 
    Data: Array[0..1] of Byte;

{$R *.res}

Procedure MemSet; stdcall;
begin
  Data[0] := $EB; // Opcode
  Data[1] := $07; // Opcode


  VirtualProtect(Ptr(Adresse), SizeOf(Byte)*2, PAGE_EXECUTE_READWRITE, @dwOldDestProt);
  
  CopyMemory(Ptr(Adresse), @Data, SizeOf(Byte)*2);

  // Alten Modus wiederherstellen
  VirtualProtect(Ptr(Adresse), SizeOf(Byte)*2, dwOldDestProt, nil);


end;

exports MemSet;

begin
  MemSet;
end.
HardCore.1337 is offline  
Old 08/06/2011, 20:45   #3
 
elite*gold: 0
Join Date: Nov 2010
Posts: 8
Received Thanks: 4
Assuming I don't speak german very well (to be honest just a little bit) I've seen you are looking for a trainer's source code in Delphi.
Maybe you can try this stand alone here i'm using ProcessInfo 1.3 and I don't have Rad installed so I cannot test this code out for you
Api Used is WriteProcessMemory you can check it out on msdn
BOOL WINAPI WriteProcessMemory(
__in HANDLE hProcess,
__in LPVOID lpBaseAddress,
__in LPCVOID lpBuffer,
__in SIZE_T nSize,
__out SIZE_T *lpNumberOfBytesWritten
);
------------------------------------------------------Source starts here
var
ProcessInfo : TProcessInfo;
Process : TProcessItem;
PID: Cardinal;
ProcessHandle : THandle;
ThreadId : integer;
buffer : PChar;
write : cardinal; // it is the fifth parameter of
//WriteProcessMemory A pointer to a variable that receives the number of
//bytes transferred into the specified process.
//This parameter is optional. If lpNumberOfBytesWritten is NULL,the
//parameter is ignored.

Const
William = 'William is cool obviously! :P'
Address = $1A3D33E; // [the address] A pointer to the base address in //the specified process to which data is written
Value = $32; // the value you need to set
NumberOfBytes = 1; // the number of bytes to be written to the process

//# (Put the following code inside a command button routine)#

begin
ProcessInfo := TProcessInfo.Create(nil);
try
Process := ProcessInfo.RunningProcesses.FindByName('the name of the process you wanna hack plus the extension, E.G : calc.exe');
if Assigned(Process) then
begin
PID := Process.ProcessID;
ProcessHandle := OpenProcess(PROCESS_ALL_ACCESS,False,PID);
if ProcessHandle > 0 then
try
GetMem(buf,1);
buffer^ := Chr(Value);
WriteProcessMemory(ProcessHandle,ptr(Address),buff er,NumberOfBytes,write;
FreeMem(buf);
closehandle(ProcessHandle);
finally
CloseHandle(ProcessHandle);
end;
end;
finally
ProcessInfo.Free;
ShowMessage(William);
end;
end;

--------------------------------------------------------End Source it should work
if you change your mind and you prefer develop a trainer in c# or c++ I'm here
William
King William is offline  
Reply


Similar Threads Similar Threads
DELPHI - Who make Exploits, Hacks and Tools with DELPHI?
05/15/2013 - CO2 Programming - 13 Replies
Hi all. Iwith DELPHI, but a dont now. hello, I use Delphi to program and i like someone put here source code of make Exploits, Hacks and Tools bot here, or part of the code. ty to all
[DELPHI&METIN]Wie sind die Delphi Befehle für einen Bot?
03/07/2010 - General Coding - 3 Replies
Hallo liebe com, ich habe mal eine Frage: Ich möchte einen Metin Bot in Delphi schreiben aber ich weiß nicht die Befehle für eine bestimmte Taste senden etc. könnt ihr mir die pls sagen oder per pn geben MfGGGGGG
delphi 7
11/18/2006 - MapleStory - 2 Replies
i need another link to delphi 7 download because the one on the guide is down can anyone help me please :?



All times are GMT +1. The time now is 00:36.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.