diff options
| author | Jovan Jovanovic <jovanovicjovan921@gmail.com> | 2024-09-05 23:05:40 +0200 |
|---|---|---|
| committer | Jovan Jovanovic <jovanovicjovan921@gmail.com> | 2024-09-05 23:05:40 +0200 |
| commit | 51c419aeb1573281148d3c7ebad8ee5136fe6254 (patch) | |
| tree | 503f4e94d1c152caac634c40c1d09cce386990ab /exploits | |
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 "" |
