From 3168580b860a2e01f6eb6a738366304cc6a05481 Mon Sep 17 00:00:00 2001 From: rezamqds <85675968+rezamqds@users.noreply.github.com> Date: Sun, 20 Sep 2026 17:24:58 +0330 Subject: [PATCH 1/4] Fix typo in Scriptfile comment Fix comment for clarity in test_script.pl --- fixtures/.rustscan_scripts/test_script.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +} From bc80fbbad4c4ee34908663e0909209c41ad02737 Mon Sep 17 00:00:00 2001 From: rezamqds <85675968+rezamqds@users.noreply.github.com> Date: Sun, 20 Sep 2026 17:27:10 +0330 Subject: [PATCH 2/4] Fix typo in Scriptfile comment Fix comment for clarity in test_script.py --- fixtures/.rustscan_scripts/test_script.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)) From 6cb99747e1e265a459c30c417bf0f3e6607c6648 Mon Sep 17 00:00:00 2001 From: rezamqds <85675968+rezamqds@users.noreply.github.com> Date: Sun, 20 Sep 2026 17:28:31 +0330 Subject: [PATCH 3/4] Fix typo in Scriptfile comment Clarify comment on scriptfile parser behavior --- fixtures/.rustscan_scripts/test_script.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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" From 9a45d26e9990c7c35d0b77d981142777050b543b Mon Sep 17 00:00:00 2001 From: rezamqds <85675968+rezamqds@users.noreply.github.com> Date: Sun, 20 Sep 2026 17:28:35 +0330 Subject: [PATCH 4/4] Fix typo in Scriptfile comment Fix typo in comment about Scriptfile parser --- fixtures/.rustscan_scripts/test_script.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 $@