use of com.xebia.vulnmanager.models.nmap.objects.NMapGeneralInformation in project vulnmanager by xebia-research.
the class NMapParser method getNMapReport.
public NMapReport getNMapReport(Document nMapDoc) {
ScanDataParserHelper scanDataParserHelper = new ScanDataParserHelper();
HostsParserHelper hostsParserHelper = new HostsParserHelper();
NMapGeneralInformation nMapScanData = scanDataParserHelper.getReportData(nMapDoc);
List<Host> hosts = hostsParserHelper.getHostsFromDocument(nMapDoc);
return new NMapReport(nMapScanData, hosts);
}
use of com.xebia.vulnmanager.models.nmap.objects.NMapGeneralInformation 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