Skip to content

Commit 278a1e2

Browse files
authored
Merge pull request #17 from SasanLabs/FuzzerChanges
Not stopping JWT active scanner on finding client side vulnerability
2 parents 5214f7d + 161140e commit 278a1e2

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/main/java/org/zaproxy/zap/extension/jwt/JWTActiveScanRule.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public void init() {
6868
maxRequestCount = 8;
6969
break;
7070
case HIGH:
71-
maxRequestCount = 12;
71+
maxRequestCount = 18;
7272
break;
7373
case INSANE:
7474
maxRequestCount = 28;
@@ -105,9 +105,7 @@ public void scan(HttpMessage msg, String param, String value) {
105105
}
106106

107107
if (JWTConfiguration.getInstance().isEnableClientConfigurationScan()) {
108-
if (performAttackClientSideConfigurations(msg, param)) {
109-
return;
110-
}
108+
performAttackClientSideConfigurations(msg, param);
111109
this.decreaseRequestCount();
112110
}
113111
performAttackServerSideConfigurations(msg, param, jwtHolder, value);

0 commit comments

Comments
 (0)