Skip to content

Instantly share code, notes, and snippets.

@CreateRemoteThread
Created October 8, 2017 13:56
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/7456f76e7b1e54f43df204b818273b15 to your computer and use it in GitHub Desktop.
Save CreateRemoteThread/7456f76e7b1e54f43df204b818273b15 to your computer and use it in GitHub Desktop.
#!/usr/bin/python
import hashlib
import sys
i = 0
while i < 99999999:
pincode = "%08d" % i
val = '{}:{}'.format("b4ckd00r_us3r",pincode)
key = hashlib.sha256(val).hexdigest()
if key == "34c05015de48ef10309963543b4a347b5d3d20bbe2ed462cf226b1cc8fff222e":
print val
sys.exit(0)
i += 1
print "fuck"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment