You are Unregistered, please register to gain Full access.
    


RaGEZONE sponsored advertisment:

GigaToplist Image
Online Top 100 , Join now and get 1 Month of Free Premium!

 
 
LinkBack (10) Thread Tools
Old 09-05-2008   #151 (permalink)
SlashMU | Last ERA
 
slash8888's Avatar
 
Rank: Member +
Join Date: Apr 2008
Posts: 437
Thanked 0 Times in 0 Posts

Re: [Dev] AntiHack DLL

there is 16 byte only
__________________
[admin]Please do not link to referrals.[/admin]
slash8888 is offline   Reply With Quote
Old 09-05-2008   #152 (permalink)
SlashMU | Last ERA
 
slash8888's Avatar
 
Rank: Member +
Join Date: Apr 2008
Posts: 437
Thanked 0 Times in 0 Posts

Re: [Dev] AntiHack DLL

Anybody wanna help how to get the code of a cheat program????
__________________
[admin]Please do not link to referrals.[/admin]
slash8888 is offline   Reply With Quote
Old 09-05-2008   #153 (permalink)
RaGEZONER
 
Rank: Hobbit
Join Date: Apr 2007
Posts: 76
Thanked 0 Times in 0 Posts

Re: [Dev] AntiHack DLL

ppl, pliz, post compiled dll.
because i need to download visual studio to compile it only (350+ mb with 512 kbit/s Internet) =/
it isn't so hard to compile, but that's increase much time
-groove- is offline   Reply With Quote
Old 09-05-2008   #154 (permalink)
Elite Subscriber!
 
Rank: Subscriber
Join Date: Nov 2006
Posts: 341
Thanked 1 Time in 1 Post

Re: [Dev] AntiHack DLL

Originally Posted by slash8888 View Post
Anybody wanna help how to get the code of a cheat program????
Just get the line below too and you will get 16x2 => 32 bytes...
Ragnaros is offline   Reply With Quote
Old 09-05-2008   #155 (permalink)
SlashMU | Last ERA
 
slash8888's Avatar
 
Rank: Member +
Join Date: Apr 2008
Posts: 437
Thanked 0 Times in 0 Posts

Re: [Dev] AntiHack DLL

Originally Posted by Ragnaros View Post
Just get the line below too and you will get 16x2 => 32 bytes...
hmm, ss plx. . . . thx add me lenardfangon@yahoo.com . . . thx
__________________
[admin]Please do not link to referrals.[/admin]
slash8888 is offline   Reply With Quote
Old 09-05-2008   #156 (permalink)
SlashMU | Last ERA
 
slash8888's Avatar
 
Rank: Member +
Join Date: Apr 2008
Posts: 437
Thanked 0 Times in 0 Posts

Re: [Dev] AntiHack DLL

Originally Posted by -groove- View Post
ppl, pliz, post compiled dll.
because i need to download visual studio to compile it only (350+ mb with 512 kbit/s Internet) =/
it isn't so hard to compile, but that's increase much time
are you LoL? :horse: i think you are just not a noob.
__________________
[admin]Please do not link to referrals.[/admin]
slash8888 is offline   Reply With Quote
Old 09-05-2008   #157 (permalink)
Ultimate Member
 
DiabloMu Admin's Avatar
 
Rank: Member
Join Date: Jun 2007
Location: My Own World
Posts: 154
Thanked 1 Time in 1 Post

Re: [Dev] AntiHack DLL

Thank you for the updates

compiled dll and no problems here and i've tested on different OS
__________________
Diablo Network 4 Years Online

Low Exp Servers: 100x
High Exp Servers: 5000x
DiabloMu Admin is offline   Reply With Quote
Old 09-05-2008   #158 (permalink)
RaGEZONER
 
Rank: Hobbit
Join Date: Apr 2007
Posts: 76
Thanked 0 Times in 0 Posts

Re: [Dev] AntiHack DLL

