presidentbeef/brakeman

View on GitHub
lib/brakeman/report/templates/controller_warnings.html.erb

Summary

Maintainability
Test Coverage
<p>Controller Warnings</p>
<table>
  <thead>
    <tr>
      <th>Confidence</th>
      <th>Controller</th>
      <th>Warning Type</th>
      <th>CWE ID</th>
      <th>Message</th>
    </tr>
  </thead>
  <tbody>
  <% warnings.each do |warning| %>
    <tr>
      <td><%= warning['Confidence']%></td>
      <td><%= warning['Controller']%></td>
      <td><%= warning['Warning Type']%></td>
      <td><%= warning['CWE ID']%></td>
      <td><%= warning['Message']%></td>
    </tr>
  <% end %>
  </tbody>
</table>