mirror of
https://github.com/iv-org/invidious.git
synced 2024-10-01 01:25:56 -04:00
Add header check for CSRF
This commit is contained in:
parent
62f023c50f
commit
a749ac73ac
@ -106,6 +106,18 @@ spawn do
|
|||||||
end
|
end
|
||||||
|
|
||||||
before_all do |env|
|
before_all do |env|
|
||||||
|
# CSRF
|
||||||
|
if Kemal.config.ssl || CONFIG.https_only
|
||||||
|
host = env.request.headers["Host"]?
|
||||||
|
|
||||||
|
if (env.request.headers["Origin"]?.try &.== host) ||
|
||||||
|
(env.request.headers["Referer"]?.try &.== host)
|
||||||
|
# All good!
|
||||||
|
else
|
||||||
|
halt env, status_code: 403, response: "Failed CSRF check"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
if env.request.cookies.has_key? "SID"
|
if env.request.cookies.has_key? "SID"
|
||||||
headers = HTTP::Headers.new
|
headers = HTTP::Headers.new
|
||||||
headers["Cookie"] = env.request.headers["Cookie"]
|
headers["Cookie"] = env.request.headers["Cookie"]
|
||||||
|
Loading…
Reference in New Issue
Block a user