Register for your free account! | Forgot your password?

You last visited: Today at 02:56

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

Advertisement



[ESRO]Sp Exploit - Packed based working

Discussion on [ESRO]Sp Exploit - Packed based working within the SRO PServer Guides & Releases forum part of the SRO Private Server category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Jul 2009
Posts: 1,555
Received Thanks: 740
[ESRO]Sp Exploit - Packed based working

You can find the Guide in the Chat:



You will need this autoit script to send the packages:

Code:
#cs ----------------------------------------------------------------------------

 AutoIt Version: 3.3.6.0
 Author:         Frayzer

 Script Function:
	Template AutoIt script.

#ce ----------------------------------------------------------------------------

; Script Start - Add your code below here

#include <string.au3>
Global $sBuffer, $rBuffer
Global $iSize, $iIndex

#region PacketWriter
Func NewPacket($sValue, $iValue)
	Local $sTemp = Hex($sValue)
	$sBuffer = ""
	$iSize = 0
	$sBuffer &= StringLeft(ReverseHex(Hex($sValue)), 4);length
	$sBuffer &= StringLeft(ReverseHex(Hex($iValue)), 4);security
EndFunc   ;==>NewPacket

Func AppendByte($sValue)
	$sBuffer &= StringRight(Hex($sValue), 2)
	$iSize += 1
EndFunc   ;==>AppendByte

Func AppendWord($sValue)
	$sBuffer &= StringLeft(ReverseHex(Hex($sValue)), 4)
	$iSize += 2
EndFunc   ;==>AppendWord

Func AppendDWord($sValue)
	$sBuffer &= StringLeft(ReverseHex(Hex($sValue)), 8)
	$iSize += 4
EndFunc   ;==>AppendDWord

Func AppendString($sString, $Unicode = false)
	Local $iLength = StringLen($sString)
	If $Unicode Then
		$sBuffer &= _StringToHexExt($sString, True)
		$iSize += $iLength * 4
	Else
		$sBuffer &= _StringToHexExt($sString)
		$iSize += $iLength * 2
	EndIf
EndFunc   ;==>AppendString

Func GetPacket()
	Local $sTemp = "0x"
	$sTemp &= StringLeft(ReverseHex(Hex($iSize)), 4)
	$sTemp &= $sBuffer
	Return $sTemp
EndFunc   ;==>GetPacket
#endregion

#region PacketReader
Func BeginParse($sString)
	$iIndex = 1
	$rBuffer = StringMid($sString, 13)
	Return Dec(StringMid($sString, 3, 2) & StringMid($sString, 1, 2))
EndFunc   ;==>BeginParse

Func ReadByte()
	Local $result = Dec(StringMid($rBuffer, $iIndex, 2))
	$iIndex += 2
	Return $result
EndFunc   ;==>ReadByte

Func ReadWord()
	Local $result = Dec(ReverseHex(StringMid($rBuffer, $iIndex, 4)))
	$iIndex += 4
	Return $result
EndFunc   ;==>ReadWord

Func ReadDWord()
	Local $result = Dec(ReverseHex(StringMid($rBuffer, $iIndex, 8)))
	$iIndex += 8
	Return $result
EndFunc   ;==>ReadDWord

Func ReadString($iLength, $Unicode = False)
	Local $result, $string = ""
	If $Unicode Then
		For $i = 0 To $iLength - 1
			$string &= StringMid($rBuffer, $iIndex + $i * 4, 2)
		Next
		$iIndex += $iLength * 4
	Else
		$string = StringMid($rBuffer, $iIndex, $iLength * 2)
		$iIndex += $iLength * 2
	EndIf
	$result = _HexToString($string)
	Return $result
EndFunc   ;==>ReadString
#endregion

Func ReverseHex($sString)
	Local $sTemp, $len
	For $i = StringLen($sString) + 1 To 1 Step -2
		$sTemp &= StringMid($sString, $i, 2)
	Next
	Return $sTemp
EndFunc   ;==>ReverseHex

Func _StringToHexExt($sString, $Unicode = False)
	Local $string
	If $Unicode Then
		For $i = 1 To StringLen($sString)
			$string &= _StringToHex(StringMid($sString, $i, 1)) & "00"
		Next
	Else
		For $i = 1 To StringLen($sString)
			$string &= _StringToHex(StringMid($sString, $i, 1))
		Next
	EndIf
	Return $string
EndFunc   ;==>_StringToHexExt
(Credits go to ).

Have fun and enjoy it!

PS: KingLi wanted me to release it!
LaHonda781 is offline  
Thanks
2 Users
Old 08/09/2011, 02:29   #2
 
