forked from p15670423/monkey
fix
This commit is contained in:
parent
d59e464578
commit
b49ba7526f
|
@ -875,13 +875,15 @@ def main():
|
|||
for m, count in sorted(threatening.iteritems(), key=lambda (k,v): (v,k), reverse=True):
|
||||
if count <= 0:
|
||||
continue
|
||||
print """<tr><td><a href="#{ip}">{ip}</a></td><td>{hostname}</td><td>{domain}</td><td>{count}</td>""".format(ip=m.GetIp(), hostname=m.GetHostName(), domain=m.GetDomainName(), count=count)
|
||||
print """<tr><td><a href="#{ip}">{ip}</a></td><td>{hostname}</td><td>{domain}</td>""".format(ip=m.GetIp(), hostname=m.GetHostName(), domain=m.GetDomainName(), count=count)
|
||||
|
||||
print """<td><ul>"""
|
||||
for service_name in m.GetCriticalServicesInstalled():
|
||||
print """<li>{service_name}</li>""".format(service_name=service_name)
|
||||
print """</ul></td>"""
|
||||
|
||||
print """<td>{count}</td>""".format(count=count)
|
||||
|
||||
print """<td><ul>"""
|
||||
|
||||
for sid in pth.GetThreateningUsersByVictim(m):
|
||||
|
@ -901,13 +903,15 @@ def main():
|
|||
for m, count in sorted(threatening.iteritems(), key=lambda (k,v): (v,k), reverse=True):
|
||||
if count <= 0:
|
||||
continue
|
||||
print """<tr><td><a href="#{ip}">{ip}</a></td><td>{hostname}</td><td>{domain}</td><td>{count}</td>""".format(ip=m.GetIp(), hostname=m.GetHostName(), domain=m.GetDomainName(), count=count)
|
||||
print """<tr><td><a href="#{ip}">{ip}</a></td><td>{hostname}</td><td>{domain}</td>""".format(ip=m.GetIp(), hostname=m.GetHostName(), domain=m.GetDomainName(), count=count)
|
||||
|
||||
print """<td><ul>"""
|
||||
for service_name in m.GetCriticalServicesInstalled():
|
||||
print """<li>{service_name}</li>""".format(service_name=service_name)
|
||||
print """</ul></td>"""
|
||||
|
||||
print """<td>{count}</td>""".format(count=count)
|
||||
|
||||
print """<td><ul>"""
|
||||
|
||||
for sid in pth.GetThreateningUsersByVictim(m):
|
||||
|
|
Loading…
Reference in New Issue