Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Burp/conf/wahh.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
"bugs": [],
"notes": ""
},
"Client-side input controls - Lenght limits": {
"Client-side input controls - Length limits": {
"description": "",
"resources": [],
"bugs": [],
Expand Down Expand Up @@ -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": [],
Expand Down
2 changes: 1 addition & 1 deletion ZAP/scripts/passive/CMDi.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion ZAP/scripts/passive/Debug & Logic Parameters.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion ZAP/scripts/passive/File Inclusion.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion ZAP/scripts/passive/IDOR.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion ZAP/scripts/passive/SQLi.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion ZAP/scripts/passive/SSRF.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion ZAP/scripts/passive/SSTI.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down