| Reporter | Title | Published | Views | Family All 10 |
|---|---|---|---|---|
| CVE-1999-0589 | 4 Feb 200005:00 | – | cve | |
| CVE-1999-0589 | 4 Feb 200005:00 | – | cvelist | |
| EUVD-1999-0572 | 7 Oct 202500:30 | – | euvd | |
| CVE-1999-0589 | 1 Jan 199905:00 | – | nvd | |
| PT-1999-1209 · Microsoft · Windows Nt | 1 Jan 199900:00 | – | ptsecurity | |
| CVE-1999-0589 | 7 Jan 202609:39 | – | redhatcve | |
| Microsoft Windows SMB Registry : Key Permission Weakness Admin Privilege Escalation | 29 May 200000:00 | – | nessus | |
| Microsoft Windows SMB Registry : Schedule Key Permission Weakness Local Privilege Escalation | 29 May 200000:00 | – | nessus | |
| Microsoft Windows SMB Registry : Key Permissions Path Subversion Local Privilege Escalation | 30 May 200000:00 | – | nessus | |
| Microsoft Windows SMB Registry : Winlogon Key Permission Weakness | 29 May 200000:00 | – | nessus |
| Source | Link |
|---|---|
| cve | www.cve.mitre.org/cgi-bin/cvename.cgi |
#
# (C) Tenable Network Security, Inc.
#
include("compat.inc");
if (description)
{
script_id(10427);
script_version("1.28");
script_cvs_date("Date: 2018/08/13 14:32:39");
script_cve_id("CVE-1999-0589");
script_name(english:"Microsoft Windows SMB Registry : Registry HKLM_LOCAL_MACHINE Permissions");
script_summary(english:"Determines the access rights of a remote key");
script_set_attribute(attribute:"synopsis", value:"System settings are writable by non admin.");
script_set_attribute(attribute:"description", value:
"The registry key HKEY_LOCAL_MACHINE is writeable by users who are not
in the admin group.
This allows these users to create a lot of keys on that machine, thus
they can probably to get admin easily.
Such a configuration probably means that the system has been
compromised.");
script_set_attribute(attribute:"solution", value:
"use regedt32 and set the permissions of this key to :
- admin group : Full Control
- system : Full Control
- everyone : Read");
script_set_cvss_base_vector("CVSS2#AV:L/AC:L/Au:N/C:C/I:C/A:C");
script_set_attribute(attribute:"vuln_publication_date", value:"1995/01/01");
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 Tenable Network Security, Inc.");
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("audit.inc");
include("smb_func.inc");
access = get_kb_item("SMB/registry_access");
if(!access)exit(0, "Registry not accessible.");
login = kb_smb_login();
pass = kb_smb_password();
domain = kb_smb_domain();
port = kb_smb_transport();
if(! smb_session_init()) audit(AUDIT_FN_FAIL, "smb_session_init");
r = NetUseAdd(login:login, password:pass, domain:domain, share:"IPC$");
if ( r != 1 )
{
NetUseDel();
audit(AUDIT_SHARE_FAIL, "IPC$");
}
hklm = RegConnectRegistry(hkey:HKEY_LOCAL_MACHINE);
if ( isnull(hklm) )
{
NetUseDel();
audit(AUDIT_REG_FAIL);
}
rep = RegGetKeySecurity (handle:hklm, type: DACL_SECURITY_INFORMATION | SACL_SECURITY_INFORMATION | GROUP_SECURITY_INFORMATION | OWNER_SECURITY_INFORMATION);
if(!isnull(rep) && registry_key_writeable_by_non_admin(security_descriptor:rep))
{
security_hole (port);
}
RegCloseKey (handle:hklm);
NetUseDel();
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