Originally Posted by slash8888 View Post
are you LoL? :horse: i think you are just not a noob.
sorry, but i noob in programming in c++
-groove- is offline   Reply With Quote
Old 09-05-2008   #159 (permalink)
SlashMU | Last ERA
 
slash8888's Avatar
 
Rank: Member +
Join Date: Apr 2008
Posts: 437
Thanked 0 Times in 0 Posts

Re: [Dev] AntiHack DLL

anybody wanna post full guide to get the code of a Cheat Program with SS if possible.... Thx. . . . . Ill gonna give u 5 man!
__________________
[admin]Please do not link to referrals.[/admin]
slash8888 is offline   Reply With Quote
Old 09-05-2008   #160 (permalink)
Outlaws Online Owner
 
genoxide's Avatar
 
Rank: Member +
Join Date: Jul 2007
Location: Cyprus
Posts: 297
Thanked 20 Times in 16 Posts

Re: [Dev] AntiHack DLL

How did you guys stopped main from crashing?
genoxide is offline   Reply With Quote
Old 09-05-2008   #161 (permalink)
SlashMU | Last ERA
 
slash8888's Avatar
 
Rank: Member +
Join Date: Apr 2008
Posts: 437
Thanked 0 Times in 0 Posts

Re: [Dev] AntiHack DLL

you are not still fix your prob?
__________________
[admin]Please do not link to referrals.[/admin]
slash8888 is offline   Reply With Quote
Old 09-05-2008   #162 (permalink)
我们是最好的!
 
[RCZ]ShadowKing's Avatar
 
Rank: Member +
Join Date: Jul 2007
Location: Romania Iasi
Posts: 1,145
Thanked 40 Times in 32 Posts

Re: [Dev] AntiHack DLL

Originally Posted by plugged View Post
How did you guys stopped main from crashing?
Originally Posted by [RCZ]ShadowKing View Post
tommeg wrote the hook method:
Code:
1.PUSH *to AntiHack.dll Offset*
2.CALL DWORD PTR DS:[LoadLibraryA]
3.OR EAX,EAX
4.JE *EmptySpace* - If dll will not founded, it will crash the gs
5.PUSH *to Main() Offset*
6.PUSH EAX
7.CALL DWORD PTR DS:[GetProcAddress]
8.CALL EAX
9.JMP *EntryPoint*
1.before do the push search free offsets(DB 00) and right click on offset,Follow In Dump - > Section.Write the dll name(Right Click-> Binary->Edit) in the space that you selected(TEST.dll have 8 characters,select 8 spaces to write the TEST.dll if your dll name is T.dll it have 5 characters so you need 5 spaces).Do the push to the offset of the dll name.
2.Search LoadLibraryA offset in your main(you can easy see his offset because is used on some main functions)
3.write the code
4.JE to a free offset(DB 00)
5.like at step 1 only you need to write Main()(6 characters=>6 spaces)
6.write the code
7.same at step 2 but for GetProcAddress
8.write the code
9.JMP to entry point(the offset where main open)

In case you use more than 1 dll:
Code:
1.First DLL JMP must be offset of PUSH of the second DLL
2.Second DLL JMP must be the original offset
I hope you understand and you will can hook the dll!
your hook is wrong,this is the reason for crash!
__________________
[RCZ]ShadowKing is offline   Reply With Quote
Old 09-05-2008   #163 (permalink)
SlashMU | Last ERA
 
slash8888's Avatar
 
Rank: Member +
Join Date: Apr 2008
Posts: 437
Thanked 0 Times in 0 Posts

Re: [Dev] AntiHack DLL

but how about "How to get the code of Cheat Program"? Please give me guide . . . .thx. . . . it may help . . . .
__________________
[admin]Please do not link to referrals.[/admin]
slash8888 is offline   Reply With Quote
Old 09-05-2008   #164 (permalink)
Outlaws Online Owner
 
genoxide's Avatar
 
Rank: Member +
Join Date: Jul 2007
Location: Cyprus
Posts: 297
Thanked 20 Times in 16 Posts

Re: [Dev] AntiHack DLL

