Files
nuclei-templates/file/logs/ruby-on-rails-framework-exceptions.yaml
forgedhallpass 209538baa6 refactor: Description field uniformization
* info field reorder
* reference values refactored to list
* added new lines after the id and before the protocols
* removed extra new lines
* split really long descriptions to multiple lines (part 1)
* other minor fixes
2022-04-22 13:38:41 +03:00

29 lines
990 B
YAML

id: ruby-on-rails-framework-exceptions
info:
name: Ruby on Rails Framework Exceptions
author: geeknik
severity: medium
description: Detects suspicious Ruby on Rails exceptions that could indicate exploitation attempts
reference:
- http://edgeguides.rubyonrails.org/security.html
- http://guides.rubyonrails.org/action_controller_overview.html
- https://stackoverflow.com/questions/25892194/does-rails-come-with-a-not-authorized-exception
- https://github.com/rails/rails/blob/master/actionpack/lib/action_dispatch/middleware/exception_wrapper.rb
tags: file,logs,ruby,rails
file:
- extensions:
- all
extractors:
- type: regex
name: exception
part: body
regex:
- 'ActionController\:\:InvalidAuthenticityToken'
- 'ActionController::InvalidCrossOriginRequest'
- 'ActionController::MethodNotAllowed'
- 'ActionController::BadRequest'
- 'ActionController::ParameterMissing'