From c2dee48a41f56356d6e61e17c4b8ef370c2b53ba Mon Sep 17 00:00:00 2001 From: Jovan Jovanovic Date: Fri, 6 Sep 2024 00:35:32 +0200 Subject: Template --- client.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 client.py (limited to 'client.py') diff --git a/client.py b/client.py new file mode 100644 index 0000000..6a17f4c --- /dev/null +++ b/client.py @@ -0,0 +1,17 @@ +import sys +from avala import Avala + +avl = Avala( + host="avala.s1.ctf.rs", + protocol="https", + port=443, + username="exploit", + password="najjaca_sifra_do_sad", +) + +avl.register_directory("exploits") + +if len(sys.argv) == 2 and sys.argv[1] == "debug": + avl.workshop() +else: + avl.run() -- cgit v1.2.3