Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > 12Sky2 > 12Sky2 Hacks, Bots, Cheats & Exploits
You last visited: Today at 11:22

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

Advertisement



[Release][Method]Aeria - Bypass Attack speed hack protection

Discussion on [Release][Method]Aeria - Bypass Attack speed hack protection within the 12Sky2 Hacks, Bots, Cheats & Exploits forum part of the 12Sky2 category.

Reply
 
Old   #1

 
Mega Byte's Avatar
 
elite*gold: 0
Join Date: Dec 2009
Posts: 1,776
Received Thanks: 1,003
[Release][Method]Aeria - Bypass Attack speed hack protection

Heya all as you are now awear alt1 has patched the attack speed hack.

This is how I have worked arround it. Please Alt1 Patch it SERVER SIDE for once.


First I found the attack speed buff as one usally does. Had help from jax on that .
010d0ecb

Then we noticed it had a limiter when we tried to freeze it to anything above 20 or 21 it just did not work.
Here is how to bypass it.

Find what code accesses the attack speed buff:
I used cheat engine
Freeze the addy to 50 or something
I then right clicked on the addy and found what accesses it then i attacked a monster.

The thing I wanted was the last in the list that popped up
I then continued using OllyDBG *you could use cheat engine here but i prefer ollydbg for this*

This is the code function that copy's the attack speed modifyer buff
Code:
00430A00  /$  55            PUSH EBP
00430A01  |.  8BEC          MOV EBP,ESP
00430A03  |.  83EC 08       SUB ESP,8
00430A06  |.  894D F8       MOV DWORD PTR SS:[EBP-8],ECX
00430A09  |.  C745 FC 0000C>MOV DWORD PTR SS:[EBP-4],42C80000
00430A10  |.  8B45 08       MOV EAX,DWORD PTR SS:[EBP+8]
00430A13  |.  8378 18 00    CMP DWORD PTR DS:[EAX+18],0
00430A17  |.  7E 0C         JLE SHORT TwelveSk.00430A25
00430A19  |.  8B4D 08       MOV ECX,DWORD PTR SS:[EBP+8]
00430A1C  |.  DB41 18       FILD DWORD PTR DS:[ECX+18]
00430A1F  |.  D845 FC       FADD DWORD PTR SS:[EBP-4]
00430A22  |.  D95D FC       FSTP DWORD PTR SS:[EBP-4]
00430A25  |>  D945 FC       FLD DWORD PTR SS:[EBP-4]
00430A28  |.  8BE5          MOV ESP,EBP
00430A2A  |.  5D            POP EBP
00430A2B  \.  C2 0400       RETN 4

Stepping out of the function it had two things calling it I found the mele hit one.
Code:
0048CF5E  |.  52            PUSH EDX                                ; /Arg1
0048CF5F  |.  B9 645A5F00   MOV ECX,TwelveSk.005F5A64               ; |
0048CF64  |.  E8 973AFAFF   CALL TwelveSk.00430A00                  ; \TwelveSk.00430A00
There is also this one for other kinds of attacks
Code:
0048F61E  |.  52            PUSH EDX                                ; /Arg1
0048F61F  |.  B9 645A5F00   MOV ECX,TwelveSk.005F5A64               ; |
0048F624  |.  E8 D713FAFF   CALL TwelveSk.00430A00                  ; \TwelveSk.00430A00
Scrolling down we see a JPE

For Mele one
Code:
0048CF8A  |. /7A 1E         JPE SHORT TwelveSk.0048CFAA
For Skills one
Code:
0048F64A  |. /7A 1E         JPE SHORT TwelveSk.0048F66A
Look for code that could jump or something:
Tests god knows what against 5 im not too sure how TEST operator works all I know is that the jump is not taken when not speed hacking but is taken when speed hacking above 20 soooo.
Code:
0048CF87  |.  F6C4 05       TEST AH,5
0048CF8A  |.  7A 1E         JPE SHORT TwelveSk.0048CFAA
Solution:
Lets force it to not be taken by changing it to a nop.

Mele Hit
Code:
Origionaly
0048CF8A  |.  7A 1E         JPE SHORT TwelveSk.0048CFAA
Change to
0048CF8A      90            NOP
0048CF8B      90            NOP

Skills Hit
Code:
Origionaly
0048F64A  |. /7A 1E         JPE SHORT TwelveSk.0048F66A
Change to
0048F64A      90            NOP
0048F64B      90            NOP

And success.. we can now freeze attack speed buff address which is
010d0ecb

To anything we want.

To apply this alter the code.
You should be able to add
0048CF8A and 0048F64A as byte arrays with length of 2 and set both byte's in them to 90 90
in cheat engine or do it in memory view w/e

I win,
Mega Byte is offline  
Thanks
21 Users
Old 03/12/2010, 02:22   #2
 
