-
Notifications
You must be signed in to change notification settings - Fork 0
/
Reports.h
84 lines (76 loc) · 2.38 KB
/
Reports.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#pragma once
class CReportSummary {
public:
uint64_t scannedFiles;
uint64_t scannedDirectories;
uint64_t scannedCompressed;
uint64_t scannedJARs;
uint64_t scannedWARs;
uint64_t scannedEARs;
uint64_t scannedTARs;
uint64_t foundVunerabilities;
uint64_t scanStart;
uint64_t scanEnd;
uint64_t scanErrorCount;
std::wstring scanStatus;
std::vector<std::wstring> excludedDrives;
std::vector<std::wstring> excludedDirectories;
std::vector<std::wstring> excludedFiles;
std::vector<std::wstring> knownTarExtensions;
std::vector<std::wstring> knownGZipTarExtensions;
std::vector<std::wstring> knownBZipTarExtensions;
std::vector<std::wstring> knownZipExtensions;
CReportSummary() {
scannedFiles = 0;
scannedDirectories = 0;
scannedCompressed = 0;
scannedJARs = 0;
scannedWARs = 0;
scannedEARs = 0;
scannedTARs = 0;
foundVunerabilities = 0;
scanStart = 0;
scanEnd = 0;
scanErrorCount = 0;
scanStatus.clear();
excludedDrives.clear();
excludedDirectories.clear();
excludedFiles.clear();
knownTarExtensions.clear();
knownGZipTarExtensions.clear();
knownBZipTarExtensions.clear();
knownZipExtensions.clear();
}
};
class CReportVulnerabilities {
public:
std::wstring file;
std::wstring manifestTitle;
std::wstring manifestVendor;
std::wstring manifestVersion;
std::wstring apacheCommonsTextVersion;
bool cve202242889Mitigated;
std::wstring cveStatus;
CReportVulnerabilities(std::wstring file, std::wstring manifestTitle, std::wstring manifestVendor, std::wstring manifestVersion,
std::wstring cveStatus, bool cve202242889Mitigated, std::wstring apacheCommonsTextVersion)
{
this->file = file;
this->manifestTitle = manifestTitle;
this->manifestVendor = manifestVendor;
this->manifestVersion = manifestVersion;
this->cveStatus = cveStatus;
this->cve202242889Mitigated = cve202242889Mitigated;
this->apacheCommonsTextVersion = apacheCommonsTextVersion;
}
};
extern CReportSummary repSummary;
extern std::vector<CReportVulnerabilities> repVulns;
int32_t ReportProcessJARFile();
int32_t ReportProcessWARFile();
int32_t ReportProcessEARFile();
int32_t ReportProcessTARFile();
int32_t ReportProcessCompressedFile();
int32_t ReportProcessDirectory();
int32_t ReportProcessFile();
int32_t GenerateJSONReport(bool pretty);
int32_t GenerateSignatureReport();