sinatra-security
Security best practices for Sinatra applications including input validation, CSRF protection, and authentication patterns. Use when hardening applications or conducting security reviews.
What this skill does
# Sinatra Security Skill
## Tier 1: Quick Reference - Essential Security
### CSRF Protection
```ruby
# Enable Rack::Protection
use Rack::Protection
# Or specifically CSRF
use Rack::Protection::AuthenticityToken
```
### XSS Prevention
```ruby
# In ERB templates - always escape by default
<%= user.bio %> # Escaped (safe)
<%== user.bio %> # Raw (dangerous!)
# In JSON responses - use proper JSON encoding
require 'json'
json({ name: user.name }.to_json)
```
### SQL Injection Prevention
```ruby
# BAD: String interpolation
DB["SELECT * FROM users WHERE email = '#{email}'"]
# GOOD: Parameterized queries
DB["SELECT * FROM users WHERE email = ?", email]
# GOOD: Hash conditions
User.where(email: email)
```
### Secure Sessions
```ruby
use Rack::Session::Cookie,
secret: ENV['SESSION_SECRET'], # Long random string
same_site: :strict,
httponly: true,
secure: production?
```
### Input Validation
```ruby
helpers do
def validate_email(email)
email.to_s.match?(/\A[\w+\-.]+@[a-z\d\-]+(\.[a-z\d\-]+)*\.[a-z]+\z/i)
end
def validate_integer(value)
Integer(value)
rescue ArgumentError, TypeError
nil
end
end
post '/users' do
halt 400, 'Invalid email' unless validate_email(params[:email])
# Process...
end
```
### Authentication Check
```ruby
helpers do
def authenticate!
halt 401, json({ error: 'Unauthorized' }) unless current_user
end
def current_user
@current_user ||= User.find_by(id: session[:user_id])
end
end
before '/admin/*' do
authenticate!
end
```
---
## Tier 2: Detailed Instructions - Security Implementation
### Comprehensive CSRF Protection
**Configuration:**
```ruby
class Application < Sinatra::Base
# Enable CSRF protection
use Rack::Protection::AuthenticityToken,
except: [:json], # Skip for JSON APIs with token auth
allow_if: -> (env) {
# Skip for API endpoints with bearer token
env['HTTP_AUTHORIZATION']&.start_with?('Bearer ')
}
# Manual CSRF token generation
helpers do
def csrf_token
session[:csrf] ||= SecureRandom.hex(32)
end
def csrf_tag
"<input type='hidden' name='authenticity_token' value='#{csrf_token}'>"
end
def verify_csrf_token
token = params[:authenticity_token] || request.env['HTTP_X_CSRF_TOKEN']
halt 403, 'Invalid CSRF token' unless token == session[:csrf]
end
end
# Include in forms
post '/users' do
verify_csrf_token unless request.content_type == 'application/json'
# Process...
end
end
```
**In Views:**
```erb
<form method="POST" action="/users">
<%= csrf_tag %>
<!-- form fields -->
</form>
```
**For AJAX:**
```javascript
// Include CSRF token in AJAX requests
fetch('/users', {
method: 'POST',
headers: {
'X-CSRF-Token': document.querySelector('[name=csrf_token]').value,
'Content-Type': 'application/json'
},
body: JSON.stringify(data)
});
```
### XSS Prevention Strategies
**Template Escaping:**
```ruby
# ERB - escape by default
<div><%= user_input %></div>
# Explicitly raw (only for trusted content)
<div><%== trusted_html %></div>
# Sanitize user HTML
require 'sanitize'
helpers do
def sanitize_html(html)
Sanitize.fragment(html, Sanitize::Config::RELAXED)
end
end
# In template
<div><%= sanitize_html(user_bio) %></div>
```
**JSON Responses:**
```ruby
# Always use proper JSON encoding
get '/api/users/:id' do
user = User.find(params[:id])
# BAD: Manual JSON construction
# "{ \"name\": \"#{user.name}\" }" # XSS if name contains quotes
# GOOD: Use JSON library
content_type :json
{ name: user.name, bio: user.bio }.to_json
end
```
**Content Security Policy:**
```ruby
class Application < Sinatra::Base
before do
headers 'Content-Security-Policy' => [
"default-src 'self'",
"script-src 'self' https://cdn.example.com",
"style-src 'self' 'unsafe-inline'",
"img-src 'self' data: https:",
"font-src 'self'",
"connect-src 'self'",
"frame-ancestors 'none'"
].join('; ')
end
end
```
### SQL Injection Prevention
**Parameterized Queries:**
```ruby
# Sequel
# BAD
DB["SELECT * FROM users WHERE name = '#{name}'"]
# GOOD
DB["SELECT * FROM users WHERE name = ?", name]
DB["SELECT * FROM users WHERE name = :name", name: name]
# ActiveRecord
# BAD
User.where("email = '#{email}'")
# GOOD
User.where(email: email)
User.where("email = ?", email)
User.where("email = :email", email: email)
```
**Input Validation:**
```ruby
helpers do
def validate_sql_param(param, type: :string)
case type
when :integer
Integer(param)
when :boolean
[true, 'true', '1', 1].include?(param)
when :string
param.to_s.gsub(/['";\\]/, '') # Remove dangerous chars
else
param
end
rescue ArgumentError
halt 400, 'Invalid parameter'
end
end
get '/users/:id' do
id = validate_sql_param(params[:id], type: :integer)
user = User.find(id)
json user.to_hash
end
```
### Authentication Patterns
**Password Authentication:**
```ruby
require 'bcrypt'
class User
include BCrypt
def password=(new_password)
@password_hash = Password.create(new_password)
end
def password_hash
@password_hash
end
def authenticate(password)
Password.new(password_hash) == password
end
end
# Registration
post '/register' do
user = User.new(
email: params[:email],
name: params[:name]
)
user.password = params[:password]
user.save
session[:user_id] = user.id
redirect '/dashboard'
end
# Login
post '/login' do
user = User.find_by(email: params[:email])
if user&.authenticate(params[:password])
session[:user_id] = user.id
session[:logged_in_at] = Time.now.to_i
redirect '/dashboard'
else
halt 401, 'Invalid credentials'
end
end
```
**Token-Based Authentication:**
```ruby
require 'jwt'
class TokenAuth
SECRET = ENV['JWT_SECRET']
def self.encode(payload, exp = 24.hours.from_now)
payload[:exp] = exp.to_i
JWT.encode(payload, SECRET, 'HS256')
end
def self.decode(token)
body = JWT.decode(token, SECRET, true, algorithm: 'HS256')[0]
HashWithIndifferentAccess.new(body)
rescue JWT::DecodeError, JWT::ExpiredSignature
nil
end
end
# Middleware
class JWTAuth
def initialize(app)
@app = app
end
def call(env)
auth_header = env['HTTP_AUTHORIZATION']
token = auth_header&.split(' ')&.last
if payload = TokenAuth.decode(token)
env['current_user_id'] = payload[:user_id]
@app.call(env)
else
[401, { 'Content-Type' => 'application/json' },
['{"error": "Unauthorized"}']]
end
end
end
# Login endpoint
post '/api/login' do
user = User.find_by(email: params[:email])
if user&.authenticate(params[:password])
token = TokenAuth.encode(user_id: user.id)
json({ token: token, user: user.to_hash })
else
halt 401, json({ error: 'Invalid credentials' })
end
end
# Protected routes
class API < Sinatra::Base
use JWTAuth
helpers do
def current_user
@current_user ||= User.find(request.env['current_user_id'])
end
end
get '/profile' do
json current_user.to_hash
end
end
```
**API Key Authentication:**
```ruby
class APIKeyAuth
def initialize(app)
@app = app
end
def call(env)
api_key = env['HTTP_X_API_KEY']
if valid_api_key?(api_key)
user = User.find_by(api_key: api_key)
env['current_user'] = user
@app.call(env)
else
[401, { 'Content-Type' => 'application/json' },
['{"error": "Invalid API key"}']]
end
end
private
def valid_api_key?(key)
key && User.exists?(api_key: key, active: true)
end
end
use APIKeyAuth
# Generate API keys
helpers do
def generate_api_key
SecureRandom.hex(32)
end
end
post '/api/keys' do
authenticate!
api_key = generate_api_key
current_user.update(api_key: api_key)
json({ api_key: api_key })
end
```
### Authorization Patterns
**Role-Based Access Control:**
```ruby
class User
ROLES = [:guest, :user, :admin, :superRelated in Security
mac-ops
IncludedComprehensive macOS workstation operations — diagnose kernel panics, identify failing drives, audit launchd startup items, decode wake reasons, triage TCC permission denials, manage APFS snapshots, recover from no-boot. Use for: Mac is slow, slow bootup, won't boot, kernel panic, kernel_task hot, mds_stores CPU, photoanalysisd, cloudd, login loop, gray screen, sleep wake failure, drive failing, IO errors, APFS snapshots eating space, Time Machine local snapshots, Spotlight indexing, launchd, LaunchAgent, LaunchDaemon, login items, TCC permissions, Full Disk Access, Screen Recording denied, Gatekeeper, quarantine, com.apple.quarantine, app is damaged, helper tool, /Library/PrivilegedHelperTools, pmset, wake reasons, dark wake, sysdiagnose, panic.ips, DiagnosticReports, configuration profile, MDM profile, remote diagnostics over SSH.
a11y-audit
IncludedRun accessibility audits on web projects combining automated scanning (axe-core, Lighthouse) with WCAG 2.1 AA compliance mapping, manual check guidance, and structured reporting. Output is configurable: markdown report only, markdown plus machine-readable JSON, or markdown plus issue tracker integration. Use this skill whenever the user mentions "accessibility audit", "a11y audit", "WCAG audit", "accessibility check", "compliance scan", or asks to check a web project for accessibility issues. Also trigger when the user wants to verify WCAG conformance or map findings to a specific standard (CAN-ASC-6.2, EN 301 549, ADA/AODA).
erpclaw
IncludedAI-native ERP system with self-extending OS. Full accounting, invoicing, inventory, purchasing, tax, billing, HR, payroll, advanced accounting (ASC 606/842, intercompany, consolidation), and financial reporting. 413 actions across 14 domains, 43 expansion modules. Constitutional guardrails, adversarial audit, schema migration. Double-entry GL, immutable audit trail, US GAAP.
assess
IncludedAssesses and rates quality 0-10 across multiple dimensions (correctness, maintainability, security, performance, testability, simplicity) with pros/cons analysis. Compares against project conventions and prior decisions from memory. Produces structured evaluation reports with actionable improvement suggestions. Use when evaluating code, designs, architectures, or comparing alternative approaches.
spring-boot-security-jwt
IncludedProvides JWT authentication and authorization patterns for Spring Boot 3.5.x covering token generation with JJWT, Bearer/cookie authentication, database/OAuth2 integration, and RBAC/permission-based access control using Spring Security 6.x. Use when implementing authentication or authorization in Spring Boot applications.
code-hardcode-audit
IncludedDetect hardcoded values, magic numbers, and leaked secrets. TRIGGERS - hardcode audit, magic numbers, PLR2004, secret scanning.