Compare commits

...

2 commits

20
main.py
View file

@ -201,18 +201,34 @@ curl -s https://{DOMAIN}/PASTE_THE_ID \
Adv Examples Adv Examples
Multiple Commands Multiple commands:
{{ cmd() {{ printf "\\n# %s\\n" "$*"; "$@"; }}; \\ {{ cmd() {{ printf "\\n# %s\\n" "$*"; "$@"; }}; \\
cmd hostname; \\ cmd hostname; \\
cmd ip -br a; \\ cmd ip -br a; \\
}} 2>&1 | curl -X POST https://{DOMAIN} --data-binary @- }} 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 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__": if __name__ == "__main__":