| Source | Link |
|---|---|
| nessus | www.nessus.org/u |
| nessus | www.nessus.org/u |
| sophos | www.sophos.com/en-us/press-office/press-releases/2005/11/stinxe.aspx |
#
# (C) Tenable Network Security, Inc.
#
include("compat.inc");
if (description) {
script_id(20212);
script_version("1.16");
script_set_attribute(attribute:"plugin_modification_date", value:"2022/02/01");
script_name(english:"XCP DRM Software Detection");
script_summary(english:"Checks whether XCP DRM Software is installed");
script_set_attribute(attribute:"synopsis", value:"The remote Windows host has a rootkit installed on it.");
script_set_attribute(attribute:"description", value:
"First 4 Internet's Extended Copy Protection (XCP) digital rights
management software is installed on the remote Windows host. While it
is not malicious per se, the software hides files, processes, and
registry keys / values from ordinary inspection, which has been
exploited by several viruses to hide from antivirus software.");
script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?98ebd71b");
script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?db65f981" );
script_set_attribute(attribute:"see_also", value:"https://www.sophos.com/en-us/press-office/press-releases/2005/11/stinxe.aspx" );
script_set_attribute(attribute:"solution", value:
"On the affected host, run the DOS command 'cmd /k sc delete
$sys$aries' to deactivate the software and reboot.");
script_set_cvss_base_vector("CVSS2#AV:L/AC:H/Au:N/C:C/I:C/A:C");
script_set_attribute(attribute:"plugin_publication_date", value:"2005/11/16");
script_set_attribute(attribute:"plugin_type", value:"local");
script_set_attribute(attribute:"cpe", value:"cpe:/a:first4internet_xcp_drm:first4internet_xcp_drm");
script_set_attribute(attribute:"asset_inventory", value:"True");
script_set_attribute(attribute:"agent", value:"windows");
script_end_attributes();
script_category(ACT_GATHER_INFO);
script_family(english:"Windows");
script_copyright(english:"This script is Copyright (C) 2005-2022 and is owned by Tenable, Inc. or an Affiliate thereof.");
script_dependencies("smb_enum_services.nasl", "smb_hotfixes.nasl");
script_require_keys("SMB/svcs", "SMB/Registry/Enumerated");
script_require_ports(139, 445);
exit(0);
}
include("smb_func.inc");
include("audit.inc");
include("smb_hotfixes.inc");
# Check whether either of the two services XCP installs are running.
services = get_kb_item("SMB/svcs");
if (
services &&
(
"XCP CD Proxy" >< services ||
"Plug and Play Device Manager" >< services
)
) {
# Identify the location of the file cloaking device driver.
winroot = hotfix_get_systemroot();
if (!winroot) exit(1);
share = ereg_replace(pattern:"^([A-Za-z]):.*", replace:"\1$", string:winroot);
file = ereg_replace(pattern:"^[A-Za-z]:(.*)", replace:"\1\System32\$sys$filesystem\aries.sys", string:winroot);
# Connect to the appropriate share.
name = kb_smb_name();
port = kb_smb_transport();
login = kb_smb_login();
pass = kb_smb_password();
domain = kb_smb_domain();
if(! smb_session_init()) audit(AUDIT_FN_FAIL, 'smb_session_init');
rc = NetUseAdd(login:login, password:pass, domain:domain, share:share);
if (rc != 1) {
NetUseDel();
exit(1, "cannot connect to the remote share");
}
# Try to open one of the driver's files.
fh = CreateFile(
file:file,
desired_access:GENERIC_READ,
file_attributes:FILE_ATTRIBUTE_NORMAL,
share_mode:FILE_SHARE_READ,
create_disposition:OPEN_EXISTING
);
# There's a problem if the file exists.
if (!isnull(fh)) {
security_warning(port);
CloseFile(handle:fh);
}
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