From 1532369fc38e415cd29d88691bbc31b6d52c0b91 Mon Sep 17 00:00:00 2001 From: Michael Skelton <886344+codingo@users.noreply.github.com> Date: Sun, 6 Jan 2019 17:51:04 +1000 Subject: [PATCH] Fix Nikto examples --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4be4b4d..851d043 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ hackerone.com You could use interlace to run over any number of targets within this file using: bash ``` -➜ /tmp interlace -tL ./targets.txt -threads 5 -c "nikto --host _target_:_port_ > ./_target_-nikto.txt" -v +➜ /tmp interlace -tL ./targets.txt -threads 5 -c "nikto --host _target_ > ./_target_-nikto.txt" -v ============================================== Interlace v1.0 by Michael Skelton (@codingo_) ============================================== @@ -80,7 +80,7 @@ For applications where you desire feedback simply pass commands as you normally Using the above example, let's assume you want independant scans to be run for both ports `80` and `443` for the same targets. You would then use the following: ``` -➜ /tmp interlace -tL ./targets.txt -threads 5 -c "nikto --host _target_ > ./_target_-nikto.txt" -p 80,443 -v +➜ /tmp interlace -tL ./targets.txt -threads 5 -c "nikto --host _target_:_port_ > ./_target_-_port_-nikto.txt" -p 80,443 -v ============================================== Interlace v1.0 by Michael Skelton (@codingo_) ==============================================