Skip to content

Instantly share code, notes, and snippets.

@CreateRemoteThread
Created June 25, 2016 11:12
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/246d788d5a970318d8d0b0173911551c to your computer and use it in GitHub Desktop.
Save CreateRemoteThread/246d788d5a970318d8d0b0173911551c to your computer and use it in GitHub Desktop.
import os
def gothrough():
key = 1
roomtogo = [r for r in os.listdir(os.curdir)if os.path.isdir(r)]
for room in roomtogo:
key *= int(room)
os.system("start cmd /k echo Room number " + room + ": get key part")
# >>> 1000004059 * 1000004099 * 1000004119
if (key == 1000012277050240711531267079):
os.system("start cmd /k echo Congrats! Where did you get these key parts?")
else:
os.system("start cmd /k echo Nothing here! wrong key parts")
gothrough()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment