diff --git a/examples/web-fodder.il b/examples/web-fodder.il index e2029b8..4b74978 100644 --- a/examples/web-fodder.il +++ b/examples/web-fodder.il @@ -5,5 +5,11 @@ mkdir _output_/_target_/loot touch _output_/_target_/notes.txt _block:file-creation_ _blocker_ -nikto --host _target_ | tee _output_/_target_/scans/nikto-_target_.txt -sslscan _target_ | tee _output_/_target_/scans/sslscan-_target_.txt +_block_ +echo "running Nikto scan on _target_" +nikto --host _target_ > _output_/_target_/scans/nikto-_target_.txt +_block_ +_block_ +echo "running SSLScan on _target_" +sslscan _target_ > _output_/_target_/scans/sslscan-_target_.txt +_block_