Skip to content

Instantly share code, notes, and snippets.

@matonis
Created July 29, 2015 18:58
Show Gist options
  • Save matonis/c7681f5774c5524997c5 to your computer and use it in GitHub Desktop.
Save matonis/c7681f5774c5524997c5 to your computer and use it in GitHub Desktop.
troll_malware_name_generator.py
#!/usr/bin/python
import os,sys
import random
final=[]
for i in range(int(sys.argv[1])):
final.append(chr(random.randrange(255)))
print "".join(final)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment