#
# (C) Tenable Network Security, Inc.
#
include("compat.inc");
if(description)
{
script_id(10894);
script_version("1.20");
script_name(english:"Microsoft Windows User Groups List");
script_set_attribute(attribute:"synopsis", value:
"It is possible to retrieve users groups." );
script_set_attribute(attribute:"description", value:
"Using the supplied credentials it was possible to retrieve the
list of groups each user belongs to.
Groups are stored in the KB for further checks." );
script_set_attribute(attribute:"risk_factor", value:"None" );
script_set_attribute(attribute:"solution", value:"n/a" );
script_set_attribute(attribute:"plugin_publication_date", value: "2002/03/15");
script_cvs_date("Date: 2019/07/08 10:52:29");
script_set_attribute(attribute:"plugin_type", value:"local");
script_end_attributes();
script_summary(english:"Implements NetUserGetGroups()");
script_category(ACT_GATHER_INFO);
script_copyright(english:"This script is Copyright (C) 2002-2019 and is owned by Tenable, Inc. or an Affiliate thereof.");
script_family(english:"Windows : User management");
script_dependencies("netbios_name_get.nasl", "smb_login.nasl",
"smb_sid2user.nasl", "snmp_lanman_users.nasl", "smb_samr_user_enum.nasl");
script_require_keys("SMB/transport", "SMB/name", "SMB/login", "SMB/password", "SMB/Users/enumerated");
script_require_ports(139, 445);
exit(0);
}
#deprecated
exit(0);
include("global_settings.inc");
include("smb_func.inc");
port = get_kb_item("SMB/transport");
if(!port)port = 139;
name = kb_smb_name(); if(!name)exit(0);
login = kb_smb_login();
pass = kb_smb_password();
domain = kb_smb_domain();
port = kb_smb_transport();
if ( ! get_port_state(port) ) exit(0);
soc = open_sock_tcp(port);
if ( ! soc ) exit(0);
session_init(socket:soc, hostname:name);
r = NetUseAdd(login:login, password:pass, domain:domain, share:"IPC$");
if ( r != 1 ) exit(0);
count = 1;
login = string(get_kb_item("SMB/Users/" + count));
while(login)
{
groups = NetUserGetGroups (user:login);
foreach group (groups)
{
name = "SMB/Users/" + count + "/Groups";
set_kb_item(name:name, value:group);
}
count = count + 1;
login = string(get_kb_item("SMB/Users/" + count));
}
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