Originally Posted by [RCZ]ShadowKing View Post
your hook is wrong,this is the reason for crash!
http://hang-over.ucoz.ru/MuOnline/main-working.rar
heres the main2.exe with dll attached, i've gone over it like 10 times now can't find whats wrong with it, check it if you want.
genoxide is offline   Reply With Quote
Old 09-05-2008   #165 (permalink)
SlashMU | Last ERA
 
slash8888's Avatar
 
Rank: Member +
Join Date: Apr 2008
Posts: 437
Thanked 0 Times in 0 Posts

Re: [Dev] AntiHack DLL

no one will hook that for you. . . . all are working for theirself . . . But tommeg is mercyful. . . Hooking dll is simple, the guide almost at your eyes!
__________________
[admin]Please do not link to referrals.[/admin]
slash8888 is offline   Reply With Quote
Old 09-05-2008   #166 (permalink)
我们是最好的!
 
[RCZ]ShadowKing's Avatar
 
Rank: Member +
Join Date: Jul 2007
Location: Romania Iasi
Posts: 1,145
Thanked 40 Times in 32 Posts

Re: [Dev] AntiHack DLL

Originally Posted by plugged View Post
http://hang-over.ucoz.ru/MuOnline/main-working.rar
heres the main2.exe with dll attached, i've gone over it like 10 times now can't find whats wrong with it, check it if you want.
i will hook it until tomorrow and i`ll post it here
__________________
[RCZ]ShadowKing is offline   Reply With Quote
Old 09-05-2008   #167 (permalink)
Outlaws Online Owner
 
genoxide's Avatar
 
Rank: Member +
Join Date: Jul 2007
Location: Cyprus
Posts: 297
Thanked 20 Times in 16 Posts

Re: [Dev] AntiHack DLL

Originally Posted by slash8888 View Post
no one will hook that for you. . . . all are working for theirself . . . But tommeg is mercyful. . . Hooking dll is simple, the guide almost at your eyes!
I didn't ask for someone to hook it for me, i only asked to check and tell me what i was doing wrong. I know how to hook dlls.
genoxide is offline   Reply With Quote
Old 09-05-2008   #168 (permalink)
SlashMU | Last ERA
 
slash8888's Avatar
 
Rank: Member +
Join Date: Apr 2008
Posts: 437
Thanked 0 Times in 0 Posts

Re: [Dev] AntiHack DLL

Originally Posted by [RCZ]ShadowKing View Post
i will hook it until tomorrow and i`ll post it here
++++ Respect again.... 10/10 . . . . .
For being mercyful . . . and teachful . . .
__________________
[admin]Please do not link to referrals.[/admin]
slash8888 is offline   Reply With Quote
Old 09-05-2008   #169 (permalink)
Outlaws Online Owner
 
genoxide's Avatar
 
Rank: Member +
Join Date: Jul 2007
Location: Cyprus
Posts: 297
Thanked 20 Times in 16 Posts

Re: [Dev] AntiHack DLL

