react-advanced-security

A set of React security rules and examples for checking user input and cleaning HTML before displaying it.

In plain words
What is it for?
Use it when building React forms or rendering HTML supplied by users or other untrusted sources, with validation rules and DOMPurify sanitization.
Why use it?
It helps reduce common risks such as cross-site scripting, where unsafe input runs code in someone else's browser.

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/wangqiqi/cursor-ai-rules/react-advanced-security
Clone the repo
git clone --depth 1 https://github.com/wangqiqi/cursor-ai-rules

Made for: Cursor.

Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 573 The whole file, excluding the scripts and references it only reads on demand.
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.00000 $0.00573
Opus 5 $0.00000 $0.00287
Sonnet 5 $0.00000 $0.00115
Haiku 4.5 $0.00000 $0.00057

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

Security

Grade A, and why

react-advanced-security 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 2d 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/tech/react-advanced-security.mdc · 80 lines

What it actually says

React 安全实践 (Security)

本规则由 @react-advanced 引用

输入验证

function useFormValidation(initialValues, validationRules) {
  const [values, setValues] = useState(initialValues)
  const [errors, setErrors] = useState({})

  const validateField = (name, value) => {
    const rules = validationRules[name]
    if (!rules) return null
    for (const rule of rules) {
      const error = rule(value)
      if (error) return error
    }
    return null
  }

  const handleChange = (name, value) => {
    setValues(prev => ({ ...prev, [name]: value }))
    setErrors(prev => ({ ...prev, [name]: validateField(name, value) }))
  }

  return { values, errors, handleChange, isValid: Object.values(errors).every(e => !e) }
}

安全 HTML 渲染 (DOMPurify)

import DOMPurify from 'dompurify'

function SafeHtml({ html, className }) {
  const sanitizedHtml = useMemo(() =>
    DOMPurify.sanitize(html, {
      ALLOWED_TAGS: ['p', 'br', 'strong', 'em', 'a'],
      ALLOWED_ATTR: ['href', 'target', 'rel']
    }),
    [html]
  )
  return <div className={className} dangerouslySetInnerHTML={{ __html: sanitizedHtml }} />
}

验证规则示例

const validationRules = {
  name: [
    (v) => !v ? '姓名不能为空' : null,
    (v) => v.length < 2 ? '姓名至少2个字符' : null,
    (v) => /[<>&"']/.test(v) ? '姓名包含无效字符' : null
  ],
  email: [
    (v) => !v ? '邮箱不能为空' : null,
    (v) => !/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(v) ? '邮箱格式不正确' : null
  ],
}

原则

  • MUST 验证并清理用户输入
  • NEVER 直接使用 dangerouslySetInnerHTML 渲染未清理的 HTML
  • MUST 在服务端也进行验证

引用: @react-advanced

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. 2d ago First seen · 80 lines · 0 tokens per session scan A e89312cfd8d3

Subscribe to this mod's changes

react-advanced-security is a cursor rule published in the GitHub repository wangqiqi/cursor-ai-rules (15 stars, last pushed 3mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 573 tokens. 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.