From 52a4ae6e71a546919cecf228fd998344ed0cb11e Mon Sep 17 00:00:00 2001 From: david Date: Mon, 1 Oct 2012 21:54:47 +0000 Subject: [PATCH] Fix wrong script id in oracle-enum-users error message. By Dhiru Kholia. http://seclists.org/nmap-dev/2012/q4/1 --- scripts/oracle-enum-users.nse | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/oracle-enum-users.nse b/scripts/oracle-enum-users.nse index 266e918d9..cbcedf414 100644 --- a/scripts/oracle-enum-users.nse +++ b/scripts/oracle-enum-users.nse @@ -106,7 +106,7 @@ action = function( host, port ) local usernames if ( not( nmap.registry.args['oracle-enum-users.sid'] ) and not( nmap.registry.args['tns.sid'] ) ) then - return "ERROR: Oracle instance not set (see oracle-brute.sid or tns.sid)" + return "ERROR: Oracle instance not set (see oracle-enum-users.sid or tns.sid)" end status, usernames = unpwdb.usernames()