Skip to content

Instantly share code, notes, and snippets.

@CreateRemoteThread
Created June 3, 2018 11:32
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 CreateRemoteThread/0f74aa0273487ab8dc4b8872671180d7 to your computer and use it in GitHub Desktop.
Save CreateRemoteThread/0f74aa0273487ab8dc4b8872671180d7 to your computer and use it in GitHub Desktop.
#!/usr/bin/python
import itertools
import base64
a = ["c2N0ZnszbD","VsNTNfdzRz","bjN0MWNfcH","X2Y0azN9Cg","NjdHIwbTRn"]
for x in itertools.permutations(a):
s = "".join(x)
print s
print base64.b64decode(s + "AA")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment