Created
September 2, 2021 12:07
-
-
Save 0x1c3N/b70c9a654af0f8d9bb6f951c964e3259 to your computer and use it in GitHub Desktop.
Anubis Mobil Malware Manuel Unpack Filename 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 = [77, 105, 70, 11, 79, 86, 74, 75] | |
bArr3 = [37] | |
filename, i = "", 0 | |
while (i<8): | |
filename += chr(bArr[i] ^ bArr3[i%1]) | |
i+=1 | |
print(filename) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment