fastapi-secure-railguard-available

fastapi-secure-railguard-available is a cursor rule for Cursor from brighton-labs/railguard-cursor-coding. It costs 727 tokens per session, scanned A, original, MIT.

A set of security rules for FastAPI, a Python framework for building web APIs. It covers routes, authentication, request data, responses, dependencies, and logging.

In plain words
What is it for?
Use it when creating or reviewing FastAPI endpoints, request schemas, authentication flows, response models, dependency injection, and server logs.
Why use it?
It helps prevent unsafe token handling, weak password storage, unvalidated requests, overly broad routes, and accidental exposure of sensitive output.

Cursor rule for Cursor

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add rules/brighton-labs/railguard-cursor-coding/fastapi-secure-railguard-available
Clone the repo
git clone --depth 1 https://github.com/brighton-labs/railguard-cursor-coding

Made for: Cursor.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for fastapi-secure-railguard-available

README.md
[![agentmods](https://agentmods.dev/badge/rules/brighton-labs/railguard-cursor-coding/fastapi-secure-railguard-available.svg)](https://agentmods.dev/rules/brighton-labs/railguard-cursor-coding/fastapi-secure-railguard-available)
Your own site
<a href="https://agentmods.dev/rules/brighton-labs/railguard-cursor-coding/fastapi-secure-railguard-available"><img src="https://agentmods.dev/badge/rules/brighton-labs/railguard-cursor-coding/fastapi-secure-railguard-available.svg" alt="Measured on agentmods" height="20"></a>
Per session 727 This file is loaded in full into every session.
When invoked 727 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00727 $0.00727
Opus 5 $0.00364 $0.00364
Sonnet 5 $0.00145 $0.00145
Haiku 4.5 $0.00073 $0.00073

Measured 5d ago against content hash 42d30818a386, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

fastapi-secure-railguard-available scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.cursor/rules/fastapi-secure-railguard-available.mdc · 103 lines

How it starts

The opening of the file, as written. The whole thing — 103 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Overview

This rule provides secure-by-default coding conventions for FastAPI projects, including:

  • API design and route handling
  • Auth/session control
  • Secure handling of path/query/body input
  • Output formatting and response control
  • Logging, dependency injection, and context reasoning

Input validation (e.g. pydantic, zod-like schemas, sanitization, type safety) is enforced globally via:

.cursor/rules/railguard-input-validation.mdc
(This rule uses the RAILGUARD Framework for reflective, behavioral AI reasoning.)


API Route Design

  • Use explicit HTTP methods (@app.post, @app.get, etc.)
  • Always return structured responses using JSONResponse, Response, or typed Pydantic models
  • Avoid wildcard @app.route("*") routes

Authentication & Tokens

  • Never handle JWT tokens, secrets, or password checks inside path-level routes
  • Delegate to service layers or secure utility functions
  • Use OAuth2PasswordBearer, not raw Authorization header parsing
  • Ensure password hashing uses bcrypt or argon2; never store plaintext

Request Handling

  • Avoid using untyped request: Request as the only parameter — instead use structured Pydantic models
  • Do not parse .form(), .json() manually unless necessary — FastAPI handles this securely by default
  • Always use dependency injection for DB access, background jobs, and auth checks (e.g., Depends(...))

Response Handling

  • Avoid returning raw dictionaries or untyped JSON
  • Ensure all API responses are typed, even in async def routes
  • Use exception handlers (e.g. @app.exception_handler(...)) to manage untrusted input or auth failures

Logging & Observability

  • Use the logging module, not print()
  • Mask sensitive fields in logs (passwords, tokens, API keys)
  • Do not log raw request bodies unless explicitly scrubbed

Security Add-ons

  • Set security headers via middleware (e.g. X-Frame-Options, X-Content-Type-Options)
  • Apply rate limiting for public-facing endpoints
  • Use CORS properly — restrict allowed origins to production domains
  • Avoid eval, exec, pickle.load() unless required and sandboxed

Read the full file on GitHub · 103 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 103 lines · 727 tokens per session scan A 42d30818a386

Subscribe to this mod's changes

fastapi-secure-railguard-available is a cursor rule published in the GitHub repository brighton-labs/railguard-cursor-coding (13 stars, last pushed 1y ago), licensed MIT. It adds 727 tokens to every session, about $0.0036 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.