Skip to content

Instantly share code, notes, and snippets.

@0x1c3N
Created September 2, 2021 12:07
Embed
What would you like to do?
Anubis Mobil Malware Manuel Unpack Filename Script
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