<%= csrf_tag %>

Modules

Module components assert and log entities of security interest about a web application.

<%= erb :flash, {:layout => false} %>

Audit

Audit modules actively test the web application via inputs like link parameters, forms, cookies and headers in order to assert the existence of security Issues.

<% modules.each do |mod|%> <% next if mod['path'] =~ /recon/ %> <%= erb :module, { :layout => false }, :mod => mod, :class_name => 'audit' %> <% end %>

Recon

Recon modules passively test the web application, mainly analyzing server configuration, responses and looking for directories and files.

<% modules.each do |mod|%> <% next if mod['path'] =~ /audit/ %> <%= erb :module, { :layout => false }, :mod => mod, :class_name => 'recon' %> <% end %>