-
Notifications
You must be signed in to change notification settings - Fork 14
Description
Submission File: ES2512-5a5a0447-mod-CWE-598-remove-GET-specific.txt
ID: ES2512-5a5a0447
SUBMISSION DATE: 2025-12-27 03:58:02
NAME: Mod CWE-598 remove specific to GET request
DESCRIPTION:
Remove the overly specific "GET Request Method" from the CWE Name. The
currently documented Background Details and Common Consequences state the
risks of sensitive query strings being stored and shared in various places,
but this is not limited to GET requests since POST, DELETE, PUT, and other
request methods can still include sensitive data in query strings. Consider
naming "Use of HTTP Request With Sensitive Query Strings" instead. And in
the Potential Mitigations section consider replacing "use the POST method"
with "place sensitive data in the request body or appropriate request
headers" instead.
This weakness should not imply that using non-GET methods with sensitive
query strings is safe.