summaryrefslogtreecommitdiffstats
path: root/iv/orodja/napad/template.py
diff options
context:
space:
mode:
Diffstat (limited to 'iv/orodja/napad/template.py')
-rwxr-xr-xiv/orodja/napad/template.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/iv/orodja/napad/template.py b/iv/orodja/napad/template.py
new file mode 100755
index 0000000..2629fe9
--- /dev/null
+++ b/iv/orodja/napad/template.py
@@ -0,0 +1,10 @@
+#!/usr/bin/python3
+import os
+import requests
+import json
+target = os.getenv("TARGET_IP")
+extra = json.loads(os.getenv("TARGET_EXTRA", "{}"))
+with requests.Session() as s:
+ userid = extra["userid"]
+ response = s.get(f"http://{target}:80/dir/flags.txt?user={userid}")
+ print(response.text)