Ruby on Rails Security Project

Exploring the Security of Rails and friends.

Ruby on Rails Security Project header image 4

Entries from May 2008

[WebAppSec] Automatic security and HackerSafe

May 13th, 2008 · 1 Comment

Several people asked me about automatic assessment tools to check the security of an application stack. My opinion is that they may be a great support, but they cannot replace some manual work (oh, well, maybe). Rails test are a great way to make sure your application is safe, but you have to write them […]

[Read more →]

Tags: Rails · Uncategorized · WebAppSec

CSRF - An underestimated attack method

May 5th, 2008 · 3 Comments

Cross Site Reference Forgery works by including malicious code or a link in a page that accesses a web application that the user is believed to have authenticated. If the session for that web application has not timed out, an attacker may execute unauthorized commands.

Most Rails applications use cookie-based sessions. Either they store the […]

[Read more →]

Tags: Rails · WebAppSec · XSS and Rails