use of com.xebia.vulnmanager.models.nmap.objects.NMapScanInfo in project vulnmanager by xebia-research.
the class ScanDataParserHelper method getReportData.
NMapGeneralInformation getReportData(Document nMapDoc) {
NamedNodeMap reportData = nMapDoc.getElementsByTagName(NMapConstants.PARSER_LITERAL_NMAP_RUN).item(0).getAttributes();
NMapInfo nMapInfo = getNMapInfo(reportData);
NamedNodeMap scanInfo = nMapDoc.getElementsByTagName(NMapConstants.PARSER_LITERAL_NMAP_SCAN_INFO).item(0).getAttributes();
NodeList tasksList = nMapDoc.getElementsByTagName(NMapConstants.PARSER_LITERAL_NMAP_TASK_END);
NMapScanInfo nMapScanInfo = getNMapScanInfo(scanInfo, tasksList);
NodeList runStatistics = nMapDoc.getElementsByTagName(NMapConstants.PARSER_LITERAL_NMAP_RUNSTATS).item(0).getChildNodes();
GeneralScanResult generalScanResult = getGeneralScanResults(runStatistics);
return new NMapGeneralInformation(nMapInfo, nMapScanInfo, generalScanResult);
}
Aggregations