diff --git a/fixtures/.rustscan_scripts/test_script.pl b/fixtures/.rustscan_scripts/test_script.pl index c51cc014a..11b75069f 100644 --- a/fixtures/.rustscan_scripts/test_script.pl +++ b/fixtures/.rustscan_scripts/test_script.pl @@ -4,7 +4,7 @@ #ports_separator = "," #call_format = "perl {{script}} {{ip}} {{port}}" -# Sriptfile parser stops at the first blank line with parsing. +# The Scriptfile parser stops parsing at the first blank line. # This script will run itself as an argument with the system installed perl interpreter, ports will be concatenated with "," . # Unused field: trigger_port = "80" # get total arg passed to this script @@ -20,4 +20,4 @@ foreach my $a(@ARGV) { print "Arg # $counter : $a\n"; $counter++; -} \ No newline at end of file +} diff --git a/fixtures/.rustscan_scripts/test_script.py b/fixtures/.rustscan_scripts/test_script.py index b990fd846..849518e51 100644 --- a/fixtures/.rustscan_scripts/test_script.py +++ b/fixtures/.rustscan_scripts/test_script.py @@ -4,10 +4,10 @@ #trigger_port = "80" #call_format = "python3 {{script}} {{ip}} {{port}}" -# Sriptfile parser stops at the first blank line with parsing. +# The Scriptfile parser stops parsing at the first blank line. # This script will run itself as an argument with the system installed python interpreter, only scanning port 80. # Unused filed: ports_separator = "," import sys -print('Python script ran with arguments', str(sys.argv)) \ No newline at end of file +print('Python script ran with arguments', str(sys.argv)) diff --git a/fixtures/.rustscan_scripts/test_script.sh b/fixtures/.rustscan_scripts/test_script.sh index 20b2f0e57..fbcd3f468 100644 --- a/fixtures/.rustscan_scripts/test_script.sh +++ b/fixtures/.rustscan_scripts/test_script.sh @@ -4,9 +4,9 @@ #ports_separator = "," #call_format = "bash {{script}} {{ip}} {{port}}" -# Sriptfile parser stops at the first blank line with parsing. +# The Scriptfile parser stops parsing at the first blank line. # This script will run itself as an argument with the system installed bash interpreter, scanning all ports concatenated with "," . # Unused filed: trigger_port = "80" # print all arguments passed to the script -echo $@ \ No newline at end of file +echo $@ diff --git a/fixtures/.rustscan_scripts/test_script.txt b/fixtures/.rustscan_scripts/test_script.txt index fbb58c4ed..42783610e 100644 --- a/fixtures/.rustscan_scripts/test_script.txt +++ b/fixtures/.rustscan_scripts/test_script.txt @@ -4,6 +4,6 @@ #ports_separator = "," #call_format = "nmap -vvv -p {{port}} {{ip}}" -# Scriptfile parser stops at the first blank line with parsing. +# The Scriptfile parser stops parsing at the first blank line. # This script will run the system installed nmap, ports will be concatenated with "," . -# Unused field: trigger_port = "80" \ No newline at end of file +# Unused field: trigger_port = "80"