You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Probably not a big deal because why would we be putting passwords in cookies...
In PhpDataSource you are running $_COOKIE through DataSource::removePasswords(). But in PhpDataSource::getRequestHeaders() nothing is done about the cookie header which contains the same data.
Maybe the cookie header could just be dropped? Data is already collected elsewhere.
Alternatively parse the header into an array, remove passwords and put it back together as a string.
Or maybe just forget about it because why would we store our password in a cookie?
The text was updated successfully, but these errors were encountered:
Probably not a big deal because why would we be putting passwords in cookies...
In PhpDataSource you are running $_COOKIE through DataSource::removePasswords(). But in PhpDataSource::getRequestHeaders() nothing is done about the cookie header which contains the same data.
Maybe the cookie header could just be dropped? Data is already collected elsewhere.
Alternatively parse the header into an array, remove passwords and put it back together as a string.
Or maybe just forget about it because why would we store our password in a cookie?
The text was updated successfully, but these errors were encountered: