mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2024-12-24 13:59:17 +01:00
Remove redundant lua -e from File Write and File Read categories in nmap
This commit is contained in:
parent
db40142ea7
commit
c4f93b87d5
@ -85,7 +85,7 @@ functions:
|
||||
file-write:
|
||||
- code: |
|
||||
TF=$(mktemp)
|
||||
echo 'lua -e 'local f=io.open("file_to_write", "wb"); f:write("data"); io.close(f);' > $TF
|
||||
echo 'local f=io.open("file_to_write", "wb"); f:write("data"); io.close(f);' > $TF
|
||||
nmap --script=$TF
|
||||
- description: The payload appears inside the regular nmap output.
|
||||
code: |
|
||||
@ -94,7 +94,7 @@ functions:
|
||||
file-read:
|
||||
- code: |
|
||||
TF=$(mktemp)
|
||||
echo 'lua -e 'local f=io.open("file_to_read", "rb"); print(f:read("*a")); io.close(f);' > $TF
|
||||
echo 'local f=io.open("file_to_read", "rb"); print(f:read("*a")); io.close(f);' > $TF
|
||||
nmap --script=$TF
|
||||
sudo:
|
||||
- description: Input echo is disabled.
|
||||
|
Loading…
Reference in New Issue
Block a user