diff options
Diffstat (limited to 'exploits')
| -rw-r--r-- | exploits/exploit.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/exploits/exploit.py b/exploits/exploit.py new file mode 100644 index 0000000..7a4476a --- /dev/null +++ b/exploits/exploit.py @@ -0,0 +1,16 @@ +from avala import * +import string +import time +import random + + +@exploit( + alias="exploit", + service="CApp", + targets=TargetingStrategy.AUTO, + tick_scope=TickScope.SINGLE, + draft=True, # REMOVE THIS WHEN PUSHING TO PRODUCTION +) +def run_exploit(target: str, flag_ids: str) -> str: + url = f"http://{target}:1337/" + return "" |
