-
Notifications
You must be signed in to change notification settings - Fork 2
/
google.py
executable file
·43 lines (35 loc) · 3.31 KB
/
google.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env python3
# Credit: Idea and motivation inspired by X0rz's blog post:
# https://blog.0day.rocks/abusing-gmail-to-get-previously-unlisted-e-mail-addresses-41544b62b2T
# Enjoy!
import requests
with open("names") as f:
content = f.readlines()
count = str(len(content))
countlen = len(count)
buffer = "░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░│"
buffer = buffer[countlen:]
print("┌─────────────────────────────────────────────────────────┐")
print("│░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░│")
print("│░░░░░░░░░░╔═══════════════════════════════════╗░░░░░░░░░░│")
print("│░░░░░░░░░░║▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓║░░░░░░░░░░│")
print("│░░░░░░░░░░║▒▒▒▒▒▒ GMAIL Account Finder! ▒▒▒▒▒▒║░░░░░░░░░░│")
print("│░░░░░░░░░░║▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓║░░░░░░░░░░│")
print("│░░░░░░░░░░╚═══════════════════════════════════╝░░░░░░░░░░│")
print("│░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░│")
print("├─────────────────────────────────────────────────────────┤")
print("│ │")
print("│ Created by InfoSkirmish.com │")
print("│ │")
print("├─────────────────────────────────────────────────────────┤")
print("│░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░│")
print("│░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░│")
print("│Checking " + count + " names." + buffer )
print("└─────────────────────────────────────────────────────────┘")
for name in content:
name = name[:-1]
response = requests.get("https://mail.google.com/mail/gxlu?email=" + name)
if 'Set-Cookie' in response.headers:
print("["+ name + "] Found")
else:
print("["+ name + "] NOT found")