-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchallengectl.py
executable file
·504 lines (469 loc) · 20.9 KB
/
challengectl.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
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import os
import sys
import csv
from time import sleep
from random import randint, choice, shuffle
import random
import sqlite3
from multiprocessing import Process, Queue
import numpy as np
import string
import argparse
import subprocess
from challenges import ask, cw, usb_tx, nbfm, spectrum_paint, pocsagtx_osmocom, lrs_pager, lrs_tx
def build_database(flagfile, devicefile):
"""Create sqlite database based on flags file and devices file. Database file name will be based on
conference name extracted from first line of flags file."""
flag_input = read_flags(flagfile)
# Skip first line of flag_input where conference information is stored
# Add remaining lines to flag_line array
flag_line = np.asarray(flag_input[1:])
devices = read_devices(devicefile)
# Read name of conference from first line of flag file
conference = flag_input[0][0]
# Create sqlite database for conference and connect to the database
conn = sqlite3.connect(conference + ".db")
c = conn.cursor()
# Create database schema
c.execute('''CREATE TABLE flags(chal_id integer primary key,chal_name,flag,module,modopt1,modopt2,
minwait integer,maxwait integer,freq1,freq2,freq3)''')
c.execute("CREATE TABLE flag_status(chal_id integer primary key,enabled,lastrun integer,ready)")
c.execute("CREATE TABLE devices(dev_id integer primary key,dev_string,dev_busy)")
# Insert flags from flag_line array into database
c.executemany("INSERT INTO flags VALUES (?,?,?,?,?,?,?,?,?,?,?)", flag_line)
# Add flag status row for each flag, setting each flag to enabled, lastrun blank, ready
c.executemany("INSERT INTO flag_status VALUES (?,1,'',1)", flag_line[:, :1])
# Insert devices from devices array into database, set each device to not busy
c.executemany("INSERT INTO devices VALUES (?,?,0)", devices)
conn.commit()
conn.close()
class transmitter:
# flag_args:chal_id,flag,modopt1,modopt2,minwait,maxwait,freq1
def fire_ask(self, device_id, flag_q, device_q, *flag_args):
print("\nTransmitting ASK\n")
flag_args = flag_args[0]
device = fetch_device(device_id)
flag = flag_args[1]
freq = int(flag_args[6]) * 1000
mintime = flag_args[4]
maxtime = flag_args[5]
antenna = ""
if(device.find("bladerf=1c4842b8d80e43438c042dbd752c6640") != -1):
antenna = "TX2"
print("Set antenna to TX2")
else:
print("Antenna set to default empty string. device: {}".format(device))
# print("I ran fire_ask with flag=" + str(flag) + " and freq=" + str(freq))
ask.main(flag.encode("utf-8").hex(), freq, device, antenna)
sleep(3)
# Turn off biastee if the device is a bladerf with the biastee enabled
if(device.find("bladerf") != -1 and device.find("biastee=1") != -1):
bladeserial = parse_bladerf_ser(device)
serialarg = '*:serial={}'.format(bladeserial)
subprocess.run(['bladeRF-cli', '-d', serialarg, 'set', 'biastee', 'tx', 'off'])
device_q.put(device_id)
norandsleep = flag_args[8]
if(norandsleep == False):
sleep(randint(mintime, maxtime))
replaceinqueue = flag_args[7]
if(replaceinqueue != False):
flag_q.put(flag_args[0])
def fire_cw(self, device_id, flag_q, device_q, *flag_args):
print("\nTransmitting CW\n")
flag_args = flag_args[0]
device = fetch_device(device_id)
print(device)
flag = flag_args[1]
speed = int(flag_args[2])
freq = int(flag_args[6]) * 1000
mintime = flag_args[4]
maxtime = flag_args[5]
antenna = ""
if(device.find("bladerf=1c4842b8d80e43438c042dbd752c6640") != -1):
antenna = "TX2"
print("Set antenna to TX2")
else:
print("Antenna set to default empty string. device: {}".format(device))
# print("I ran fire_cw with flag=" + str(flag) + " and freq=" +
# str(freq) + " and speed=" + str(speed))
p = Process(target=cw.main, args=(flag, speed, freq, device, antenna))
p.start()
p.join()
sleep(3)
# Turn off biastee if the device is a bladerf with the biastee enabled
if(device.find("bladerf") != -1 and device.find("biastee=1") != -1):
bladeserial = parse_bladerf_ser(device)
serialarg = '*:serial={}'.format(bladeserial)
subprocess.run(['bladeRF-cli', '-d', serialarg, 'set', 'biastee', 'tx', 'off'])
device_q.put(device_id)
norandsleep = flag_args[8]
if(norandsleep == False):
sleep(randint(mintime, maxtime))
replaceinqueue = flag_args[7]
if(replaceinqueue != False):
flag_q.put(flag_args[0])
if(p.exitcode != 0):
sys.exit(p.exitcode)
def fire_usb(self, device_id, flag_q, device_q, *flag_args):
print("\nTransmitting USB\n")
flag_args = flag_args[0]
device = fetch_device(device_id)
wav_src = str(flag_args[1])
if not os.path.isfile(wav_src):
print("Unable to find wav file {}".format(wav_src))
exit(1)
wav_rate = int(flag_args[2])
freq = int(flag_args[6]) * 1000
mintime = flag_args[4]
maxtime = flag_args[5]
antenna = ""
if(device.find("bladerf=1c4842b8d80e43438c042dbd752c6640") != -1):
antenna = "TX2"
print("Set antenna to TX2")
else:
print("Antenna set to default empty string. device: {}".format(device))
# print("I ran fire_usb with flag=" + str(wav_src) + " and freq=" +
# str(freq) + " and wav_rate=" + str(wav_rate))
usb_tx.main(wav_src, wav_rate, freq, device, antenna)
sleep(3)
# Turn off biastee if the device is a bladerf with the biastee enabled
if(device.find("bladerf") != -1 and device.find("biastee=1") != -1):
bladeserial = parse_bladerf_ser(device)
serialarg = '*:serial={}'.format(bladeserial)
subprocess.run(['bladeRF-cli', '-d', serialarg, 'set', 'biastee', 'tx', 'off'])
device_q.put(device_id)
norandsleep = flag_args[8]
if(norandsleep == False):
sleep(randint(mintime, maxtime))
replaceinqueue = flag_args[7]
if(replaceinqueue != False):
flag_q.put(flag_args[0])
def fire_nbfm(self, device_id, flag_q, device_q, *flag_args):
print("\nTransmitting NBFM\n")
flag_args = flag_args[0]
device = fetch_device(device_id)
wav_src = str(flag_args[1])
if not os.path.isfile(wav_src):
print("Unable to find wav file {}".format(wav_src))
exit(1)
wav_rate = int(flag_args[2])
freq = int(flag_args[6]) * 1000
mintime = flag_args[4]
maxtime = flag_args[5]
antenna = ""
if(device.find("bladerf=1c4842b8d80e43438c042dbd752c6640") != -1):
antenna = "TX2"
print("Set antenna to TX2")
else:
print("Antenna set to default empty string. device: {}".format(device))
# print("I ran fire_nbfm with flag=" + str(wav_src) + " and freq=" +
# str(freq) + " and wav_rate=" + str(wav_rate))
nbfm.main(wav_src, wav_rate, freq, device, antenna)
sleep(3)
# Turn off biastee if the device is a bladerf with the biastee enabled
if(device.find("bladerf") != -1 and device.find("biastee=1") != -1):
bladeserial = parse_bladerf_ser(device)
serialarg = '*:serial={}'.format(bladeserial)
subprocess.run(['bladeRF-cli', '-d', serialarg, 'set', 'biastee', 'tx', 'off'])
device_q.put(device_id)
norandsleep = flag_args[8]
if(norandsleep == False):
sleep(randint(mintime, maxtime))
replaceinqueue = flag_args[7]
if(replaceinqueue != False):
flag_q.put(flag_args[0])
def fire_pocsag(self, device_id, flag_q, device_q, *flag_args):
print("\nTransmitting POCSAG\n")
flag_args = flag_args[0]
device = fetch_device(device_id)
# Parse options from flag_args
flag = flag_args[1]
modopt1 = flag_args[2]
mintime = flag_args[4]
maxtime = flag_args[5]
freq = int(flag_args[6]) * 1000
# Configure options specific to pocsagtx_osmocom script
pocsagopts = pocsagtx_osmocom.argument_parser().parse_args('')
pocsagopts.deviceargs = device
pocsagopts.samp_rate = 2400000
pocsagopts.pagerfreq = freq
pocsagopts.capcode = int(modopt1)
pocsagopts.message = flag
antenna = ""
if(device.find("bladerf=1c4842b8d80e43438c042dbd752c6640") != -1):
antenna = "TX2"
print("Set antenna to TX2")
else:
print("Antenna set to default empty string. device: {}".format(device))
pocsagopts.antenna = antenna
# Call main in pocsagtx_osmocom, passing in pocsagopts options array
pocsagtx_osmocom.main(options=pocsagopts)
# pocsag_tx.main(flag, int(modopt1), freq, device)
print("Finished TX POCSAG, sleeping for 3sec before returning device")
sleep(3)
# Turn off biastee if the device is a bladerf with the biastee enabled
if(device.find("bladerf") != -1 and device.find("biastee=1") != -1):
bladeserial = parse_bladerf_ser(device)
serialarg = '*:serial={}'.format(bladeserial)
subprocess.run(['bladeRF-cli', '-d', serialarg, 'set', 'biastee', 'tx', 'off'])
# print("Slept for 30 seconds")
device_q.put(device_id)
# print("Returned Device top pool")
norandsleep = flag_args[8]
if(norandsleep == False):
sleep(randint(mintime, maxtime))
# sleep(10)
# print("Slept for 10 seconds")
replaceinqueue = flag_args[7]
if(replaceinqueue != False):
flag_q.put(flag_args[0])
# print("Returned flag to pool")
def fire_lrs(self, device_id, flag_q, device_q, *flag_args):
print("\nTransmitting LRS\n")
flag_args = flag_args[0]
device = fetch_device(device_id)
# Parse options from flag_args
# For LRS, flag will be used to pass in the raw string of command args
flag = flag_args[1]
# modopt1 = flag_args[2]
mintime = flag_args[4]
maxtime = flag_args[5]
freq = int(flag_args[6]) * 1000
# Configure options specific to lrs_pager script
lrspageropts = lrs_pager.argument_parser().parse_args(flag.split())
# Generate pager.bin file
# Generate random filename in /tmp/ for pager bin file
randomstring = ''.join(random.choices(string.ascii_uppercase + string.digits, k=6))
outfile = "/tmp/lrs_{}.bin".format(randomstring)
lrspageropts.outputfile = outfile
lrs_pager.main(options=lrspageropts)
# Configure options specific to lrs_tx script
lrsopts = lrs_tx.argument_parser().parse_args('')
lrsopts.deviceargs = device
lrsopts.freq = freq
lrsopts.binfile = outfile
antenna = ""
if(device.find("bladerf=1c4842b8d80e43438c042dbd752c6640") != -1):
antenna = "TX2"
print("Set antenna to TX2")
else:
print("Antenna set to default empty string. device: {}".format(device))
lrsopts.antenna = antenna
# Gains below are defaults, added in case they need to be changed
# lrsopts.bbgain = 20.0
# lrsopts.ifgain = 20.0
# lrsopts.rfgain = 47.0
# Call main in pocsagtx_osmocom, passing in lrsopts options array
lrs_tx.main(options=lrsopts)
sleep(3)
# Turn off biastee if the device is a bladerf with the biastee enabled
if(device.find("bladerf") != -1 and device.find("biastee=1") != -1):
bladeserial = parse_bladerf_ser(device)
serialarg = '*:serial={}'.format(bladeserial)
subprocess.run(['bladeRF-cli', '-d', serialarg, 'set', 'biastee', 'tx', 'off'])
# Delete pager bin file from /tmp/
os.remove(outfile)
print("Removed outfile")
device_q.put(device_id)
print("Released Radio to pool")
norandsleep = flag_args[8]
if(norandsleep == False):
sleep(randint(mintime, maxtime))
# sleep(10)
print("Slept, returning flag to pool")
replaceinqueue = flag_args[7]
if(replaceinqueue != False):
flag_q.put(flag_args[0])
print("Returned flag to pool")
def select_freq(band):
"""Read from frequencies text file, select row that starts with band argument.
Returns tuple with randomly selected frequency, the minimum frequency for that band, and
the maximum frequency for that band."""
with open("frequencies.txt") as f:
reader = csv.reader(f)
for row in reader:
if row[0] == band:
freq = randint(int(row[1]), int(row[2]))
return((freq, row[1], row[2]))
def select_dvbt(channel):
with open("dvbt_channels.txt") as f:
reader = csv.reader(f)
for row in reader:
if row[0] == channel:
return(int(row[1]))
def read_flags(flags_file):
"""Read lines from flags_file and return a list of lists for each row in the flags_file.
The first item in the list contains conference information, and the remaining items in the
list contain information about each flag."""
flag_input = []
with open(flags_file) as f:
reader = csv.reader(f)
for row in reader:
flag_input.append(row)
return flag_input
def read_devices(devices_file):
"""Read lines from devices file, and return a list of lists for each row in the devices file."""
devices_input = []
with open(devices_file) as f:
reader = csv.reader(f, quotechar='"')
for row in reader:
devices_input.append(row)
return devices_input
def fetch_device(dev_id):
"""Query database for device string for a given device id and return the device string."""
global conference
conn = sqlite3.connect(conference + ".db")
c = conn.cursor()
c.execute("SELECT dev_string FROM devices WHERE dev_id=?", (dev_id,))
device = c.fetchone()
conn.close()
return device[0]
# Parse bladerf serial number from device string
def parse_bladerf_ser(device):
bladerfdevind = device.find("bladerf=")
serialstart = bladerfdevind + 8
serialend = serialstart + 32
bladeserial = device[serialstart:serialend]
return bladeserial
def argument_parser():
parser = argparse.ArgumentParser(description="A script to run SDR challenges on multiple SDR devices.")
parser.add_argument("-f", '--flagfile', help="Flags file")
parser.add_argument("-d", '--devicefile', help="Devices file")
parser.add_argument("-v", "--verbose", action="store_true")
parser.add_argument("-t", "--test", help="Run each challenge once to test flags.", action="store_true")
return parser
def main(options=None):
if options is None:
options = argument_parser().parse_args()
args = options
flagfile = args.flagfile
devicefile = args.devicefile
verbose = args.verbose
test = args.test
global conference
# Create thread safe FIFO queues for devices and flags
device_Q = Queue()
flag_Q = Queue()
# Read flags file
flag_input = read_flags(flagfile)
# Extract conference name from first item returned by read_flags
conference = flag_input[0][0]
# Check to see if database for conference name exists, create it if not
if not os.path.exists(conference + ".db"):
build_database(flagfile, devicefile)
# Connect to conference database
conn = sqlite3.connect(conference + ".db")
c = conn.cursor()
# Create a list of device IDs from devices in the database
c.execute("SELECT dev_id FROM devices")
dev_list = c.fetchall()
for row in dev_list:
device_Q.put(row[0])
# Create a list of challenge IDs based on flags that are enabled in the database
c.execute("SELECT chal_id FROM flag_status WHERE enabled=1")
flag_list = c.fetchall()
flag_list = list(sum(flag_list, ()))
# Randomize order of flag_list except when testing flags
if(test != True):
shuffle(flag_list)
print(flag_list)
flag_count = len(flag_list)
challenges_transmitted = 0
# Put flag_list into thread safe flag_Q
for row in flag_list:
flag_Q.put(row)
dev_available = device_Q.get()
t = transmitter()
jobs = []
try:
while dev_available != None:
chal_id = flag_Q.get()
c.execute('''SELECT module,chal_id,flag,modopt1,modopt2,minwait,maxwait,
freq1,chal_name FROM flags WHERE chal_id=? AND module!="dvbt"''', (chal_id,))
current_chal = c.fetchone()
current_chal = list(current_chal)
# Parse database fields into named variables to avoid using list index in multiple places
cc_module = current_chal[0]
cc_id = current_chal[1]
cc_flag = current_chal[2]
cc_modopt1 = current_chal[3]
cc_modopt2 = current_chal[4]
cc_minwait = current_chal[5]
cc_maxwait = current_chal[6]
cc_freq1 = current_chal[7]
cc_name = current_chal[8]
try:
txfreq = int(cc_freq1)
freq_or_range = str(txfreq)
except ValueError:
freq_range = select_freq(cc_freq1)
txfreq = freq_range[0]
freq_or_range = str(freq_range[1]) + "-" + str(freq_range[2])
# Paint waterfall every time during the CTF, or only once when testing
if(test != True or challenges_transmitted == 0):
print(f"\nPainting Waterfall on {txfreq}\n")
# spectrum_paint.main(current_chal[7] * 1000, fetch_device(dev_available))
antenna = ""
device = fetch_device(dev_available)
# bladerf with serial 1c4842b8d80e43438c042dbd752c6640 has a broken TX1 port
if(device.find("bladerf=1c4842b8d80e43438c042dbd752c6640") != -1):
antenna = "TX2"
print("Set antenna to TX2")
else:
print("Antenna set to default empty string. device: {}".format(device))
p = Process(target=spectrum_paint.main, args=(txfreq * 1000, device, antenna)) # , daemon=True)
p.start()
p.join()
# Turn off biastee if the device is a bladerf with the biastee enabled
if(device.find("bladerf") != -1 and device.find("biastee=1") != -1):
bladeserial = parse_bladerf_ser(device)
serialarg = '*:serial={}'.format(bladeserial)
subprocess.run(['bladeRF-cli', '-d', serialarg, 'set', 'biastee', 'tx', 'off'])
print(f"\nStarting {cc_name} on {txfreq}")
# Create list of challenge module arguments, using txfreq to allow setting random freq here instead of in the challenge module
replaceinqueue = True
norandsleep = False
if(test):
replaceinqueue = False
norandsleep = True
challengeargs = [cc_id, cc_flag, cc_modopt1, cc_modopt2, cc_minwait, cc_maxwait, txfreq, replaceinqueue, norandsleep]
p = Process(target=getattr(t, "fire_" + cc_module), args=(dev_available, flag_Q, device_Q, challengeargs))
p.start()
if(test == True):
jobs.append(p)
challenges_transmitted += 1
# #we need a way to know if p.start errored or not
# os.system("echo " + freq_or_range + " > /run/shm/wctf_status/" + current_chal[8] + "_sdr")
# os.system('''timeout 15 ssh -F /root/wctf/liludallasmultipass/ssh/config -oStrictHostKeyChecking=no -oConnectTimeout=10 -oPasswordAuthentication=no -n scoreboard echo ''' + freq_or_range + " > /run/shm/wctf_status/" + current_chal[8] + "_sdr")
dev_available = device_Q.get()
sleep(1)
if(test == True and flag_Q.empty()):
returnvalue = 0
print("Testing complete")
while(len(jobs)>0):
proc = jobs[0]
exitcode = proc.exitcode
jobs.remove(proc)
if(exitcode == None):
jobs.append(proc)
continue
if(exitcode != 0):
print("Failed")
returnvalue = 1
exit(returnvalue)
#print("exitcode: {}".format(proc.exitcode))
proc.join()
exit(returnvalue)
except KeyboardInterrupt:
print("Trying to Exit!")
try:
p.terminate()
p.join()
except UnboundLocalError:
pass
finally:
exit()
if __name__ == '__main__':
main()