Add basic CSRF protection to your oRPC application.
Scanned 9/12/2026
Install to Claude Code
npx -y skills add ali-master/skills --skill orpc-simple-csrf-protection --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Orpc Simple Csrf Protection?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/ali-master-orpc-simple-csrf-protection)More formats (shields.io, HTML) on the badges page.
---
name: oRPC Simple CSRF Protection Plugin
description: Add basic CSRF protection to your oRPC application.
license: MIT
metadata:
author: Ali Torki
homepage: https://github.com/ali-master
version: "1.0.0"
---
# Simple CSRF Protection Plugin
Helps ensure requests originate from JavaScript code, not from HTML forms or direct browser navigation.
## When to Use
Beneficial if you store sensitive data (session/auth tokens) in cookies with `SameSite=Lax` (default) or `SameSite=None`.
## Server
```ts
import { SimpleCsrfProtectionHandlerPlugin } from '@orpc/server/plugins'
const handler = new RPCHandler(router, {
strictGetMethodPluginEnabled: false, // Replace Strict Get Method Plugin
plugins: [
new SimpleCsrfProtectionHandlerPlugin()
],
})
```
## Client
```ts
import { SimpleCsrfProtectionLinkPlugin } from '@orpc/client/plugins'
const link = new RPCLink({
url: 'https://api.example.com/rpc',
plugins: [
new SimpleCsrfProtectionLinkPlugin(),
],
})
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.