Skip to content

Instantly share code, notes, and snippets.

@kloenk
Last active April 10, 2017 15:53
Show Gist options
  • Save kloenk/956a984a4ecb873fc3a0b110997fda4e to your computer and use it in GitHub Desktop.
Save kloenk/956a984a4ecb873fc3a0b110997fda4e to your computer and use it in GitHub Desktop.
Python urandom Viewer
#!/usr/bin/python3
__author__ = "Kloenk"
import os
def Urandom():
n = 99999
print( os.urandom(n))
return True
while (True):
Urandom()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment