-
Notifications
You must be signed in to change notification settings - Fork 2
/
events_infinity.py
301 lines (183 loc) · 8.36 KB
/
events_infinity.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
from selenium import webdriver
from selenium.webdriver.support.select import Select
from config import CONFIG
from random import *
import time, random, csv, login, Relationship, os
from selenium.webdriver.chrome.options import Options
import logging, sys, os
script = os.path.basename(sys.argv[0])
logging.basicConfig(filename='./files/test_logs/%s.log' % script, format='%(asctime)s - %(levelname)s - %(message)s', level=logging.INFO)
logger = logging.getLogger('test')
if CONFIG.WEBDRIVER == "Chrome":
_chrome_options = Options()
_chrome_options.add_argument('--disable-infobars')
driver = webdriver.Chrome(chrome_options=_chrome_options)
elif CONFIG.WEBDRIVER == "Firefox":
driver = webdriver.Firefox()
else:
print('No valid Webdrive was provided. ')
driver.set_window_size(1440, 1200)
driver.implicitly_wait(CONFIG.waittime)
# time.sleep(2)
host = CONFIG.HOST
def assoc_advers(asvers='Jack Reacher'):
driver.find_element_by_id("add-context").click()
time.sleep(1)
driver.find_element_by_link_text("Relationship").click()
time.sleep(1)
# driver.find_element_by_xpath("//input[@type='text']").send_keys(asvers)
driver.find_element_by_xpath("//INPUT[@type='text']").send_keys(asvers)
time.sleep(1)
# driver.find_element_by_xpath("//span/i").click()
# driver.find_element_by_xpath("//INPUT[@type='text']").send_keys(Keys.ENTER)
driver.find_element_by_xpath("(//A[@href=''])[1]").click()
time.sleep(1)
# driver.find_element_by_xpath("//button[@type='submit']").click()
driver.find_element_by_xpath("//BUTTON[@type='submit'][text()='Add']").click()
time.sleep(1)
def add_event(typeID=r"Watering Hole", Srce=CONFIG.SOURCE, Title=r"DDoS Attack", Mth="December", DDay="7", Year="2017", Time=r"01:44 PM", Zone=r"US/Central"):
# Open Add Event UI
time.sleep(1)
select = True
while select == True:
try:
driver.find_element_by_id("primary-nav-create").click()
select = False
except Exception as e:
time.sleep(2)
# print("Wait 2 seconds to continue")
# driver.find_element_by_link_text("Event").click()
# driver.find_element_by_xpath("(//li[@permissions='events'])").click()
driver.find_element_by_xpath("(//a[text()=' Event'])").click()
time.sleep(1)
Select(driver.find_element_by_id("eventTypeId")).select_by_visible_text(typeID)
# Add source
# driver.find_element_by_xpath("//SPAN[1]").click()
driver.find_element_by_xpath("//span[@ng-show='!form.swapSourceOption']").click()
time.sleep(1)
driver.find_element_by_xpath("//INPUT[@type='text']").send_keys(Srce)
driver.find_element_by_id("eventTitle").click()
driver.find_element_by_id("eventTitle").clear()
driver.find_element_by_id("eventTitle").send_keys(Title)
Select(driver.find_element_by_xpath("//select[contains(@ng-model, '.date.month')]")).select_by_visible_text(Mth)
Select(driver.find_element_by_xpath("//select[@ng-model='$ctrl.date.year']")).select_by_visible_text(Year)
driver.find_element_by_xpath("//input[contains(@ng-model, 'date.time')]").clear()
driver.find_element_by_xpath("//input[contains(@ng-model, 'date.time')]").send_keys(Time)
Select(driver.find_element_by_xpath("//select[contains(@ng-model, '.timezone')]")).select_by_visible_text(Zone)
driver.find_element_by_xpath("//select[@ng-model='$ctrl.date.day']").click()
Select(driver.find_element_by_xpath("//select[@ng-model='$ctrl.date.day']")).select_by_visible_text(DDay)
driver.find_element_by_xpath("//button[@type='submit']").click()
time.sleep(2)
def spearphish(efile=r'/files/Events/ChronArte_events_12_spearfish_objects_Apr.txt'):
time.sleep(3)
# driver.find_element_by_xpath("//button[@id='primary-nav-create']/span").click()
driver.find_element_by_id("primary-nav-create").click()
# driver.find_element_by_link_text("Event").click()
# driver.find_element_by_xpath("(//li[@permissions='events'])").click()
driver.find_element_by_xpath("(//a[text()=' Event'])").click()
time.sleep(1)
Select(driver.find_element_by_id("eventTypeId")).select_by_visible_text("Spearphish")
driver.find_element_by_link_text("click to browse")
driver.find_element_by_xpath("//input[@type='file']").send_keys(efile)
time.sleep(3)
driver.find_element_by_id("eventSource").send_keys(CONFIG.SOURCE)
driver.find_element_by_xpath("//button[@type='submit']").click()
time.sleep(5)
Select(driver.find_element_by_id("indicatorStatusId")).select_by_visible_text("Active")
driver.find_element_by_xpath("//div[3]/div/button").click()
time.sleep(2)
"""
try:
driver.find_element_by_xpath("//div[3]/div/button").click()
except Exception as e:
print e
time.sleep(2)
"""
t2 = time.time()
driver.find_element_by_xpath("//div[@class='col-xs-12']//button[text()='Create Spearphish']").click()
# driver.find_element_by_partial_link_text("Create Spearphish").click()
while True:
URL = driver.current_url
if "details" not in URL:
time.sleep(1)
else:
time.sleep(3)
break
t1 = time.time()
# calculate time to process file
timeComplete = t1 - t2
print ("Import %s has completed in: %s seconds") % (efile, str(timeComplete))
return timeComplete
# List data to use for required fields.
months = [["October", "2017"],["November", "2017"],["December", "2017"],["January", "2018"], ["February", "2018"], ["March", "2018"], ["April", "2018"],
["May", "2018"], ["June", "2018"], ["July", "2018"], ["August", "2018"], ["September", "2018"], ["October", "2018"],
["November", "2018"],["December", "2018"],["January", "2019"], ["February", "2019"], ["March", "2019"], ["April", "2019"],
["May", "2019"], ["June", "2019"], ["July", "2019"], ["August", "2019"], ["September", "2019"], ["October", "2019"],
["November", "2019"],["December", "2019"]
]
hrs = ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12']
ap = ['AM', 'PM']
cwd = os.getcwd()
phish = ["/files/Events/tqi-spearphish1.txt",
"/files/Events/tqi-spearphish2.txt",
"/files/Events/te-12232.txt",
"/files/Events/Clint's Spearfish email phishing 01.txt"
]
# Event typs to use
eventType = ["Malware", "Watchlist", "DoS Attack", "Login Compromise",
"Exfiltration", "Command and Control", "SQL Injection Attack", ]
# Run test steps here
login.login(logger, host, driver, usr=CONFIG.USER[0], pssword=CONFIG.USER[1])
time.sleep(1)
'''
The csv files are created by exporting date from the Beta advanced search [Export] feature. Simply export data with the
default columns, modify the names to match the below expected files, and run the scripts.
'''
with open('files/Adversaries/ThreatQ-adversary.csv', 'rb') as f:
reader = csv.reader(f)
Adversaries = list(reader)
with open('files/ThreatQ-indicator.csv') as I:
reader = csv.reader(I)
indicators = list(reader)
with open('files/ThreatQ-signature.csv') as S:
reader = csv.reader(S)
signatures = list(reader)
with open('files/ThreatQ-adversary.csv') as A:
reader = csv.reader(A)
adver = list(reader)
with open('files/ThreatQ-attachment.csv') as a:
reader = csv.reader(a)
attach = list(reader)
"""
for pfile in phish:
# remove hardcoded folder location.
phisfile = cwd + pfile
# Create spearphish event
spearphish(phisfile)
if CONFIG.LONGRUN:
time.sleep(1200)
else:
time.sleep(1)
"""
# Crate Events Begin here
# Event number starts with eventount
eventcount = 100
while True:
for month in months:
for event in eventType:
for hr in hrs:
x = sample(hrs, 1)
y = sample(ap, 1)
title = "Attack Event: " + str(eventcount)
print title
# Create new Event
add_event(event, CONFIG.SOURCE, Title=title, Mth=month[0],
DDay=str(random.randint(1, 28)), Year=month[1],
Time=x[0] + ":44 " + y[0], Zone="US/Central")
if CONFIG.LONGRUN:
time.sleep(1200)
else:
time.sleep(1)
eventcount += 1
# close the browser window
driver.quit()