npx skills add smithery/Primadetaautomation --skill security-essentials
igmarin/elixir-phoenix-skills
security-essentials
Provides security guidelines and patterns for Elixir/Phoenix applications. Use when writing auth, token handling, redirects, or user input processing, or when any security concern arises. Covers atom exhaustion, SQL injection, open redirects, XSS, sensitive data in logs, timing attacks, CSRF, and dependency auditing. Trigger words: security, atom exhaustion, SQL injection, XSS, open redirect, timing attack, CSRF, Sobelow.
Installation
npx skills add igmarin/elixir-phoenix-skills --skill security-essentials
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Set up a Godot 4.7 3D scene: Node3D transforms, Camera3D, lighting (DirectionalLight3D/OmniLigh…
2.2K installsCore DQL syntax, pitfalls, query patterns, and query optimization. Load to write, build, fix, o…
2.1K installsShared workflow rules for SpriteCook. Use together with SpriteCook generation, UI-kit building,…
676 installsEssential Docker commands and workflows for container management, image operations, and debuggi…
166 installsExpert knowledge for Azure Kubernetes Service Edge Essentials development including troubleshoo…
133 installsEssential Git commands and workflows for version control, branching, and collaboration.
129 installsAlso in this package
Other skills from igmarin/elixir-phoenix-skills · top by installs.
npx skills add igmarin/elixir-phoenix-skills
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Skill metadata
Parsed from SKILL.md frontmatter.
More metadata
- version
- 1.0.0
- user-invocable
- true
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md10,617 B -
docs
SUMMARY.md452 B
History
- First seen on skills.sh
- First recorded snapshot · 17 installs
SKILL.md
Security Essentials
Use this skill before writing ANY security-sensitive code.
Canonical FP bar: [docs/fcis-engineering-rules.md](../../docs/fcis-engineering-rules.md) — Functional Core, Imperative Shell: pure domain modules; side effects at edges. Parse/allowlist at the boundary; never trust raw maps deep in core.
RULES — Follow these with no exceptions
1. Never call String.toatom/1 on user input — use String.toexistingatom/1 or a whitelist case ([Atom Table Exhaustion](#atom-table-exhaustion)) 2. Never interpolate user input into an Ecto fragment or raw SQL — use ^value bindings, field/2, or $1/$2 placeholders ([SQL Injection](#sql-injection)) 3. Never redirect to a user-controlled URL — use ~p"..." verified routes or a whitelist of allowed paths ([Open Redirects](#open-redirects)) 4. Never render user content with raw/1 in HEEx — let auto-escaping run, or sanitize with HtmlSanitizeEx first ([Cross-Site Scripting (XSS)](#cross-site-scripting-xss)) 5. Never log secrets — log identifiers (userid, email), never passwords, tokens, or PII ([Sensitive Data in Logs](#sensitive-data-in-logs)) 6. Always compare tokens with Plug.Crypto.securecompare/2 — never ==, which leaks length/content via timing ([Timing Attacks](#timing-attacks)) 7. Never disable Phoenix CSRF protection — keep :protectfrom_forgery in the browser pipeline and use <.form>, not raw <form> ([CSRF Protection](#csrf-protection)) 8. Always authorize before returning a record — verify ownership to prevent parameter tampering and IDOR ([Common Vulnerable Patterns](#common-vulnerable-patterns)) 9. Always run mix deps.audit && mix hex.audit && mix sobelow before merge — fail CI on any HIGH or CRITICAL finding ([Dependency Auditing](#dependency-auditing))
See [assets/securitychecklist.md](assets/securitychecklist.md) for a copy-paste pre-merge checklist covering input validation, auth, secrets, and production hardening.
Security Review Process
Apply this sequence whenever writing or reviewing security-sensitive code:
- Identify attack surface — list all user inputs, external data sources, and network boundaries
- Apply RULES — implement the feature following all rules above
- Run
mix sobelow --router MyAppWeb.Router— static analysis on your router and controllers - Run
mix sobelow --private— check private functions for vulnerabilities - Review findings by severity — HIGH severity first, then MEDIUM, then LOW
- Fix each finding — apply the correct pattern from the sections below
- Re-run sobelow — repeat until no issues reported
- Run full audit —
mix deps.audit && mix hex.audit && mix sobelowbefore merging - Test manually — verify with curl/introspection that expected inputs are rejected
Common Vulnerable Patterns
Parameter Tampering
❌ Bad — trusting user input:
def index(conn, %{"status" => status}) do
users = Repo.all(from u in User, where: u.status == ^status)
render(conn, "index.html", users: users)
end
✅ Good — validate against allowed values:
@allowedStatuses ~w(active inactive pending)
def index(conn, %{"status" => status}) do
if status in @allowedStatuses do
users = Repo.all(from u in User, where: u.status == ^status)
render(conn, "index.html", users: users)
else
put_status(conn, :bad_request)
|> json(%{error: "Invalid status"})
end
end
IDOR (Insecure Direct Object Reference)
❌ Bad — no authorization check:
def show(conn, %{"id" => id}) do
user = Repo.get!(User, id)
render(conn, "show.html", user: user)
end
✅ Good — verify ownership:
def show(conn, %{"id" => id}) do
current_user = conn.assigns.current_user
case Accounts.get_user_for_current_user(current_user, id) do
{:ok, user} -> render(conn, "show.html", user: user)
{:error, :not_found} -> put_status(conn, :not_found) |> json(%{error: "Not found"})
{:error, :unauthorized} -> put_status(conn, :forbidden) |> json(%{error: "Forbidden"})
end
end
Atom Table Exhaustion
❌ Bad — user controls the atom:
role = String.to_atom(params["role"])
✅ Good — whitelist approach:
case params["role"] do
"admin" -> :admin
"user" -> :user
"moderator" -> :moderator
_ -> {:error, :invalid_role}
end
SQL Injection
Never interpolate strings into Ecto queries; use ^variable or $1/$2 placeholders.
❌ Bad — string interpolation in fragment:
# NEVER do this — user can inject SQL through field or value
from(u in User, where: fragment("lower(#{field}) = ?", ^value))
from(u in User, where: fragment("#{condition}", []))
❌ Bad — using unvalidated input in raw SQL:
# NEVER do this — even with ~s() sigil
Ecto.Adapters.SQL.query(Repo, "SELECT * FROM users WHERE name = '#{name}'", [])
✅ Good — parameterized fragment with field/1:
# Safe — field is an atom from schema, value is parameterized
from(u in User, where: fragment("lower(?) = ?", field(u, :status), ^value))
✅ Good — parameterized raw SQL:
Ecto.Adapters.SQL.query(Repo, "SELECT * FROM users WHERE id = $1", [id])
Ecto.Adapters.SQL.query(Repo, "SELECT * FROM users WHERE name = $1 AND status = $2", [name, status])
✅ Good — Ecto query expressions always safe:
# Ecto query expressions are always parameterized
from(u in User, where: u.status == ^status and u.name == ^name)
Open Redirects
Never redirect to user-controlled URLs; use ~p"..." or a whitelist.
❌ Bad — user controls redirect destination:
def create(conn, %{"redirect_to" => redirect_to} = params) do
redirect(conn, to: redirect_to)
end
✅ Good — use verified routes:
redirect(conn, to: ~p"/dashboard")
✅ Good — validate against known paths:
@allowed_redirects ["/dashboard", "/profile", "/settings"]
def create(conn, %{"redirect_to" => redirect_to} = params) do
if redirect_to in @allowed_redirects do
redirect(conn, to: redirect_to)
else
redirect(conn, to: ~p"/dashboard")
end
end
Cross-Site Scripting (XSS)
Avoid raw/1; sanitize with HtmlSanitizeEx if HTML is required.
❌ Bad — bypasses escaping:
<%= raw(@user_bio) %>
✅ Good — let Phoenix auto-escape:
<%= @user_bio %>
✅ Good — sanitize if HTML rendering is required:
<%= raw(HtmlSanitizeEx.html5(@user_bio)) %>
Sensitive Data in Logs
❌ Bad:
Logger.info("User login", email: email, password: password)
Logger.debug("API call", token: api_token, response: resp)
✅ Good:
Logger.info("User login", email: email, user_id: user.id)
Logger.debug("API call", endpoint: url, status: resp.status)
Timing Attacks
Use Plug.Crypto.secure_compare/2 for token comparison; never ==.
❌ Bad — timing-unsafe:
def verify_token(provided_token, stored_token) do
provided_token == stored_token
end
✅ Good — constant-time comparison:
def verify_token(provided_token, stored_token) do
Plug.Crypto.secure_compare(provided_token, stored_token)
end
Dependency Auditing
# Check for known vulnerabilities in dependencies
mix deps.audit
# Verify package checksums against Hex
mix hex.audit
# Static security analysis on your code
mix sobelow --router MyAppWeb.Router
# Run all three before any merge
mix deps.audit && mix hex.audit && mix sobelow --config
Sobelow categories:
| Category | Severity |
|---|---|
| Config (hardcoded secrets, insecure config) | HIGH |
| SQL injection | HIGH |
| Remote Code (unsafe eval/apply) | CRITICAL |
| Cross-Site Scripting | HIGH |
| Function Clobbering | MEDIUM |
| Denial of Service (atom exhaustion) | HIGH |
Add to CI pipeline:
# .github/workflows/security.yml
- name: Security Audit
run: |
mix deps.audit
mix hex.audit
mix sobelow --config
# mix.exs
defp aliases do
[
"security.check": ["deps.audit", "hex.audit", "sobelow --config"]
]
end
Interpretation: Any Sobelow finding of HIGH or CRITICAL severity MUST be fixed before merging. LOW findings should be tracked and addressed within 2 sprints.
CSRF Protection
Never disable Phoenix's built-in CSRF protection.
# Phoenix forms automatically include CSRF tokens
# <.form> component handles this — never use raw <form> tags
# API pipeline should NOT include :protect_from_forgery
pipeline :api do
plug :accepts, ["json"]
# No :protect_from_forgery — APIs use Bearer tokens instead
end
Common Pitfalls
| ❌ Don't | ✅ Do |
|---|---|
String.to_atom(params["role"]) on user input |
Whitelist with a case, or use String.toexistingatom/1 |
fragment("lower(#{field}) = ?", ^value) |
fragment("lower(?) = ?", field(u, :status), ^value) |
redirect(conn, to: params["redirect_to"]) |
redirect(conn, to: ~p"/dashboard") or a whitelist |
<%= raw(@user_bio) %> in HEEx |
<%= @userbio %>, or raw(HtmlSanitizeEx.html5(@userbio)) |
Compare tokens with provided == stored |
Plug.Crypto.secure_compare(provided, stored) |
Logger.info("login", password: pw, token: t) |
Log user_id / email; never secrets or PII |
Repo.get!(User, id) with no ownership check |
Authorize in the context before returning the record |
Integration
| Predecessor | This Skill | Successor |
|---|---|---|
| phoenix-auth-customization | security-essentials | phoenix-authorization-patterns |
| ecto-essentials | security-essentials | telemetry-essentials |
Companion skills: phoenix-authorization-patterns, phoenix-auth-customization, phoenix-liveview-auth, code-quality.