aboutsummaryrefslogtreecommitdiff
path: root/client.py
blob: 6a17f4cd6a37deec9e3bdc917c4a1a9f526c6549 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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()