Elixir/Phoenix Security Reference
Ash projects: AshAuthentication has its own strategy/token patterns — use the ash-framework skill. CSRF, XSS, and secret management patterns below still apply.
Quick reference for security patterns in Elixir/Phoenix.
Iron Laws — Never Violate These
- VALIDATE AT BOUNDARIES — Never trust client input. All data through changesets
- NEVER INTERPOLATE USER INPUT — Use Ecto's
^ operator, never string interpolation
- NO String.to_atom WITH USER INPUT — Atom exhaustion DoS. Use
to_existing_atom/1
- AUTHORIZE EVERYWHERE — Check in contexts AND re-validate in LiveView events
- ESCAPE BY DEFAULT — Never use
raw/1 with untrusted content
- SECRETS NEVER IN CODE — All secrets in
runtime.exs from env vars
- LIVEVIEW EVENT PARAMS ARE UNTRUSTED — Users can alter forms, hooks, and every
phx-value-* in DevTools. Validate and authorize against server-side state before acting
Quick Patterns
Timing-Safe Authentication
def authenticate(email, password) do
user = Repo.get_by(User, email: email)
cond do
user && Argon2.verify_pass(password, user.hashed_password) ->
{:ok, user}
user ->
{:error, :invalid_credentials}
true ->
Argon2.no_user_verify() # Timing attack prevention
{:error, :invalid_credentials}
end
end
LiveView Authorization (CRITICAL)
# `id` is client input even when it came from phx-value-id.
# RE-AUTHORIZE IN EVERY EVENT HANDLER
def handle_event("delete", %{"id" => id}, socket) do
post = Blog.get_post!(id)
# Don't trust that mount authorized this action!
with :ok <- Bodyguard.permit(Blog, :delete_post, socket.assigns.current_user, post) do
Blog.delete_post(post)
{:noreply, stream_delete(socket, :posts, post)}
else
_ -> {:noreply, put_flash(socket, :error, "Unauthorized")}
end
end
Rendered LiveView events can expose IDs in HTML and websocket payloads. That is
not automatically a vulnerability: treat IDs as public identifiers, never as
proof of access. Use opaque references only when the identifier itself must not
be disclosed, and still perform server-side authorization.
SQL Injection Prevention
# ✅ SAFE: Parameterized queries
from(u in User, where: u.name == ^user_input)
# ❌ VULNERABLE: String interpolation
from(u in User, where: fragment("name = '#{user_input}'"))
Quick Decisions
What to validate?
- All user input → Ecto changesets
- File uploads → Extension + magic bytes + size
- Paths →
Path.safe_relative/2 for traversal
- Atoms →
String.to_existing_atom/1 only
What to escape?
- HTML output → Auto-escaped by default (
<%= %>)
- User HTML → HtmlSanitizeEx with scrubber
- Never →
raw/1 with untrusted content
Anti-patterns
| Wrong |
Right |
"SELECT * FROM users WHERE name = '#{name}'" |
from(u in User, where: u.name == ^name) |
String.to_atom(user_input) |
String.to_existing_atom(user_input) |
<%= raw @user_comment %> |
<%= @user_comment %> |
| Hardcoded secrets in config |
runtime.exs from env vars |
| Auth only in mount |
Re-auth in every handle_event |
Trusting phx-value-* or hidden IDs |
Load server-side state and authorize it |
References
For detailed patterns, see:
references/authentication.md - phx.gen.auth, MFA, sessions
references/authorization.md - Bodyguard, scopes, LiveView auth
references/input-validation.md - Changesets, file uploads, paths
references/security-headers.md - CSP, CSRF, rate limiting, headers
references/oauth-linking.md - OAuth account linking, token management
references/rate-limiting.md - Composite key strategies, Hammer patterns
references/advanced-patterns.md - SSRF prevention, secrets management, supply chain
1---2name: security3description: Enforce Elixir/Phoenix security — auth, OAuth, sessions, CSRF, XSS; Use when editing auth files, login flows, RBAC…4---56# Elixir/Phoenix Security Reference78> **Ash projects**: `AshAuthentication` has its own strategy/token patterns — use the `ash-framework` skill. CSRF, XSS, and secret management patterns below still apply.910Quick reference for security patterns in Elixir/Phoenix.1112## Iron Laws — Never Violate These13141. **VALIDATE AT BOUNDARIES** — Never trust client input. All data through changesets152. **NEVER INTERPOLATE USER INPUT** — Use Ecto's `^` operator, never string interpolation163. **NO String.to_atom WITH USER INPUT** — Atom exhaustion DoS. Use `to_existing_atom/1`174. **AUTHORIZE EVERYWHERE** — Check in contexts AND re-validate in LiveView events185. **ESCAPE BY DEFAULT** — Never use `raw/1` with untrusted content196. **SECRETS NEVER IN CODE** — All secrets in `runtime.exs` from env vars207. **LIVEVIEW EVENT PARAMS ARE UNTRUSTED** — Users can alter forms, hooks, and every `phx-value-*` in DevTools. Validate and authorize against server-side state before acting2122## Quick Patterns2324### Timing-Safe Authentication2526```elixir27def authenticate(email, password) do28 user = Repo.get_by(User, email: email)2930 cond do31 user && Argon2.verify_pass(password, user.hashed_password) ->32 {:ok, user}33 user ->34 {:error, :invalid_credentials}35 true ->36 Argon2.no_user_verify() # Timing attack prevention37 {:error, :invalid_credentials}38 end39end40```4142### LiveView Authorization (CRITICAL)4344```elixir45# `id` is client input even when it came from phx-value-id.46# RE-AUTHORIZE IN EVERY EVENT HANDLER47def handle_event("delete", %{"id" => id}, socket) do48 post = Blog.get_post!(id)4950 # Don't trust that mount authorized this action!51 with :ok <- Bodyguard.permit(Blog, :delete_post, socket.assigns.current_user, post) do52 Blog.delete_post(post)53 {:noreply, stream_delete(socket, :posts, post)}54 else55 _ -> {:noreply, put_flash(socket, :error, "Unauthorized")}56 end57end58```5960Rendered LiveView events can expose IDs in HTML and websocket payloads. That is61not automatically a vulnerability: treat IDs as public identifiers, never as62proof of access. Use opaque references only when the identifier itself must not63be disclosed, and still perform server-side authorization.6465### SQL Injection Prevention6667```elixir68# ✅ SAFE: Parameterized queries69from(u in User, where: u.name == ^user_input)7071# ❌ VULNERABLE: String interpolation72from(u in User, where: fragment("name = '#{user_input}'"))73```7475## Quick Decisions7677### What to validate?7879- **All user input** → Ecto changesets80- **File uploads** → Extension + magic bytes + size81- **Paths** → `Path.safe_relative/2` for traversal82- **Atoms** → `String.to_existing_atom/1` only8384### What to escape?8586- **HTML output** → Auto-escaped by default (`<%= %>`)87- **User HTML** → HtmlSanitizeEx with scrubber88- **Never** → `raw/1` with untrusted content8990## Anti-patterns9192| Wrong | Right |93|-------|-------|94| `"SELECT * FROM users WHERE name = '#{name}'"` | `from(u in User, where: u.name == ^name)` |95| `String.to_atom(user_input)` | `String.to_existing_atom(user_input)` |96| `<%= raw @user_comment %>` | `<%= @user_comment %>` |97| Hardcoded secrets in config | `runtime.exs` from env vars |98| Auth only in mount | Re-auth in every `handle_event` |99| Trusting `phx-value-*` or hidden IDs | Load server-side state and authorize it |100101## References102103For detailed patterns, see:104105- `references/authentication.md` - phx.gen.auth, MFA, sessions106- `references/authorization.md` - Bodyguard, scopes, LiveView auth107- `references/input-validation.md` - Changesets, file uploads, paths108- `references/security-headers.md` - CSP, CSRF, rate limiting, headers109- `references/oauth-linking.md` - OAuth account linking, token management110- `references/rate-limiting.md` - Composite key strategies, Hammer patterns111- `references/advanced-patterns.md` - SSRF prevention, secrets management, supply chain