forked from dvopsway/datasploit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
emailOsint.py
executable file
·234 lines (189 loc) · 7.4 KB
/
emailOsint.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
#!/usr/bin/env python
import requests
import sys
import config as cfg
import clearbit
import json
import time
import hashlib
from bs4 import BeautifulSoup
import re
from email_fullcontact import fullcontact
from termcolor import colored
from email_pastes import google_search,colorize
from email_basic_checks import basic_checks
class style:
BOLD = '\033[1m'
END = '\033[0m'
email = sys.argv[1]
username_list = []
def check_and_append_username(username):
if username not in username_list:
username_list.append(username)
def clearbit(email):
header = {"Authorization" : "Bearer %s" % (cfg.clearbit_apikey)}
req = requests.get("https://person.clearbit.com/v1/people/email/%s" % (email), headers = header)
person_details = json.loads(req.content)
if ("error" in req.content and "queued" in req.content):
print "This might take some more time, Please run this script again, after 5 minutes."
time.sleep(20)
else:
return person_details
def haveIbeenpwned(email):
print colored(style.BOLD + '\n---> Checking breach status in HIBP (@troyhunt)\n' + style.END, 'blue')
time.sleep(0.3)
req = requests.get("https://haveibeenpwned.com/api/v2/breachedaccount/%s" % (email))
if 'Attention Required! | CloudFlare' in req.content:
print "CloudFlare detected"
return {}
if req.content != "":
return json.loads(req.content)
else:
return {}
def gravatar(email):
gravatar_url = "http://www.gravatar.com/avatar/" + hashlib.md5(email.lower()).hexdigest()
return gravatar_url
def emaildom(email):
req = requests.get('http://www.whoismind.com/email/%s.html'%(email))
soup=BeautifulSoup(req.content.encode('utf-8'), "lxml")
atag=soup.findAll('a')
domains=[]
for at in atag:
if at.text in at['href']:
domains.append(at.text)
domains=set(domains)
return domains
def emailslides(email):
req = requests.get('http://www.slideshare.net/search/slideshow?q=%s'%(email))
soup=BeautifulSoup(req.content, "lxml")
atag=soup.findAll('a',{'class':'title title-link antialiased j-slideshow-title'})
slides={}
for at in atag:
slides[at.text]=at['href']
return slides
def emailscribddocs(email):
req = requests.get('https://www.scribd.com/search?page=1&content_type=documents&query=%s'%(email))
soup=BeautifulSoup(req.content, "lxml")
m = re.findall('(?<=https://www.scribd.com/doc/)\w+', req.text.encode('UTF-8'))
m = set(m)
m = list(m)
links=[]
length=len(m)
for lt in range(0,length-1):
links.append("https://www.scribd.com/doc/"+m[lt])
return links
def list_down_usernames():
if len(username_list) != 0:
print colored(style.BOLD + '\n---> Enumerated Usernames\n' + style.END, 'blue')
for x in username_list:
print x
print "\n"
def print_emailosint(email):
'''
hbp = haveIbeenpwned(email)
if len(hbp) != 0:
print colored("Pwned at %s Instances\n", 'green') % len(hbp)
for x in hbp:
print "Title:%s\nBreachDate%s\nPwnCount%s\nDescription%s\nDataClasses%s\n" % (x.get('Title', ''), x.get('BreachDate', ''), x.get('PwnCount', ''), x.get('Description', ''),x.get('DataClasses', ''))
else:
print colored("[-] No breach status found.", 'red')
'''
basic_checks(email)
print colored(style.BOLD + '\n---> Finding User Information\n' + style.END, 'blue')
time.sleep(0.3)
data = fullcontact(email)
if data.get("status","") == 200:
if data.get("contactInfo","") != "":
print "Name: %s" % data.get("contactInfo","").get('fullName', '')
print colored(style.BOLD + '\n Organizations / Work History\n' + style.END, 'green')
for x in data.get("organizations",""):
if x.get('isPrimary', '') == True:
primarycheck = " - Primary"
else:
primarycheck = ""
if x.get('endDate','') == '':
print "\t%s at %s - (From %s to Unknown Date)%s" % (x.get('title', ''), x.get('name',''), x.get('startDate',''), primarycheck)
else:
print "\t%s - (From %s to %s)%s" % (x.get('name',''), x.get('startDate',''), x.get('endDate',''), primarycheck)
if data.get("contactInfo","") != "":
if data.get("contactInfo","").get('websites', '') != "":
print "\nWebsite(s):"
for x in data.get("contactInfo","").get('websites', ''):
print "\t%s" % x.get('url', '')
if data.get("contactInfo","").get('chats', '') != "":
print '\nChat Accounts'
for x in data.get("contactInfo","").get('chats', ''):
print "\t%s on %s" % (x.get('handle', ''), x.get('client', ''))
print colored(style.BOLD + '\n Social Profiles\n' + style.END, 'green')
for x in data.get("socialProfiles",""):
head = "\t%s:" % x.get('type','').upper()
print colored(style.BOLD + str(head) + style.END)
for y in x.keys():
if y != 'type' and y != 'typeName' and y != 'typeId':
print '\t%s: %s' % (y, x.get(y,''))
if x.get('username', '') != "":
check_and_append_username(x.get('username', ''))
print ''
print colored(style.BOLD + '\n Other Details\n' + style.END, 'green')
if data.get("demographics","") != "":
print "\tGender: %s" % data.get("demographics","").get('gender', '')
print "\tCountry: %s" % data.get("demographics","").get('country', '')
print "\tTentative City: %s" % data.get("demographics","").get('locationGeneral', '')
print "Photos:"
for x in data.get("photos",""):
print "\t%s: %s" % (x.get('typeName', ''), x.get('url', ''))
else:
print colored('[-] Error Occured - Encountered Status Code: %s. Please check if Email_id exist or not?', 'red') % data.get("status","")
'''clb_data = clearbit(email)
for x in clb_data.keys():
print '%s details:' % x
if type(clb_data[x]) == dict:
for y in clb_data[x].keys():
if clb_data[x][y] is not None:
print "%s: %s, " % (y, clb_data[x][y])
elif clb_data[x] is not None:
print "\n%s: %s" % (x, clb_data[x])
print "\n-----------------------------\n"
print "\t\t\t[+] Gravatar Link\n"
print gravatar(email)
print "\n-----------------------------\n"
print "\t\t\t[+] Associated Domains\n"
for doms in emaildom(email):
print doms
'''
print colored(style.BOLD + '\n---> Finding Paste(s)..\n' + style.END, 'blue')
if cfg.google_cse_key != "" and cfg.google_cse_key != "XYZ" and cfg.google_cse_cx != "" and cfg.google_cse_cx != "XYZ":
total_results = google_search(email, 1)
if (total_results != 0 and total_results > 10):
more_iters = (total_results / 10)
if more_iters >= 10:
print colored(style.BOLD + '\n---> Too many results, Daily API limit might exceed\n' + style.END, 'red')
for x in xrange(1,more_iters + 1):
google_search(email, (x*10)+1)
print "\n\n-----------------------------\n"
else:
print colored(style.BOLD + '\n[-] google_cse_key and google_cse_cx not configured. Skipping paste(s) search.\nPlease refer to http://datasploit.readthedocs.io/en/latest/apiGeneration/.\n' + style.END, 'red')
slds=emailslides(email)
if len(slds) != 0:
print colored(style.BOLD + '\n---> Slides Published:' + style.END, 'blue')
time.sleep(0.3)
for tl,lnk in slds.items():
print tl+"http://www.slideshare.net"+lnk
else:
print colored('[-] No Associated Slides found.', 'red')
scdlinks=emailscribddocs(email)
if len(scdlinks) != 0:
print colored(style.BOLD + '\n---> Associated SCRIBD documents:\n' + style.END, 'blue')
time.sleep(0.5)
for sl in scdlinks:
print sl
print ""
print colored(style.BOLD + 'More results might be available:' + style.END)
print "https://www.scribd.com/search?page=1&content_type=documents&query="+email
else:
print colored('[-] No Associated Scribd Documents found.', 'red')
def main():
print_emailosint(email)
list_down_usernames()
if __name__ == "__main__":
main()