I have looked into the source code for packet decryption by
TwistedIllusion. I was wondering in the below listed function, key1(0) = "9D" is this 9D fixed? And how to go about getting this 9D for key1 cause in key2(0) is = "62".
For Key1;
Code:
Public Function key1a(MyCount As String)
'Setting all of the values for key1
Dim key1(0 To 255)
key1(0) = "9D"
key1(1) = "90"
key1(2) = "83"
key1(3) = "8A"
key1(4) = "D1"
key1(5) = "8C"
" " " " " "
Key1(255)
For Key2;
Code:
Public Function key2a(MyCount As String)
'setting all of the values for key2
Dim key2(0 To 255)
key2(0) = "62"
key2(1) = "4F"
key2(2) = "E8"
key2(3) = "15"
key2(4) = "DE"
key2(5) = "EB"
" " " " " "
Key2(225)