Skip to content

Instantly share code, notes, and snippets.

View tylerl's full-sized avatar

Tyler Larson tylerl

  • Seattle-ish, WA
View GitHub Profile
@Ayrx
Ayrx / vuln_scanner.py
Created July 17, 2013 14:00
The most awesomest scanner in the whole world!
import os
for r,d,f in os.walk("/var/www"):
for files in f:
if files.endswith(".php"):
print "You are fucked!"
@tylerl
tylerl / rsa.py
Created September 24, 2011 08:27
RSA Explained in Python
#!/usr/bin/env python
# This example demonstrates RSA public-key cryptography in an
# easy-to-follow manner. It works on integers alone, and uses much smaller numbers
# for the sake of clarity.
#####################################################################
# First we pick our primes. These will determine our keys.
#####################################################################