Cymon's Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 94
Received Thanks: 4
wow, finally som1 smart,
nice work man
Cymon is offline  
Old 03/12/2010, 02:26   #3

 
Mega Byte's Avatar
 
elite*gold: 0
Join Date: Dec 2009
Posts: 1,776
Received Thanks: 1,003
Thanks
Mega Byte is offline  
Old 03/12/2010, 02:37   #4
 
elite*gold: 0
Join Date: Apr 2007
Posts: 649
Received Thanks: 105
I could have found I just fell asleep.
Iktov is offline  
Old 03/12/2010, 02:39   #5

 
Mega Byte's Avatar
 
elite*gold: 0
Join Date: Dec 2009
Posts: 1,776
Received Thanks: 1,003
lol you snooze you lose Iktov XD but no need to find it now :P
Mega Byte is offline  
Old 03/12/2010, 03:02   #6
 
elite*gold: 0
Join Date: Apr 2007
Posts: 649
Received Thanks: 105
Quote:
Originally Posted by Mega Byte View Post
lol you snooze you lose Iktov XD but no need to find it now :P
Bah, whatever I fail anyways.
Iktov is offline  
Old 03/12/2010, 03:03   #7

 
Mega Byte's Avatar
 
elite*gold: 0
Join Date: Dec 2009
Posts: 1,776
Received Thanks: 1,003
nawh ur all good Iktov
Mega Byte is offline  
Old 03/12/2010, 03:04   #8
 
elite*gold: 0
Join Date: Mar 2010
Posts: 252
Received Thanks: 23
Cool beans! Now I just need to figure out what the **** you did! lol
generichaxor is offline  
Old 03/12/2010, 03:56   #9

 
Mega Byte's Avatar
 
elite*gold: 0
Join Date: Dec 2009
Posts: 1,776
Received Thanks: 1,003
Remember to nop both as there is one for skills and one for mele *i updated with the new information thanks iktov for confirming that the other one was for different kinds of attack lol*
Mega Byte is offline  
Old 03/12/2010, 03:57   #10
 
elite*gold: 0
Join Date: Mar 2010
Posts: 3
Received Thanks: 0
Thanks so much for all of this, I understand that people are busy but ive tried using this in CE although i can not for the love of *** figure it out so if you please help in idiot terms id be so grateful
Shooter_97 is offline  
Old 03/12/2010, 04:17   #11

 
Mega Byte's Avatar
 
elite*gold: 0
Join Date: Dec 2009
Posts: 1,776
Received Thanks: 1,003
please do the cheat engine tutorial... you can find it in the c:\program files\cheat engine\ folder prehaps. Try hacking a 2D game first thats single player eg set your score on pinball high or something.

After you have done the tutorial and understand how to use cheat engine you should be able to add
0048EA8A and 0048F3EA as byte arrays with length of 2 and set both byte's in them to 90 90

Or just wait for me to put them into map fun tonight or tomrow lol.
Mega Byte is offline  
Old 03/12/2010, 14:56   #12
 
Cymon's Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 94
Received Thanks: 4
any1 makin new trainers or somthing alike?
Cymon is offline  
Old 03/12/2010, 15:31   #13
 
elite*gold: 0
Join Date: Nov 2005
Posts: 111
Received Thanks: 41
Smile

Woot i am not releasing any bot atm. I am moving from autoit to C# with the help from megabyte. . If you just need the auto spam key , it will still work. You know where to get it .
gimteoh is offline  
Old 03/12/2010, 15:56   #14
 
elite*gold: 0
Join Date: Jul 2009
Posts: 160
Received Thanks: 3
lol

sneaky sneaky alt 1 thinking they can set a limited on attack speed..smh..smh but good job thx
killadaho1 is offline  
Old 03/12/2010, 17:31   #15
 
elite*gold: 0
Join Date: Aug 2009
Posts: 259
Received Thanks: 18
agree good jub but i dont get why u need speed hacks
>.> + speed hacks ppl using em and get reported most and by that alt 1 will make some security from all hacks 2 many noobs use it
vtdved is offline  
Reply


Similar Threads Similar Threads
[Release] 12Sky2 Trainer Attack Speed , Speed hack [Mayn]
02/25/2012 - 12Sky2 Hacks, Bots, Cheats & Exploits - 14 Replies
I quit now =)
[Release] Attack Speed Address [AERIA]
08/11/2009 - 12Sky2 Hacks, Bots, Cheats & Exploits - 55 Replies
Updated 09.07.09 Here u go, 1. open twelvesky2.exe with cheat engine 2. add 00C85D77 to adress list 3. edit the value to what u want and freeze it. I personally wont make it higher then 160 coz its too obvious and dont run that smooth if the attack speed is too high. 4. Dont use it in crowded places or u will get caught easily. Credits for the new offset to kesawea



All times are GMT +2. The time now is 11:22.


Powered by vBulletin®
Copyright ©2000 - 2024, 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 ©2024 elitepvpers All Rights Reserved.