Skip to content

Commit 6e762aa

Browse files
authored
Merge pull request #476 from ricekot/ssti-js-missing-var
Add missing variable declaration in active/SSTI.js
2 parents f1abd14 + 5e3ebae commit 6e762aa

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
88
- Standalone script 'PrivateMethodAccess.js'
99
- Variant script 'AddUrlParams.js'
1010
- Extender script 'ScanMonitor.js'
11+
1112
### Changed
1213
- Add cautionary note to help and readme.
1314
- Maintenance and documentation changes.
1415

1516
### Fixed
16-
- Bug in 'Mutliple Security Header Check.js'.
17+
- The following scripts were not being loaded as scan rules:
18+
- active/SSTI.js
19+
- passive/Mutliple Security Header Check.js
1720

1821
## [19] - 2024-07-01
1922
### Added

active/SSTI.js

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ var log = LoggerManager.getLogger("SSTI");
1414
var ScanRuleMetadata = Java.type(
1515
"org.zaproxy.addon.commonlib.scanrules.ScanRuleMetadata"
1616
);
17+
var CommonAlertTag = Java.type("org.zaproxy.addon.commonlib.CommonAlertTag");
1718

1819
function getMetadata() {
1920
return ScanRuleMetadata.fromYaml(`

0 commit comments

Comments
 (0)