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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
- insufficient_security_configurability.verification_of_contact_method_not_required
- insufficient_security_configurability.weak_two_fa_implementation.two_fa_code_is_not_updated_after_new_code_is_requested
- insufficient_security_configurability.weak_two_fa_implementation.old_two_fa_code_is_not_invalidated_after_new_code_is_generated
- server_security_misconfiguration.oauth_misconfiguration.account_squatting

### Removed
- insufficient_security_configurability.lack_of_verification_email
Expand Down
4 changes: 4 additions & 0 deletions mappings/cvss_v3/cvss_v3.json
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,10 @@
{
"id": "account_takeover",
"cvss_v3": "AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H"
},
{
"id": "account_squatting",
"cvss_v3": "AV:N/AC:H/PR:N/UI:R/S:U/C:L/I:N/A:N"
}
]
},
Expand Down
4 changes: 4 additions & 0 deletions mappings/remediation_advice/remediation_advice.json
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,10 @@
"https://tools.ietf.org/html/rfc6819"
]
},
{
"id": "account_squatting",
"remediation_advice": "In case of OAuth based account registration, ensure that if there is a preexisting account for the same email address and is to be merged, that it will no longer be accessible with its old password."
},
{
"id": "missing_state_parameter",
"remediation_advice": "The OAuth state parameter is a form of CSRF protection, ensure that it is in place and properly validated."
Expand Down
6 changes: 6 additions & 0 deletions vulnerability-rating-taxonomy.json
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,12 @@
"type": "variant",
"priority": 2
},
{
"id": "account_squatting",
"name": "Account Squatting",
"type": "variant",
"priority": 4
},
{
"id": "missing_state_parameter",
"name": "Missing/Broken State Parameter",
Expand Down