-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqueued_submit.py
68 lines (59 loc) · 1.9 KB
/
queued_submit.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
import queue
import threading
from submitter import CustomSubmitter
import time
class QueuedSubmitter(threading.Thread):
def __init__(self, settings, _globals):
super().__init__()
self.queue = queue.Queue()
self.submit_url = settings.submit_url
self.submit_token = settings.submit_token
self.submitter = CustomSubmitter(settings, _globals)
def enqueue_flag(self, flag):
self.queue.put(flag)
def run(self):
while True:
n_flags = 0
flags = set()
while not self.queue.empty():
flag = self.queue.get()
flags.add(flag)
n_flags += 1
flags = list(flags)
self.submitter.submit(flags, self.submit_url, self.submit_token)
# task_done useful for future purposes in which attackers join the submitter
for _ in range(n_flags):
self.queue.task_done()
if n_flags > 0:
print("[+] {} flags submitted by the queued submitter".format(n_flags))
time.sleep(2)
if __name__ == "__main__":
# test
q = queue.Queue()
def producer(_id):
while True:
q.put("msg_{}".format(_id))
time.sleep(1)
def consumer():
while True:
n_msg = 0
msg = []
while not q.empty():
m = q.get()
msg.append(m)
n_msg += 1
print(" ".join(msg))
for _ in range(n_msg):
q.task_done()
print("Number of messages: {}".format(n_msg))
time.sleep(2)
n_threads, threads = 5, []
for i in range(n_threads):
t = threading.Thread(target=producer, args=[i+1])
t.start()
threads.append(t)
t = threading.Thread(target=consumer, args=[])
t.start()
threads.append(t)
for t in threads:
t.join()