Lucene search
K

Microsoft Windows SMB Registry Not Fully Accessible Detection

🗓️ 29 May 2000 00:00:00Reported by TenableType 
nessus
 nessus
🔗 www.tenable.com👁 2926 Views

Detects incomplete remote registry access for Microsoft Windows SMB due to insufficient permissions.

Code
#
# (C) Tenable Network Security, Inc.
#

include( 'compat.inc' );

if (description)
{
  script_id(10428);
  script_version("1.46");
 script_cvs_date("Date: 2018/10/02 17:42:24");

  script_name(english:"Microsoft Windows SMB Registry Not Fully Accessible Detection");
  script_summary(english:"Determines whether the remote registry is fully accessible");

  script_set_attribute(attribute:'synopsis', value:"Nessus had insufficient access to the remote registry.");

  script_set_attribute(attribute:'description', value:
"Nessus did not access the remote registry completely, because full
administrative rights are required.

If you want the permissions / values of all the sensitive registry
keys to be checked, we recommend that you complete the 'SMB Login'
options in the 'Windows credentials' section of the policy with the
administrator login name and password.");

  script_set_attribute(attribute:'solution', value:"Use an administrator level account for scanning.");

  script_set_attribute(attribute:'risk_factor', value:"None");

 script_set_attribute(attribute:"plugin_publication_date", value:"2000/05/29");

  script_set_attribute(attribute:"plugin_type", value:"local");
  script_end_attributes();

  script_category(ACT_GATHER_INFO);

  script_copyright(english:"This script is Copyright (C) 2000-2018 and is owned by Tenable, Inc. or an Affiliate thereof.");
  script_family(english:"Windows");

  script_dependencies("netbios_name_get.nasl", "smb_login.nasl", "smb_registry_access.nasl");
  script_require_keys("SMB/transport", "SMB/name", "SMB/login", "SMB/password", "SMB/registry_access");
  script_require_ports(139, 445);
  exit(0);
}

include("smb_func.inc");
include("misc_func.inc");
include("audit.inc");
include("lcx.inc");

access = get_kb_item_or_exit("SMB/registry_access");


#---------------------------------------------------------------------#
# Here is our main()                                                  #
#---------------------------------------------------------------------#

if(! smb_session_init()) audit(AUDIT_FN_FAIL, 'smb_session_init');

login	= kb_smb_login();
pass	= kb_smb_password();
domain  = kb_smb_domain();
port	= kb_smb_transport();

r = NetUseAdd(login:login, password:pass, domain:domain, share:"IPC$");
if ( r != 1 ) audit(AUDIT_SHARE_FAIL, 'IPC$');

sid = NULL;
handle = LsaOpenPolicy (desired_access:0x20801);
if (!isnull(handle))
{
  ret = LsaQueryInformationPolicy (handle:handle, level:PolicyAccountDomainInformation);
  LsaClose (handle:handle);
  sid = ret[1];
}


hku = RegConnectRegistry(hkey:HKEY_USERS);
if ( isnull(hku) )
{
 NetUseDel();
 audit(AUDIT_REG_FAIL);
}


full = FALSE;

keys = make_list(
  "S-1-5-20\Software\Microsoft\Command Processor",
  "S-1-5-20\Environment",
  "S-1-5-20\Console"
	);


items = make_list(
  "Identity Login",
  "TEMP",
  "WindowSize"
	);


if ( ! isnull(sid) )
{
 keys[max_index(keys)] = "S-" + sid2string(sid:sid) + "-500\Console";
 items[max_index(items)] = "WindowSize";
}

# NetworkService test -> enough rights
for (i=0; i<max_index(keys); i++)
{
 key_h = RegOpenKey(handle:hku, key:keys[i], mode:MAXIMUM_ALLOWED);

 if ( ! isnull(key_h) )
 {
  value = RegQueryValue(handle:key_h, item:items[i]);

  if (!isnull (value))
  {
   full = TRUE;
   set_kb_item(name:"SMB/registry_full_access", value:TRUE);
   break;
  }

  RegCloseKey (handle:key_h);
 }
}

RegCloseKey(handle:hku);
NetUseDel();

if (full == FALSE)
{
  lcx::log_issue(type:lcx::ISSUES_ERROR, proto:lcx::PROTO_SMB, msg:
    "The remote registry was not fully accessible.");
  security_note (port);
}

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

02 Oct 2018 17:42Current
5.5Medium risk
Vulners AI Score5.5
2926