From 8c7b7f906a667a2cca18b4689d204b7861662986 Mon Sep 17 00:00:00 2001 From: Jah-yee <166608075+Jah-yee@users.noreply.github.com> Date: Tue, 16 Jun 2026 22:51:26 +0800 Subject: [PATCH] fix: correct typos discovered by codespell - Burp/conf/wahh.json: Lenght -> Length, maping -> mapping - ZAP/scripts/passive/*.py: posible -> possible (7 files) Fixes issue #76. --- Burp/conf/wahh.json | 4 ++-- ZAP/scripts/passive/CMDi.py | 2 +- ZAP/scripts/passive/Debug & Logic Parameters.py | 2 +- ZAP/scripts/passive/File Inclusion.py | 2 +- ZAP/scripts/passive/IDOR.py | 2 +- ZAP/scripts/passive/SQLi.py | 2 +- ZAP/scripts/passive/SSRF.py | 2 +- ZAP/scripts/passive/SSTI.py | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Burp/conf/wahh.json b/Burp/conf/wahh.json index 129d955..437946f 100644 --- a/Burp/conf/wahh.json +++ b/Burp/conf/wahh.json @@ -99,7 +99,7 @@ "bugs": [], "notes": "" }, - "Client-side input controls - Lenght limits": { + "Client-side input controls - Length limits": { "description": "", "resources": [], "bugs": [], @@ -271,7 +271,7 @@ "bugs": [], "notes": "" }, - "Token handling - Test maping of tokens to sessions": { + "Token handling - Test mapping of tokens to sessions": { "description": "", "resources": [], "bugs": [], diff --git a/ZAP/scripts/passive/CMDi.py b/ZAP/scripts/passive/CMDi.py index b0085ad..8c45061 100644 --- a/ZAP/scripts/passive/CMDi.py +++ b/ZAP/scripts/passive/CMDi.py @@ -1,7 +1,7 @@ import re from org.zaproxy.zap.extension.script import ScriptVars -''' find posible CDMi using Hunt Methodology''' +''' find possible CDMi using Hunt Methodology''' def scan(ps, msg, src): # Test the request and/or response here diff --git a/ZAP/scripts/passive/Debug & Logic Parameters.py b/ZAP/scripts/passive/Debug & Logic Parameters.py index 17becde..f02c580 100644 --- a/ZAP/scripts/passive/Debug & Logic Parameters.py +++ b/ZAP/scripts/passive/Debug & Logic Parameters.py @@ -1,7 +1,7 @@ import re from org.zaproxy.zap.extension.script import ScriptVars -''' find posible Server Side Template Injection using Hunt Methodology''' +''' find possible Server Side Template Injection using Hunt Methodology''' def scan(ps, msg, src): # Test the request and/or response here diff --git a/ZAP/scripts/passive/File Inclusion.py b/ZAP/scripts/passive/File Inclusion.py index c72ec31..670c1f6 100644 --- a/ZAP/scripts/passive/File Inclusion.py +++ b/ZAP/scripts/passive/File Inclusion.py @@ -1,7 +1,7 @@ import re from org.zaproxy.zap.extension.script import ScriptVars -''' find posible File Inclusion using Hunt Methodology''' +''' find possible File Inclusion using Hunt Methodology''' def scan(ps, msg, src): # Test the request and/or response here diff --git a/ZAP/scripts/passive/IDOR.py b/ZAP/scripts/passive/IDOR.py index 884d426..49f41f3 100644 --- a/ZAP/scripts/passive/IDOR.py +++ b/ZAP/scripts/passive/IDOR.py @@ -1,7 +1,7 @@ import re from org.zaproxy.zap.extension.script import ScriptVars -''' find posible IDOR using Hunt Methodology''' +''' find possible IDOR using Hunt Methodology''' def scan(ps, msg, src): # Test the request and/or response here diff --git a/ZAP/scripts/passive/SQLi.py b/ZAP/scripts/passive/SQLi.py index 271035f..4fe3d2f 100644 --- a/ZAP/scripts/passive/SQLi.py +++ b/ZAP/scripts/passive/SQLi.py @@ -1,7 +1,7 @@ import re from org.zaproxy.zap.extension.script import ScriptVars -''' find posible SQLi using Hunt Methodology''' +''' find possible SQLi using Hunt Methodology''' def scan(ps, msg, src): # Test the request and/or response here diff --git a/ZAP/scripts/passive/SSRF.py b/ZAP/scripts/passive/SSRF.py index 5212e27..ef9ccf3 100644 --- a/ZAP/scripts/passive/SSRF.py +++ b/ZAP/scripts/passive/SSRF.py @@ -1,7 +1,7 @@ import re from org.zaproxy.zap.extension.script import ScriptVars -''' find posible SSRF using Hunt Methodology''' +''' find possible SSRF using Hunt Methodology''' def scan(ps, msg, src): # Test the request and/or response here diff --git a/ZAP/scripts/passive/SSTI.py b/ZAP/scripts/passive/SSTI.py index 15950b6..9d607be 100644 --- a/ZAP/scripts/passive/SSTI.py +++ b/ZAP/scripts/passive/SSTI.py @@ -1,7 +1,7 @@ import re from org.zaproxy.zap.extension.script import ScriptVars -''' find posible Server Side Template Injection using Hunt Methodology''' +''' find possible Server Side Template Injection using Hunt Methodology''' def scan(ps, msg, src): # Test the request and/or response here