<%= 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/ %>

checked="checked" <% end %> /> <%=escape( mod['name'] )%>

 <%=prep_description( escape( mod['description'] ) )%>

Version: <%=mod['version']%>
Author: <%=escape( mod['author'])%>

<% 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/ %>

checked="checked" <% end %> /> <%=escape( mod['name'] )%>

 <%=prep_description( escape( mod['description'] ) )%>

Version: <%=mod['version']%>
Author: <%=escape( mod['author'])%>

<% end %>