Was going through some old files and came upon this project.
A while back when I started messing around with Gaiaonline fishing, I came across an encryption known as QADCA.
If I remember correctly it was the encryption Gaiaonline used (or uses) to encrypt and decrypt chat messages over fishing.
At the time I was planning on releasing a fishing bot, but never really got around to it.
After some searching I noticed there did not seem to be a public port of QADCA from Actionscript 2 to any language.
This is the same port The Unintelligible was using when he began work on his fishing bot project as well.
Thought I'd throw it up on Github for anyone too lazy to port it themselves.
I honestly don't even know if this is still relevant or even still utilized by Gaiaonline.
Again, not original code, just a port, but if anyone actually had some documentation on the history of QADCA it'd be neat.
Func _IIH($sMessage)
Local $fBool, $iCounter
$fBool = False
$iCounter = 0
If UBound($aStorage) >= 2 Then
While ($iCounter < $LOOP_MAXIMUM)
If ($aStorage[$iCounter] == $sMessage) Then $fBool = True
$iCounter += 1
WEnd
EndIf
$aStorage[Mod(0, $LOOP_MAXIMUM)] = $sMessage
Return $fBool
EndFunc ;==>_IIH
The original AS2 source code I worked off of is hosted on my Github, as well as some AS2 code for debugging it in FlashDevelop.
13 Jun. 2013, 10:24pm
The Unintelligible
Good work. Code looks pretty clean and polished since I last looked at it a while ago.
The thread you referenced is pretty old and ramblish though. And looking at it in retrospect, I never actually got around to the lot of those, l0l. Oh well.
Nice post either way. Could be useful to those still dabbling into Gaia and things of the sort.
13 Jun. 2013, 10:25pm
Tree
Didn't know any parts of Gaia even still used QADCA. We actually made a port almost 6-7 years back I think in AutoIt.
13 Jun. 2013, 10:32pm
Isonyx
Quote:
Originally Posted by Tree
Didn't know any parts of Gaia even still used QADCA. We actually made a port almost 6-7 years back I think in AutoIt.
Yeah, I remember hearing about that. I think I even asked you for advice at some point.
Quote:
Originally Posted by The Unintelligible
Good work. Code looks pretty clean and polished since I last looked at it a while ago.
The thread you referenced is pretty old and ramblish though. And looking at it in retrospect, I never actually got around to the lot of those, l0l. Oh well.
Nice post either way. Could be useful to those still dabbling into Gaia and things of the sort.
Thanks. If you decided to pick up any of those projects again I still think your development of a Firewall would be very interesting.