1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-28 00:59:04 +00:00

Merge r26341:26417 from /nmap-exp/david/nmap-cpe.

This adds CPE output support.
This commit is contained in:
david
2011-09-09 23:24:14 +00:00
parent c4d6d12be7
commit 04069e6166
15 changed files with 5139 additions and 2282 deletions

View File

@@ -166,6 +166,14 @@ struct OS_Classification {
const char *OS_Family;
const char *OS_Generation; /* Can be NULL if unclassified */
const char *Device_Type;
std::vector<const char *> cpe;
OS_Classification() {
OS_Vendor = NULL;
OS_Family = NULL;
OS_Generation = NULL;
Device_Type = NULL;
}
};
struct FingerTest {