Skip to content

Commit d271cd3

Browse files
committed
Update report
1 parent ae847f6 commit d271cd3

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

crates/forge_analyzer/src/checkers.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1170,10 +1170,10 @@ impl IntoVuln for AuthHeaderVuln {
11701170
"Basic Authorization header on fetch found via {}",
11711171
self.stack
11721172
),
1173-
severity: Severity::Medium,
1173+
severity: Severity::Critical,
11741174
app_key: reporter.app_key().to_owned(),
11751175
app_name: reporter.app_name().to_owned(),
1176-
marketplace_security_requirement: "Requirement 5",
1176+
marketplace_security_requirement: "Requirement 10",
11771177
date: reporter.current_date(),
11781178
},
11791179
AuthHeaderVulnKind::BearerAdmin => Vulnerability {
@@ -1184,10 +1184,10 @@ impl IntoVuln for AuthHeaderVuln {
11841184
),
11851185
recommendation: "Avoid using admin API tokens in Forge apps. Prefer scoped OAuth tokens or Forge-native APIs.",
11861186
proof: format!("Bearer token on admin API fetch found via {}", self.stack),
1187-
severity: Severity::High,
1187+
severity: Severity::Medium,
11881188
app_key: reporter.app_key().to_owned(),
11891189
app_name: reporter.app_name().to_owned(),
1190-
marketplace_security_requirement: "Requirement 5",
1190+
marketplace_security_requirement: "Requirement 10",
11911191
date: reporter.current_date(),
11921192
},
11931193
}

0 commit comments

Comments
 (0)