Originally Posted by [RCZ]ShadowKing View Post
i will hook it until tomorrow and i`ll post it here
nevermind, the problem was in the source file not the way to attach it! thanks anyway (:
heres the compiled dll with the latest updates.
http://rapidshare.com/files/142821531/AH.dll.html
genoxide is offline   Reply With Quote
Old 09-05-2008   #170 (permalink)
SlashMU | Last ERA
 
slash8888's Avatar
 
Rank: Member +
Join Date: Apr 2008
Posts: 437
Thanked 0 Times in 0 Posts

Re: [Dev] AntiHack DLL

dll posted in the 2nd post is working . . . only the way of hooking . . . .
__________________
[admin]Please do not link to referrals.[/admin]
slash8888 is offline   Reply With Quote
Old 09-05-2008   #171 (permalink)
SlashMU | Last ERA
 
slash8888's Avatar
 
Rank: Member +
Join Date: Apr 2008
Posts: 437
Thanked 0 Times in 0 Posts

Re: [Dev] AntiHack DLL

Thx for Shadowking . . . i know now how to get the code. . . .. 1000000/10 . . . thx . . . . i can now protect the cheats in my PC.
__________________
[admin]Please do not link to referrals.[/admin]
slash8888 is offline   Reply With Quote
Old 09-05-2008   #172 (permalink)
SlashMU | Last ERA
 
slash8888's Avatar
 
Rank: Member +
Join Date: Apr 2008
Posts: 437
Thanked 0 Times in 0 Posts

Re: [Dev] AntiHack DLL

prob not been solved btw. . . i need to know how to get the code of a Cheat program . . . thx
__________________
[admin]Please do not link to referrals.[/admin]
slash8888 is offline   Reply With Quote
Old 09-05-2008   #173 (permalink)
LoL UseR xD!
 
[KeysS]'s Avatar
 
Rank: Subscriber
Join Date: Aug 2008
Location: Peru
Posts: 25
Thanked 0 Times in 0 Posts

Smile Re: [Dev] AntiHack DLL

Originally Posted by slash8888 View Post
prob not been solved btw. . . i need to know how to get the code of a Cheat program . . . thx
Hey man u can upload the dll with all updates? please for hook in my main :) thanks.
[KeysS] is offline   Reply With Quote
Old 09-05-2008   #174 (permalink)
SlashMU | Last ERA
 
slash8888's Avatar
 
Rank: Member +
Join Date: Apr 2008
Posts: 437
Thanked 0 Times in 0 Posts

Re: [Dev] AntiHack DLL

Originally Posted by slash8888 View Post
prob not been solved btw. . . i need to know how to get the code of a Cheat program . . . thx
anybody?
__________________
[admin]Please do not link to referrals.[/admin]
slash8888 is offline   Reply With Quote
Old 09-05-2008   #175 (permalink)
RaGEZONER
 
Rank: Hobbit
Join Date: Apr 2007
Posts: 76
Thanked 0 Times in 0 Posts

Re: [Dev] AntiHack DLL

when i hooked dll into the main it will not run... with no errors... close the main... i tried dlls from the second post and from post #169. i try to rename to just hooked worked dll.... close the main...
what's wrong?
sorry for english
Attached Thumbnails
AntiHack DLL-ggg.jpg  
-groove- is offline   Reply With Quote
 

Bookmarks

Thread Tools


LinkBacks (?)
LinkBack to this Thread: http://forum.ragezone.com/f508/antihack-dll-421623/
Posted By For Type Date
Hop.oo.lv • View topic - [palidziba] WPe PRO! This thread Refback 09-13-2009 02:37 PM
mux online? - GForum Post #0 Refback 08-25-2009 09:02 PM
[Aporte] - Hookear Dll en Main - Page 2 - IGNetwork - InfernoGames This thread Refback 08-20-2009 03:29 PM
[Dev] AntiHack DLL This thread Refback 06-16-2009 04:14 PM
[server] Wpisywanie Kodu W Gsa/podpinanie Dll - gamecenter.pl This thread Refback 04-14-2009 10:10 PM
Hop.oo.lv This thread Refback 04-14-2009 03:58 PM
Help - Request Hook gi This thread Refback 04-11-2009 01:23 AM
Help - Request Hook gi This thread Refback 03-30-2009 10:29 AM
Lord Factory Network :: Zobacz temat - Jak zabespieczyc Dll This thread Refback 03-29-2009 12:41 PM
[Dev]AntiHack DLL - Anti WPE - | C Post #0 Refback 03-29-2009 11:07 AM



Translated by Google
Albanian Arabic Belarusian Bulgarian Catalan Chinese Croatian Czech Danish Dutch English Estonian Filipino Finnish French Galician German Greek Hebrew Hindi Hungarian Icelandic Indonesian Italian Japanese Korean Latvian Lithuanian Maltese Norwegian Polish Portuguese Romanian Russian Serbian Slovak Slovenian Spanish Swedish Taiwanese Thai Turkish Ukrainian Vietnamese
no new posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274