Skip to content

Instantly share code, notes, and snippets.

@0x1c3N
Created September 2, 2021 12:07
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/b70c9a654af0f8d9bb6f951c964e3259 to your computer and use it in GitHub Desktop.
Save 0x1c3N/b70c9a654af0f8d9bb6f951c964e3259 to your computer and use it in GitHub Desktop.
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