Skip to content
Merged
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
- mobile_security_misconfiguration.auto_backup_allowed_by_default
- server_security_misconfiguration.no_rate_limiting_on_form.change_password
- server_side_injection.content_spoofing.impersonation_via_broken_link_hijacking
- cross_site_request_forgery_csrf.flash_based.high_impact
- cross_site_request_forgery_csrf.flash_based.low_impact

### Removed
- sensitive_data_exposure.critically_sensitive_data.password_disclosure
Expand Down
13 changes: 13 additions & 0 deletions mappings/cvss_v3/cvss_v3.json
Original file line number Diff line number Diff line change
Expand Up @@ -681,6 +681,19 @@
{
"id": "csrf_token_not_unique_per_request",
"cvss_v3": "AV:N/AC:H/PR:N/UI:R/S:U/C:N/I:N/A:N"
},
{
"id": "flash_based",
"children": [
{
"id": "high_impact",
"cvss_v3": "AV:N/AC:H/PR:N/UI:R/S:U/C:L/I:H/A:N"
},
{
"id": "low_impact",
"cvss_v3": "AV:N/AC:H/PR:N/UI:R/S:U/C:N/I:L/A:N"
}
]
}
]
},
Expand Down
19 changes: 19 additions & 0 deletions vulnerability-rating-taxonomy.json
Original file line number Diff line number Diff line change
Expand Up @@ -1302,6 +1302,25 @@
"name": "CSRF Token Not Unique Per Request",
"type": "subcategory",
"priority": 5
},
{
"id": "flash_based",
"name": "Flash-Based",
"type": "subcategory",
"children": [
{
"id": "high_impact",
"name": "High Impact",
"type": "variant",
"priority": 4
},
{
"id": "low_impact",
"name": "Low Impact",
"type": "variant",
"priority": 5
}
]
}
]
},
Expand Down