1
0
Fork 0
mirror of https://github.com/sinatra/sinatra synced 2023-03-27 23:18:01 -04:00
sinatra/rack-protection/README.md

79 lines
1.4 KiB
Markdown
Raw Normal View History

2011-05-23 04:07:54 -04:00
You should use protection!
2011-06-19 09:06:08 -04:00
This gem protects against typical web attacks.
Should work for all Rack apps, including Rails.
2011-05-23 04:07:54 -04:00
# Usage
2011-06-19 09:06:08 -04:00
Use all protections you probably want to use:
2011-05-23 04:07:54 -04:00
``` ruby
# config.ru
require 'rack/protection'
use Rack::Protection
2011-06-19 09:06:08 -04:00
run MyApp
```
Skip a single protection middleware:
``` ruby
# config.ru
require 'rack/protection'
use Rack::Protection, :except => :path_traversal
run MyApp
2011-05-23 04:07:54 -04:00
```
2011-06-19 09:06:08 -04:00
Use a single protection middleware:
``` ruby
# config.ru
require 'rack/protection'
use Rack::Protection::AuthenticityToken
run MyApp
```
# Prevented Attacks
## Cross Site Request Forgery
Prevented by:
* `Rack::Protection::AuthenticityToken` (not included by `use Rack::Protection`)
* `Rack::Protection::FormToken` (not included by `use Rack::Protection`)
* `Rack::Protection::NoReferrer` (not included by `use Rack::Protection`)
* `Rack::Protection::RemoteReferrer` (not included by `use Rack::Protection`)
* `Rack::Protection::RemoteToken`
## Cross Site Scripting
Prevented by:
* `Rack::Protection::EscapedParams`
* `Rack::Protection::XssHeader` (Internet Explorer only)
## Clickjacking
Prevented by:
* `Rack::Protection::FrameOptions`
## Directory Traversal
Prevented by:
* `Rack::Protection::PathTraversal`
## Session Hijacking
Prevented by:
* `Rack::Protection::SessionHijacking`
2011-05-23 04:07:54 -04:00
# Installation
gem install rack-protection
# TODO
2011-06-19 09:06:08 -04:00
* Properly implement FormToken