|
This patch adds support for the service fingerprint ("servicefp") field.
--- Parser.pm.orig 2008-02-11 21:57:05.000000000 +0000
+++ Parser.pm 2008-02-11 21:57:53.000000000 +0000
@@ -397,6 +397,7 @@
$service_hashref->{tunnel} = $service->{att}->{tunnel};
$service_hashref->{method} = $service->{att}->{method};
$service_hashref->{confidence} = $service->{att}->{conf};
+ $service_hashref->{fingerprint} = $service->{att}->{servicefp};
}
return $service_hashref;
@@ -1252,6 +1253,10 @@
Returns the version of the given product of the running service.
+=item B<fingerprint()>
+
+Returns the service fingerprint. (If available)
+
=back
=head3 Nmap::Parser::Host::OS
|