From b47ea6fe01b7f53985b21d908c2ede5ec13fb009 Mon Sep 17 00:00:00 2001 From: CaffeineFueled Date: Sun, 21 Sep 2025 20:19:40 +0200 Subject: [PATCH 1/2] ADD further information like project name, source reference and license to start page --- main.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index 6c0814c..447d29f 100644 --- a/main.py +++ b/main.py @@ -212,7 +212,15 @@ curl -s https://{DOMAIN}/PASTE_THE_ID \ ████ Further Information ████ -More information will follow. Work in Progress. +Powered by linedump + +Source: + https://git.uphillsecurity.com/cf7/linedump + +License: + Apache-2.0 + https://git.uphillsecurity.com/cf7/linedump/src/branch/main/LICENSE + """ if __name__ == "__main__": From b408f2196c4df01ce629f6f5f4232a882443b21c Mon Sep 17 00:00:00 2001 From: CaffeineFueled Date: Sun, 21 Sep 2025 21:03:10 +0200 Subject: [PATCH 2/2] ADD adv example for cont. command --- main.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index 447d29f..f6ea684 100644 --- a/main.py +++ b/main.py @@ -201,13 +201,21 @@ curl -s https://{DOMAIN}/PASTE_THE_ID \ ██ Adv Examples ██ - █ Multiple Commands + █ Multiple commands: {{ cmd() {{ printf "\\n# %s\\n" "$*"; "$@"; }}; \\ cmd hostname; \\ cmd ip -br a; \\ }} 2>&1 | curl -X POST https://{DOMAIN} --data-binary @- + █ Continous command: + +(timeout --signal=INT --kill-after=5s 10s \\ + ping google.com; \\ + echo "--- Terminated ---") | \\ + curl -X POST --data-binary @- https://linedump.com + + ████ Further Information ████