Issues

<%= erb :search, { :id => 'issues_tab' } %>

Trusted issues

At the time these issues were logged there were no abnormal interferences or anomalous server behavior.
These issues are considered trusted and fairly accurate.
<% if filtered_hashes.any? %> <% auditstore.issues.each_with_index do |issue, i|%> <% next if issue.untrusted? %> <%= erb :issue, { :idx => i+1, :issue => issue, :crypto_issues => crypto_issues } %> <% end %> <% else %>

No trusted issues have been logged.

<% end %>

Untrusted

These issues are considered untrusted (and may in fact be false positives) because at the time they were identified the server was exhibiting some kind of anomalous behavior or there was third part interference (like network latency for example).
The listed issues need verification by a human.
<% if anomalous_hashes.any? %> <% auditstore.issues.each_with_index do |issue, i|%> <% next if issue.trusted? %> <%= erb :issue, { :idx => i+1, :issue => issue, :crypto_issues => crypto_issues } %> <% end %> <% else %>

No untrusted issues have been logged.

<% end %>