-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcli_client.py
256 lines (251 loc) · 9.3 KB
/
cli_client.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
"""
This module is a CLI script that calls the class/functions in orca.py and
coreutils.py. This is the 'main' script that is executed by usres to find
and remove phishing emails.
Classes:
None
Functions:
None
"""
from argparse import ArgumentParser
from configparser import ConfigParser
from logging import basicConfig, DEBUG, getLogger
from libs import orca
from libs.coreutils import ValidateInput
# Loading config file.
config = ConfigParser()
config.read('orca.ini')
# Setting up an asrgument parser for CLI execution.
parser = ArgumentParser(
prog='Orca CLI Client',
description="""A command line client to utilize Trend Micro's Cloud
Security APIs for email threat mitigation and remediation."""
)
# This is the only mandatory argument.
parser.add_argument(
'action',
help='Action to perform.',
choices=['pull'],
default='pull'
)
parser.add_argument(
'-se', '--sender',
default=None,
help='Email sender to search for',
)
parser.add_argument(
'-u', '--url',
default=None,
help='URL to search for'
)
parser.add_argument(
'-su', '--subject',
default=None,
help="""Email subject to search for. Must be enclosed in dobule
quotes (e.g., "Evil Subject Line")"""
)
parser.add_argument(
'-ha', '--hash',
default=None,
help='SHA1 hash of file to search for'
)
parser.add_argument(
'-fe', '--file-extension',
default=None,
help='File extension to search for. Do not include the .'
)
orca_args = parser.parse_args()
# Setting up logging.
log = getLogger(__name__)
# Use console logging if verbose is enabled. Otherwise, log to file.
basicConfig(
format='%(asctime)s %(name)s %(levelname)s: %(message)s',
datefmt='%m/%d/%Y %H:%M:%S',
level=DEBUG
)
# Initializing Input Validation.
validate = ValidateInput()
# Calling orca.
phish_hunt = orca.Orca()
# Looking for phishing emails based on supplied arguments.
# Check if URL is supplied.
if orca_args.url is not None:
# Finding and pulling emails with indicated URL.
phish_list = phish_hunt.find_phish(url=orca_args.url)
print('*' * 32 + 'WARNING' + '*' * 32)
print('You are going to pull email from %d mailboxes.', len(phish_list))
warning = str(input('Press Y/N to continue> '))
if warning.lower() == 'y':
log.info('Acknowledgment accepted for %d mailboxes', len(phish_list))
else:
print('*' * 32 + 'ABORTING' + '*' * 32)
exit(0)
# Checking for pull or purge and taking appropriate action.
log.debug('Performing URL pull for %s', orca_args.url)
if orca_args.action == 'pull':
phish_hunt.pull_email(phish_list)
# elif orca_args.action == 'purge':
# phish_hunt.purge_email(phish_list)
# Check if file hash is supplied.
elif orca_args.hash is not None:
# Finding and pulling emails with indicated file hash.
phish_list = phish_hunt.find_phish(file_hash=orca_args.hash)
print('*' * 32 + 'WARNING' + '*' * 32)
print('You are going to pull email from %d mailboxes.', len(phish_list))
warning = str(input('Press Y/N to continue> '))
if warning.lower() == 'y':
log.info('Acknowledgment accepted for %d mailboxes', len(phish_list))
else:
print('*' * 32 + 'ABORTING' + '*' * 32)
exit(0)
# Checking for pull or purge and taking appropriate action.
log.debug('Performing SHA1 hash pull for %s', orca_args.hash)
if orca_args.action == 'pull':
phish_hunt.pull_email(phish_list)
# elif orca_args.action == 'purge':
# phish_hunt.purge_email(phish_list)
# Checking if sender, subject and file extension are supplied.
elif (
orca_args.sender is not None and
orca_args.subject is not None and
orca_args.file_extension is not None
):
# Beginning input validation.
validate_sender = validate.email(orca_args.sender)
if validate_sender is False:
print('Sender email address faield input validation. Exiting.')
exit(1)
validate_file = validate.file_ext(orca_args.file_extension)
if validate_file is False:
print('File extension input validation failed. Exiting.')
exit(1)
# Finding and pulling emails that match the given criteria.
phish_list = phish_hunt.find_phish(
sender=orca_args.sender,
subject=orca_args.subject,
file_ext=orca_args.file_extension
)
print('*' * 32 + 'WARNING' + '*' * 32)
print('You are going to pull email from %d mailboxes.', len(phish_list))
warning = str(input('Press Y/N to continue> '))
if warning.lower() == 'y':
log.info('Acknowledgment accepted for %d mailboxes', len(phish_list))
else:
print('*' * 32 + 'ABORTING' + '*' * 32)
exit(0)
# Checking for pull or purge and taking appropriate action.
log.debug(
'Pulling based on:\nsender:%s subject:%s file_ext:%s' %
(orca_args.sender,
orca_args.subject,
orca_args.file_extension)
)
if orca_args.action == 'pull':
phish_hunt.pull_email(phish_list)
# elif orca_args.action == 'purge':
# phish_hunt.purge_email(phish_list)
# Checking if sender and subject are supplied.
elif (orca_args.sender is not None and
orca_args.subject is not None):
# Performing input validation.
sender_validate = validate.email(orca_args.sender)
if sender_validate is False:
print('Sender email address failed validation. Exiting.')
exit(1)
phish_list = phish_hunt.find_phish(
sender=orca_args.sender,
subject=orca_args.subject
)
print('*' * 32 + 'WARNING' + '*' * 32)
print('You are going to pull email from %d mailboxes.', len(phish_list))
warning = str(input('Press Y/N to continue> '))
if warning.lower() == 'y':
log.info('Acknowledgment accepted for %d mailboxes', len(phish_list))
else:
print('*' * 32 + 'ABORTING' + '*' * 32)
exit(0)
# Checking for pull or purge and taking appropriate action.
log.debug(
'Pulling based on sender:%s subject:%s' %
(orca_args.sender,
orca_args.subject)
)
if orca_args.action == 'pull':
phish_hunt.pull_email(phish_list)
elif orca_args.action == 'purge':
phish_hunt.purge_email(phish_list)
# Checking if sender and file extension are supplied.
elif (orca_args.sender is not None and
orca_args.file_extension is not None):
# Performing input validation.
sender_validate = validate.email(orca_args.sender)
if sender_validate is False:
print('Sender email address failed input validation. Exiting.')
exit(1)
file_validate = validate.file_ext(orca_args.file_extension)
if file_validate is False:
print('File extension input validation failed. Exiting.')
exit(1)
# Finding and pulling emails that match criteria.
phish_list = phish_hunt.find_phish(
sender=orca_args.sender,
file_ext=orca_args.file_extension
)
print('*' * 32 + 'WARNING' + '*' * 32)
print('You are going to pull email from %d mailboxes.', len(phish_list))
warning = str(input('Press Y/N to continue> '))
if warning.lower() == 'y':
log.info('Acknowledgment accepted for %d mailboxes', len(phish_list))
else:
print('*' * 32 + 'ABORTING' + '*' * 32)
exit(0)
# Checking for pull or purge and taking appropriate action.
log.debug(
'Pulling based on sender:%s file_ext:%s' %
(orca_args.sender,
orca_args.file_extension)
)
if orca_args.action == 'pull':
phish_hunt.pull_email(phish_list)
# elif orca_args.action == 'purge':
# phish_hunt.purge_email(phish_list)
# Checking only for sender
elif orca_args.sender is not None:
# Performing input validation.
# validate_sender = validate.Email(orca_args.sender)
# if validate_sender is False:
# print('Sender email address failed input validation. Exiting.')
# exit(1)
# Finding and pulling emails that match the sender.
phish_list = phish_hunt.find_phish(sender=orca_args.sender)
print('*' * 32 + 'WARNING' + '*' * 32)
print('You are going to pull email from %d mailboxes.', len(phish_list))
warning = str(input('Press Y/N to continue> '))
if warning.lower() == 'y':
log.info('Acknowledgment accepted for %d mailboxes', len(phish_list))
else:
print('*' * 32 + 'ABORTING' + '*' * 32)
exit(0)
# Checking for pull or purge and taking appropriate action.
log.debug('Pulling email based on sender: %s', orca_args.sender)
if orca_args.action == 'pull':
phish_hunt.pull_email(phish_list)
# elif orca_args.action == 'purge':
# phish_hunt.purge_email(phish_list)
# Chcking for subject only
elif orca_args.subject is not None:
phish_list = phish_hunt.find_phish(subject=orca_args.subject)
print('*' * 32 + 'WARNING' + '*' * 32)
print('You are going to pull email from %d mailboxes.', len(phish_list))
warning = str(input('Press Y/N to continue> '))
if warning.lower() == 'y':
log.info('Acknowledgment accepted for %d mailboxes', len(phish_list))
else:
print('*' * 32 + 'ABORTING' + '*' * 32)
exit(0)
# Checking for pull or purge and taking appropriate action.
log.debug('Pulling email based on sender: %s', orca_args.sender)
if orca_args.action == 'pull':
phish_hunt.pull_email(phish_list)
# elif orca_args.action == 'purge':
# phish_hunt.purge_email(phish_list)