mirror of
https://github.com/nmap/nmap.git
synced 2025-12-08 13:41:29 +00:00
Made RPC grinding work from service detection again by changing the
looked-for service name from "rpc" to "rpcbind", the name it has in nmap-service-probes.
This commit is contained in:
@@ -1,5 +1,9 @@
|
|||||||
# Nmap Changelog ($Id$); -*-text-*-
|
# Nmap Changelog ($Id$); -*-text-*-
|
||||||
|
|
||||||
|
o Made RPC grinding work from service detection again by changing the
|
||||||
|
looked-for service name from "rpc" to "rpcbind", the name it has in
|
||||||
|
nmap-service-probes. [David]
|
||||||
|
|
||||||
o [Ndiff] Ndiff now shows changes in script output. [David]
|
o [Ndiff] Ndiff now shows changes in script output. [David]
|
||||||
|
|
||||||
o A bug in Nsock was fixed: On systems where a nonblocking connect
|
o A bug in Nsock was fixed: On systems where a nonblocking connect
|
||||||
|
|||||||
@@ -5625,7 +5625,7 @@ void pos_scan(Target *target, u16 *portarray, int numports, stype scantype) {
|
|||||||
break; // done!
|
break; // done!
|
||||||
rsi.rpc_current_port->getServiceDeductions(&sd);
|
rsi.rpc_current_port->getServiceDeductions(&sd);
|
||||||
if (sd.name && sd.service_tunnel == SERVICE_TUNNEL_NONE &&
|
if (sd.name && sd.service_tunnel == SERVICE_TUNNEL_NONE &&
|
||||||
strcmp(sd.name, "rpc") == 0)
|
strcmp(sd.name, "rpcbind") == 0)
|
||||||
break; // Good - an RPC port for us to scan.
|
break; // Good - an RPC port for us to scan.
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user