Skip to content

Instantly share code, notes, and snippets.

@0x1c3N
Created September 2, 2021 12:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 0x1c3N/647d4451ce08b3b8efd812edc8735bed to your computer and use it in GitHub Desktop.
Save 0x1c3N/647d4451ce08b3b8efd812edc8735bed to your computer and use it in GitHub Desktop.
Anubis Mobil Malware Manuel Unpack RC4 Key Script
bArr = [43, 14, 36, 24, 0, 32]
bArr3 = [77]
rc4_key, i = "", 0
while (i<6):
rc4_key += chr(bArr[i] ^ bArr3[i%1])
i+=1
print(rc4_key)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment