Compare commits
2 commits
8531d09a04
...
b408f2196c
Author | SHA1 | Date | |
---|---|---|---|
b408f2196c | |||
b47ea6fe01 |
1 changed files with 18 additions and 2 deletions
20
main.py
20
main.py
|
@ -201,18 +201,34 @@ 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 ████
|
||||
|
||||
|
||||
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__":
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue