DSGVO export uses query parameter for password instead of request body #164
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Severity: HIGH
Location
lib/Controller/DsgvoController.php:64Description
The DSGVO export endpoint reads the encryption password via
$this->request->getParam('password')which can come from query string. Passwords in query strings are logged in server access logs, browser history, and proxy logs.Recommendation
Read password exclusively from the POST body via
getRequestData()['password'].