Open xkillbit opened 1 year ago
any update here?
any update?
I guess it's a bit late but... For some reason, in your .nessus
file, "Unsupported Web Server Detection" is marked as severity="3"
instead of severity="4"
. Anyway, in a real life scenario, the same host has severity="4" pluginID="97994" pluginName="Microsoft IIS 6.0 Unsupported Version Detection"
and hence would be flagged as EoL.
Other than that, both Nessus plugins has the same Output.
@xkillbit I checked your attachment, it's not reported as Critical
, because nfr
cli reports based on Risk Factor.
Risk Factor in your case is High
:
<ReportItem port="80" svc_name="www" protocol="tcp" severity="3" pluginID="34460" pluginName="Unsupported Web Server Detection" pluginFamily="Web Servers">
<cvss3_base_score>10.0</cvss3_base_score>
<cvss_base_score>7.5</cvss_base_score>
<risk_factor>High</risk_factor>
I assume Nessus takes into account <cvss3_base_score>10.0</cvss3_base_score>
and shows it as Critical
. We would need to have similar solution here. Like option use CVSSv2
or use CVSSv3
, then
cvss3_base_score
exists in the output check it's score and report levelcvss3_base_score
does not exists use CVSSv2 anyway.ThreatLevel | CVSS v2.0 June 2007 |
CVSS v3.0 June 2015 |
CVSS v3.1 June 2019 |
---|---|---|---|
Critical | 10 | 9.0 - 10.0 | 9.0 - 10.0 |
High | 7.0 - 9.9 | 7.0 - 8.9 | 7.0 - 8.9 |
Medium | 4.0 - 6.9 | 4.0 - 6.9 | 4.0 - 6.9 |
Low | 0.0 - 3.9 | 0.1 - 3.9 | 0.1 - 3.9 |
Info | 0.0 | 0.0 |
What value do you have set in Nessus for severity_basis
? CVSSv2 or CVSSv3?
@lapolis thanks for the input.
Hello,
Here is the CLI tool count followed by a script that dumps each Vuln Name by criticality and provides a count. Notice the counts are not the same. In this example, lets focus on just the Criticals:
Nessus web interface for comparison:
As you can see by comparing, the parser does not account for "Unsupported Web Server Detection".
I've attached the dummy data from the scan against the HTB environment, followed by the script used to dump and count each vuln by severity.
dummy_data.zip
I would appreciate any help.