mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-08-14.git
synced 2024-08-15 00:53:20 +00:00
Add header check for CSRF
This commit is contained in:
parent
62f023c50f
commit
a749ac73ac
1 changed files with 12 additions and 0 deletions
|
@ -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 a new issue