///////////////////////////////////////////////////////////////////
/// ///
/// Hacker 1.1 Crack ///
/// ///
/// ///
/// by ///
/// ///
/// ///
/// The Taniger Team (3T) ///
/// ///
/// ///
/// Visit our site at : http://www.taniger.4t.com ///
/// ///
/// [email protected] ///
/// ///
/// ///
///////////////////////////////////////////////////////////////////
Program Name : Hacker 1.1 Crack
Program Author : DeThr0N
Author E-mail : [email protected]
Created : July 2001
Program Type : Crack
Here we will explain the encryption used in the game Hacker by
James Tyrrell. The encryption method was very simple. I bet that we
all have created an encryption program that used a code key to
encrypt a file. Right ? Well the same encryption is used here . In
this case the code key is the word "drakso". You may ask : "What is
"drakso" ???" . Well , "drakso" is "Oskard" spelled backwards !!!
Example of encryption :
Let's say that we want to encrypt the word "Computer"
1.Firstly , we take one by one all the ascii codes of the letters of
the word "Computer" and the word "drakso"
Computer : 67 111 109 112 117 116 101 114
drakso :100 114 97 107 115 111
2. Now you must add one by one the ascii codes of the word
"Computer" to the word "drakso"
-----------------------------------------
|67 |111 |109 |112 |117 |116 |101 |114 |
|100 |114 |97 |107 |115 |111 |100 |114 |
+ |====|====|====|====|====|====|====|====|
|167 |225 |206 |219 |232 |227 |201 |228 |
-----------------------------------------
When the letters of the word "drakso" end start again from the
first letter.
3. Now you must put the ascii codes in the saved file . First
convert the DEC numbers to HEX , open a HEX Editor and put the HEX
nums in the correct fields.
4. // FIELDS IN THE SAVED FILE //
[ioaooaeoi?]
i??o10= <<<=== SubServer Connection Shadower
i??o9= <<<=== IP Router
i??o8= <<<=== T1 Connection
i??o7= <<<=== New Computer
i??o6= <<<=== Connection Monitor
i??o5= <<<=== Anti Virus Software
i??o4= <<<=== Roll Over Box
i??o3= <<<=== High Speed Modem
i??o2= <<<=== Holding Bank Account
i??o1= <<<=== Forwarding Bank Account
ioao??y= <<<=== Days
?oiouaooo= <<<=== Funds In Bank
e?a?= <<<=== Personal Debt
ecii?= <<<=== Money
ooi?= <<<=== Name
5. !!! Source Code !!!
If you would like to create a crack for this game on your own..then
here is the source code! (You can also download the complete source
code from our site).Well ... Here we go !!! (The Code is written in
Visual Basic)
-------------------------------------------------------------------
Code = "drakso"
For i = 1 To Len(Text1.Text)
letterA = Asc(Mid$(Text1.Text, i, 1))
If i <= Len(Code) Then
letterB = Asc(Mid$(Code, i, 1))
Else
CounterZ = CounterZ + 1
If CounterZ > Len(Code) Then
CounterZ = 0
CounterZ = CounterZ + 1
End If
letterB = Asc(Mid$(Code, CounterZ, 1))
End If
outz = Chr$(letterA + letterB)
Text2.Text = Text2.Text & outz
Next i
-------------------------------------------------------------------
Text1.Text is the plain text
Text2.Text is the cypher text
END OF FILE