mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-23 21:14:33 +00:00
Add SameSite attribute to WebUI session cookie
This attribute prevents the cookie from being submitted on any cross-site request, strongly limiting CSRF. Closes #9877.
This commit is contained in:
parent
a57a026f4c
commit
cd47380b85
@ -656,7 +656,10 @@ void WebApplication::sessionStart()
|
||||
QNetworkCookie cookie(C_SID, m_currentSession->id().toUtf8());
|
||||
cookie.setHttpOnly(true);
|
||||
cookie.setPath(QLatin1String("/"));
|
||||
header(Http::HEADER_SET_COOKIE, cookie.toRawForm());
|
||||
QByteArray cookieRawForm = cookie.toRawForm();
|
||||
if (m_isCSRFProtectionEnabled)
|
||||
cookieRawForm.append("; SameSite=Strict");
|
||||
header(Http::HEADER_SET_COOKIE, cookieRawForm);
|
||||
}
|
||||
|
||||
void WebApplication::sessionEnd()
|
||||
|
Loading…
x
Reference in New Issue
Block a user