mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-17 22:18:05 -06: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:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user