From 379db8e206d45b7f109555c5803e79c3886dea02 Mon Sep 17 00:00:00 2001 From: david Date: Fri, 30 Sep 2011 05:58:48 +0000 Subject: [PATCH] Print raw OS matching numbers with -d3. --- FPEngine.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/FPEngine.cc b/FPEngine.cc index 9e5e40354..48d323228 100644 --- a/FPEngine.cc +++ b/FPEngine.cc @@ -949,6 +949,8 @@ static void classify(FingerPrintResultsIPv6 *FPR) { FPR->num_matches = i + 1; if (labels[i].prob >= 0.90 * labels[0].prob) FPR->num_perfect_matches = i + 1; + if (o.debugging > 2) + printf("%7.4f %s\n", FPR->accuracy[i] * 100, FPR->matches[i]->OS_name); } if (FPR->num_perfect_matches == 0) { FPR->overall_results = OSSCAN_NOMATCHES;