Created
September 2, 2021 12:09
-
-
Save 0x1c3N/647d4451ce08b3b8efd812edc8735bed to your computer and use it in GitHub Desktop.
Anubis Mobil Malware Manuel Unpack RC4 Key Script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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