-
Notifications
You must be signed in to change notification settings - Fork 3
/
RetrieveEmail.py
319 lines (252 loc) · 11.4 KB
/
RetrieveEmail.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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
#!/usr/bin/env python3
# encoding: UTF-8
"""
This file is part of RetrieveEmail
Copyright (C) 2016 @muneebwanee
https://github.com/muneebwanee/RetrieveEmail
RetrieveEmail - A tool to retrieve Domain email addresses from Search Engines.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
For more see the file 'LICENSE' for copying permission.
"""
__author__ = "muneebwanee"
__copyright__ = "Copyright (c) 2020 @muneebwanee"
__license__ = "GPLv3"
__version__ = "1.0.0"
__maintainer__ = "muneebwanee"
################################
import argparse
import sys
import time
import requests
import re
import os
import validators
from termcolor import colored
from argparse import RawTextHelpFormatter
from sys import platform as _platform
try:
from urllib.parse import urlparse
except ImportError:
from urlparse import urlparse
################################
if _platform == 'win32':
import colorama
colorama.init()
class myparser:
def __init__(self):
self.temp = []
def extract(self, results, word):
self.results = results
self.word = word
def genericClean(self):
for e in '''<KW> </KW> </a> <b> </b> </div> <em> </em> <p> </span>
<strong> </strong> <title> <wbr> </wbr>'''.split():
self.results = self.results.replace(e, '')
for e in '%2f %3a %3A %3C %3D & / : ; < = > \\'.split():
self.results = self.results.replace(e, ' ')
def emails(self):
self.genericClean()
reg_emails = re.compile(
'[a-zA-Z0-9.\-_+#~!$&\',;=:]+' +
'@' +
'[a-zA-Z0-9.-]*' +
self.word)
self.temp = reg_emails.findall(self.results)
emails = self.unique()
return emails
def unique(self):
self.new = list(set(self.temp))
return self.new
###################################################################
class RetrieveEmail(object):
def __init__(self, userAgent, proxy):
self.plugins = {}
self.proxy = proxy
self.userAgent = userAgent
self.parser = myparser()
self.activeEngine = "None"
path = os.path.dirname(os.path.abspath(__file__)) + "/plugins/"
plugins = {}
sys.path.insert(0, path)
for f in os.listdir(path):
fname, ext = os.path.splitext(f)
if ext == '.py':
mod = __import__(fname, fromlist=[''])
plugins[fname] = mod.Plugin(self, {'useragent':userAgent, 'proxy':proxy})
def register_plugin(self, search_method, functions):
self.plugins[search_method] = functions
def get_plugins(self):
return self.plugins
def show_message(self, msg):
print(green(msg))
def init_search(self, url, word, limit, counterInit, counterStep, engineName):
self.results = ""
self.totalresults = ""
self.limit = int(limit)
self.counter = int(counterInit)
self.url = url
self.step = int(counterStep)
self.word = word
self.activeEngine = engineName
def do_search(self):
try:
urly = self.url.format(counter=str(self.counter), word=self.word)
headers = {'User-Agent': self.userAgent}
if(self.proxy):
proxies = {self.proxy.scheme: "http://" + self.proxy.netloc}
r=requests.get(urly, headers=headers, proxies=proxies)
else:
r=requests.get(urly, headers=headers)
except Exception as e:
print(e)
sys.exit(4)
if r.encoding is None:
r.encoding = 'UTF-8'
self.results = r.content.decode(r.encoding)
self.totalresults += self.results
def process(self):
while (self.counter < self.limit):
self.do_search()
time.sleep(1)
self.counter += self.step
print(green("[+] Searching in {}:".format(self.activeEngine)) + cyan(" {} results".format(str(self.counter))))
def get_emails(self):
self.parser.extract(self.totalresults, self.word)
return self.parser.emails()
###################################################################
def yellow(text):
return colored(text, 'yellow', attrs=['bold'])
def green(text):
return colored(text, 'green', attrs=['bold'])
def red(text):
return colored(text, 'red', attrs=['bold'])
def cyan(text):
return colored(text, 'cyan', attrs=['bold'])
def unique(data):
return list(set(data))
###################################################################
def checkProxyUrl(url):
url_checked = urlparse(url)
if (url_checked.scheme not in ('http', 'https')) | (url_checked.netloc == ''):
raise argparse.ArgumentTypeError('Invalid {} Proxy URL (example: http://127.0.0.1:8080).'.format(url))
return url_checked
def limit_type(x):
x = int(x)
if x > 0:
return x
raise argparse.ArgumentTypeError("Minimum results limit is 1.")
def checkDomain(value):
domain_checked = validators.domain(value)
if not domain_checked:
raise argparse.ArgumentTypeError('Invalid {} domain.'.format(value))
return value
###################################################################
if __name__ == '__main__':
parser = argparse.ArgumentParser(description="""
╔═══╗──╔╗────────────╔═══╗──────╔╗
║╔═╗║─╔╝╚╗───────────║╔══╝──────║║
║╚═╝╠═╩╗╔╬═╦╦══╦╗╔╦══╣╚══╦╗╔╦══╦╣║
║╔╗╔╣║═╣║║╔╬╣║═╣╚╝║║═╣╔══╣╚╝║╔╗╠╣║
║║║╚╣║═╣╚╣║║║║═╬╗╔╣║═╣╚══╣║║║╔╗║║╚╗
╚╝╚═╩══╩═╩╝╚╩══╝╚╝╚══╩═══╩╩╩╩╝╚╩╩═╝
A tool to retrieve Domain email addresses from Search Engines | @muneebwanee
{}: {}
""".format(red('Version'), yellow(__version__)),
formatter_class=RawTextHelpFormatter)
parser.add_argument("-d", '--domain', action="store", metavar='DOMAIN', dest='domain',
default=None, type=checkDomain, help="Domain to search.")
parser.add_argument("-s", '--save', action="store", metavar='FILE', dest='filename',
default=None, type=str, help="Save the results into a TXT and XML file (both).")
parser.add_argument("-e", '--engine', action="store", metavar='ENGINE', dest='engine',
default="all", type=str, help="Select search engine plugin(eg. '-e google').")
parser.add_argument("-l", '--limit', action="store", metavar='LIMIT', dest='limit',
type=limit_type, default=100, help="Limit the number of results.")
parser.add_argument('-u', '--user-agent', action="store", metavar='USER-AGENT', dest='uagent',
type=str, help="Set the User-Agent request header.")
parser.add_argument('-x', '--proxy', action="store", metavar='PROXY', dest='proxy',
default=None, type=checkProxyUrl, help="Setup proxy server (eg. '-x http://127.0.0.1:8080')")
parser.add_argument('--noprint', action='store_true', default=False,
help='RetrieveEmail will print discovered emails to terminal. It is possible to tell RetrieveEmail not to print results to terminal with this option.')
parser.add_argument('-r', '--exclude', action="store", metavar='EXCLUDED_PLUGINS', dest="exclude",
type=str, default=None, help="Plugins to exclude when you choose 'all' for search engine (eg. '-r google,twitter')")
parser.add_argument('-p', '--list-plugins', action='store_true', dest='listplugins',
default=False, help='List all available plugins.')
if len(sys.argv) is 1:
parser.print_help()
sys.exit()
args = parser.parse_args()
if args.listplugins:
path = "plugins/"
print(green("[+] Available plugins"))
sys.path.insert(0, path)
for f in os.listdir(path):
fname, ext = os.path.splitext(f)
if ext == '.py':
print(green("[+] Plugin: ") + cyan(fname))
sys.exit(1)
if not args.domain:
print(red("[-] Please specify a domain name to search."))
sys.exit(2)
domain = args.domain
userAgent = (args.uagent or
"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1")
print(green("[+] User-Agent in use: ") + cyan(userAgent))
if args.proxy:
print(green("[+] Proxy server in use: ") + cyan(args.proxy.scheme + "://" + args.proxy.netloc))
filename = args.filename or ""
limit = args.limit
engine = args.engine
app = RetrieveEmail(userAgent, args.proxy)
plugins = app.get_plugins()
all_emails = []
excluded = []
if args.exclude:
excluded = args.exclude.split(',')
if engine == "all":
print(green("[+] Searching everywhere"))
for search_engine in plugins:
if search_engine not in excluded:
all_emails += plugins[search_engine]['search'](domain, limit)
elif engine not in plugins:
print(red("[-] Search engine plugin not found"))
sys.exit(3)
else:
all_emails = plugins[engine]['search'](domain, limit)
all_emails = unique(all_emails)
if not all_emails:
print(red("[-] No emails found"))
sys.exit(4)
print(green("[+] Emails found: ") + cyan(len(all_emails)))
if not args.noprint:
for emails in all_emails:
print(emails)
if filename:
try:
print(green("[+] Saving results to files"))
with open(filename, 'w') as out_file:
for email in all_emails:
try:
out_file.write(email + "\n")
except:
print(red("[-] Exception: " + email))
except Exception as e:
print(red("[-] Error saving TXT file: " + e))
try:
filename = filename.split(".")[0] + ".xml"
with open(filename, 'w') as out_file:
out_file.write('<?xml version="1.0" encoding="UTF-8"?><RetrieveEmail>')
for email in all_emails:
out_file.write('<email>{}</email>'.format(email))
out_file.write('</RetrieveEmail>')
print(green("[+] Files saved"))
except Exception as er:
print(red("[-] Error saving XML file: " + er))