Skip to content

Commit

Permalink
make attacker remoter default offline
Browse files Browse the repository at this point in the history
  • Loading branch information
alirezade authored and alirezade committed Jan 8, 2024
1 parent 3d2d93f commit 5063f24
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
8 changes: 7 additions & 1 deletion src/AttackerRemote.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,13 @@ def try_enable(self):
logging.ERROR)
return

print("connection file compiled!\n")
new_msg = "connection file compiled! with following params:\n"
for key,value in connection_params.items():
new_msg += f'{key}: {value}'

new_msg = Runnable._make_text(new_msg, Runnable.COLOR_YELLOW)

self.report(new_msg)

self.mqtt_thread = threading.Thread(target=self.setup_mqtt_client)
self.mqtt_thread.start()
Expand Down
8 changes: 0 additions & 8 deletions src/AttackerRemoteConnection.txt

This file was deleted.

0 comments on commit 5063f24

Please sign in to comment.