|
 |
 |
Ways to stop DeDe in Delphi
|
 |
 |
 |
 |
| Author |
Message |
KenTheFurry Special Member



 Joined: 11 Apr 2008 Posts: 408 Location: Michigan
|
|
 |
Lol because of my feelings twords DeDe I decided to make this post it will show one good way to stop DeDe from decompiling your Delphi program and the second is just a fun bit of code to kill olly.
The first one is the hardest to reverse and the second part is just for fun, well it is funny to me.
Tutorial for my anti-DeDe
| Use this download links: |
| Code: |
| http://www.mediafire.com/?ndzmj40zzyr |
|
and the kill olly code...
| Use this download links: |
| Code: |
procedure killOlly;
var
window: HWND;
i, hid, pid: Integer;
write: Cardinal;
buf: array[1..100] of Byte;
label main, notF, F;
begin
goto main;
notF:
Exit;
main:
window:=FindWindow('OLLYDBG', nil);
if(window=0)then goto notF;
goto F;
Exit;
F:
GetWindowThreadProcessId(window, @pid);
hid:=OpenProcess(PROCESS_ALL_ACCESS, False, pid);
i:=1;
for i:=1 to 100 do
begin
buf[i]:=$90;
end;
WriteProcessMemory(hid, Pointer($004AEF94), @buf, 100, write);
CloseHandle(hid);
Exit;
end; |
|
Just add killOlly; to a timer or in the from load.
-=:Mirrors:=-
| Use this download links: |
| Code: |
http://beaver.johndurr.com/tuts/KTF_Anti-DebugTricks.rar
Thanks to Office Jesus |
|
|
_________________
-KenTheFurry
Last edited by KenTheFurry on Fri Apr 24, 2009 10:51 pm; edited 3 times in total |
|
Date Posted:Thu Apr 23, 2009 8:21 pmThanks: 11Thanked 50 Times In 32 Posts
|
| Author |
Message |
HackMutant FOFF Team



 Joined: 22 Aug 2008 Posts: 459 Location: Under The Bunk Bed!
|
|
 |
Easily use Delphi 2009 and DeDe won't De-compile your eXecutable |
_________________
"Miss a Moment in your Life and Don't Miss your Life in a Moment!"
 |
|
Date Posted:Thu Apr 23, 2009 9:05 pmThanks: 39Thanked 56 Times In 40 Posts
|
| Author |
Message |
Kripton FOFF Team



 Joined: 30 Aug 2008 Posts: 331 Location: In Bed Usually
|
|
 |
| HackMutant wrote: |
Easily use Delphi 2009 and DeDe won't De-compile your eXecutable |
Yeh but Delphi 2009 makes bigger executables and cant do cryptos properly. |
_________________
..::Buy any software you will use longer than the trial::..
 |
|
Date Posted:Thu Apr 23, 2009 9:12 pmThanks: 16Thanked 47 Times In 40 Posts
|
| Author |
Message |
Office Jesus Special Member



 Joined: 22 Nov 2008 Posts: 110 Location: Cubicle at Heaven, Inc.
|
|
 |
Very nice. I never would have thought of doing something so simple as that. I will mirror this for great justice.
Thanks!
Package includes:
- DeDe Tutorial
- OllyDebug 1.10
- OllyDump
- killOlly.txt
| Use this download links: |
| Code: |
| http://beaver.johndurr.com/tuts/KTF_Anti-DebugTricks.rar |
|
|
_________________
|
|
Date Posted:Fri Apr 24, 2009 10:25 pmThanks: 6Thanked 26 Times In 16 Posts
|
| Author |
Message |
soft hunter Good Member

.jpg)

 Joined: 13 Mar 2009 Posts: 66 Location: BIG BAZAR
|
|
 |
| thank oj for mirror. |
|
|
Date Posted:Sat Apr 25, 2009 2:17 pmThanks: 7Thanked 1 Times In 1 Posts
|
Astalavista Forum Index :: Free Talk About Cracking :: Ways to stop DeDe in Delphi
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
|