From 05d33412e31510027a0062bedcd53f73daa752e4 Mon Sep 17 00:00:00 2001 From: Justin Date: Fri, 27 Aug 2010 14:40:58 -0700 Subject: [PATCH] README fixes --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 03b4c976..5d8cef85 100644 --- a/README.md +++ b/README.md @@ -39,13 +39,13 @@ Multiple checks should be separated by a comma: To do the opposite and only run a certain set of tests: - brakeman -t Find,ValidationRegex path/to/rails/app/root + brakeman -t SQL,ValidationRegex path/to/rails/app/root To indicate certain methods are "safe": brakeman -s benign_method,totally_safe path/to/rails/app/root -By default, brakeman will assume that unknown methods involving untrusted data are dangerous. For example, this would a warning: +By default, brakeman will assume that unknown methods involving untrusted data are dangerous. For example, this would raise a warning: <%= some_method(:option => params[:input]) %> -- GitLab