elite*gold: 20
Join Date: Aug 2008
Posts: 2,196
Received Thanks: 910
lets test thanks
i will post result later
nansif2 is offline  
Old 08/09/2011, 03:28   #3
 
Limeni87's Avatar
 
elite*gold: 0
Join Date: Jan 2010
Posts: 203
Received Thanks: 83
And what i do with this code ?
I mean where i put it ?
Limeni87 is offline  
Old 08/09/2011, 03:48   #4
 
3lyka's Avatar
 
elite*gold: 0
Join Date: Feb 2008
Posts: 649
Received Thanks: 320
Quote:
Originally Posted by Limeni87 View Post
And what i do with this code ?
I mean where i put it ?
AutoIt look at the start of script
3lyka is offline  
Old 08/09/2011, 03:50   #5
 
_HouseMusicx3's Avatar
 
elite*gold: 100
Join Date: Dec 2007
Posts: 12,305
Received Thanks: 5,307
So this autoit script is the bypass ?

if yes

baby here i come ff in no time

i gonna give it a try after i got some cursed heart
_HouseMusicx3 is offline  
Thanks
1 User
Old 08/09/2011, 03:52   #6
 
lordjaggi's Avatar
 
elite*gold: 0
Join Date: Apr 2007
Posts: 4,008
Received Thanks: 1,583
all admin gotta check is see how many sp people make in an hour/day and people should get caught. Sadly he too lazy
lordjaggi is offline  
Thanks
1 User
Old 08/09/2011, 03:57   #7
 
_HouseMusicx3's Avatar
 
elite*gold: 100
Join Date: Dec 2007
Posts: 12,305
Received Thanks: 5,307
to bad im noob in autoit cant even start the script o.O
_HouseMusicx3 is offline  
Old 08/09/2011, 04:00   #8
 
elite*gold: 0
Join Date: Feb 2010
Posts: 2,278
Received Thanks: 443
well iam not good with this
i dont know what to do xD
better if there's guide
with video or pic xD
GL
rushcrush is offline  
Old 08/09/2011, 04:08   #9
 
_HouseMusicx3's Avatar
 
elite*gold: 100
Join Date: Dec 2007
Posts: 12,305
Received Thanks: 5,307
Disconnect after spawning ..
_HouseMusicx3 is offline  
Old 08/09/2011, 04:22   #10
 
elite*gold: 20
Join Date: Aug 2008
Posts: 2,196
Received Thanks: 910
the problem is just can dupe, curse heart or edit skills potion
nansif2 is offline  
Old 08/09/2011, 04:24   #11
 
hambal's Avatar
 
elite*gold: 20
Join Date: Apr 2008
Posts: 1,840
Received Thanks: 366
what i need to do dont understand it :$
hambal is offline  
Old 08/09/2011, 04:25   #12
 
✗EpicSoul✗'s Avatar
 
elite*gold: 0
Join Date: Jul 2011
Posts: 1,189
Received Thanks: 531
maybe a little tut would be awesome...
✗EpicSoul✗ is offline  
Old 08/09/2011, 04:29   #13
 
hambal's Avatar
 
elite*gold: 20
Join Date: Apr 2008
Posts: 1,840
Received Thanks: 366
yeah indeed
hambal is offline  
Old 08/09/2011, 05:05   #14
 
lostaqq's Avatar
 
elite*gold: 0
Join Date: Mar 2011
Posts: 58
Received Thanks: 11
all need it ;D pls fast when Elite-Sro team dont fix this.
lostaqq is offline  
Old 08/09/2011, 05:18   #15
 
elite*gold: 0
Join Date: Feb 2010
Posts: 2,278
Received Thanks: 443
Talking

Quote:
Originally Posted by lostaqq View Post
all need it ;D pls fast when Elite-Sro team dont fix this.
i dont think admin elite sro can fix it
cuz he noob lol
so dont worry
rushcrush is offline  
Reply


Similar Threads Similar Threads
[ESRO]Sp Exploit - Packed based working
08/08/2011 - SRO Private Server - 71 Replies
So I have asked Li if it's working, and : http://img718.imageshack.us/img718/2044/kinglispe xploitesro.png It could be true what he have said, because ESRO is based on Thailand Server Files and the Fix for this exploit came with the Alexandria Update. Still kinda the old way but you will have to bypass the GameGuard, else you get disconnected. Just need someone who knows how to bypass it. If it's working, have fun and enjoy being FF^^.



All times are GMT +2. The time now is 02:56.


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.