Created
November 12, 2024 22:03
-
-
Save jc00ke/9321d29acb3c09c580225d91bfa8d56a to your computer and use it in GitHub Desktop.
CSP Nonce example for Fun With Flags UI
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmofule MyAppWeb.NoncePlug do | |
import Plug.Conn | |
def init(opts \\ []), do: opts | |
def call(conn, _opts) do | |
style_nonce = :crypto.strong_random_bytes(16) |> Base.encode64(padding: false) | |
script_nonce = :crypto.strong_random_bytes(16) |> Base.encode64(padding: false) | |
conn | |
|> assign(:my_app_style_nonce, style_nonce) | |
|> assign(:my_app_script_nonce, script_nonce) | |
end | |
end | |
defmodule MyAppWeb.Router do | |
use MyAppWeb, :router | |
forward "/", | |
FunWithFlags.UI.Router, | |
namespace: "feature-flags", | |
csp_nonce_assign_key: %{ | |
style: :my_app_style_nonce, | |
script: :my_app_script_nonce | |
} | |
end | |
defmodule MyAppWeb.Endpoint do | |
# ... | |
plug(MyAppWeb.NoncePlug) | |
# ... | |
plug(MyAppWeb.Router) | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmofule MyAppWeb.NoncePlug do | |
import Plug.Conn | |
def init(opts \\ []), do: opts | |
def call(conn, _opts) do | |
nonce = :crypto.strong_random_bytes(16) |> Base.encode64(padding: false) | |
assign(conn, :my_app_nonce, nonce) | |
end | |
end | |
defmodule MyAppWeb.Router do | |
use MyAppWeb, :router | |
forward "/", | |
FunWithFlags.UI.Router, | |
namespace: "feature-flags", | |
csp_nonce_assign_key: :my_app_nonce | |
end | |
defmodule MyAppWeb.Endpoint do | |
# ... | |
plug(MyAppWeb.NoncePlug) | |
# ... | |
plug(MyAppWeb.Router) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment