Dispatcher

The dispatcher is the central magement system. It spawns an XMLRPC server per scan and provides statistics for all running server instances.
This interface allows you to "Attach" to (see the output of), pause, resume and shutdown instances.

<% if !stats['running_jobs'].empty? %>
<%= csrf_tag %>
<% end %>
<%= erb :flash, {:layout => false} %> <% if !stats['running_jobs'].empty? %> <% stats['running_jobs'].each do |job| %> <%if !job['paused'] %> <% else %> <% end %> <% end %>
PID Port Owner State Start time (Server-side) Current time (Server-side) Runtime Memory consumption Action
<%=job['pid']%> <%=job['port']%> <%=job['owner']%>RunningPaused<%=job['starttime'].to_time%> <%=job['currtime'].to_time%> <%=secs_to_hms( job['runtime'] )%> <%=proc_mem( job['proc']['rss'] )%> <% if !( job['owner'] =~/WebUI helper/ ) %>
<%if !job['paused'] %>
<%= csrf_tag %>
<%end%> <%if job['paused'] %>
<%= csrf_tag %>
<% end %> <% end %>
target="_blank" <%end%> > <%= csrf_tag %>
<% else %> There are no running scans at the moment. <% end %>