Remove redundant lua -e from File Write and File Read categories in nmap

master
Shikata 2021-01-11 12:37:37 +02:00
parent db40142ea7
commit c4f93b87d5
1 changed files with 2 additions and 2 deletions

View File

@ -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.