本文整理汇总了Python中models.Report.scan_info['extrainfo']方法的典型用法代码示例。如果您正苦于以下问题:Python Report.scan_info['extrainfo']方法的具体用法?Python Report.scan_info['extrainfo']怎么用?Python Report.scan_info['extrainfo']使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类models.Report
的用法示例。
在下文中一共展示了Report.scan_info['extrainfo']方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: parse
# 需要导入模块: from models import Report [as 别名]
# 或者: from models.Report import scan_info['extrainfo'] [as 别名]
def parse(document):
root = etree.parse(document)
report = Report(str(uuid.uuid4()))
# Fill the scan_info dictionary
report.scan_info['scan_start'] = root.xpath('//@startstr')[0]
report.scan_info['scan_end'] = root.xpath('//@timestr')[0]
report.scan_info['command'] = root.xpath('//@args')[0]
report.scan_info['version'] = root.xpath('//@version')[0]
report.scan_info['extrainfo'] = root.xpath('//@summary')[0]
# iterate over host
for result in root.xpath('//host'):
#@TODO : add safety net
hostname = b64encode(result.xpath('hostnames/hostname[@type = "user"]/@name')[0]) # hostname has to be base64 encode to prevent "." in key (mongodb issue)
# check if result already exist for the hostname
if not report.results_by_host.has_key(hostname):
report.results_by_host[hostname] = []
# iterate over ports
for port in result.xpath('ports/port'):
vuln = {}
vuln['portid'] = port.xpath('@portid')[0]
vuln['service'] = port.xpath('service/@name')[0]
vuln['product'] = port.xpath('service/@product')[0]
vuln['version'] = port.xpath('service/@version')[0]
# get script info
vuln['scriptid'] = port.xpath('script/@id')[0]
vuln['output'] = port.xpath('script/@output')[0]
# append vulnerability to results list
report.results_by_host[hostname].append(vuln)
return report