Lucene search
K

Shaft Trojan Detection

🗓️ 17 Mar 2000 00:00:00Reported by TenableType 
nessus
 nessus
🔗 www.tenable.com👁 146 Views

Remote host may be infected by Shaft Trojan, requiring restoration from backups and contacting authorities.

Related
Refs
Code
ReporterTitlePublishedViews
Family
CVE
CVE-2000-0138
15 Feb 200005:00
cve
Cvelist
CVE-2000-0138
15 Feb 200005:00
cvelist
EUVD
EUVD-2000-0137
7 Oct 202500:30
euvd
Tenable Nessus
mstream DDoS Agent Detection
2 May 200000:00
nessus
Tenable Nessus
mstream DDoS Handler Detection
2 May 200000:00
nessus
Tenable Nessus
Stacheldraht Trojan Detection
28 Jan 200000:00
nessus
Tenable Nessus
TFN (Tribe Flood Network) Trojan Detection
10 Dec 199900:00
nessus
Tenable Nessus
Trinity v3 Trojan Detection
5 Sep 200000:00
nessus
Tenable Nessus
Trin00 Trojan Detection
5 Feb 200000:00
nessus
Tenable Nessus
Trin00 for Windows Trojan Detection
28 Feb 200000:00
nessus
Rows per page
#%NASL_MIN_LEVEL 70300
#
# (C) Tenable Network Security, Inc.
#

include('deprecated_nasl_level.inc');
include('compat.inc');

if (description)
{
  script_id(10350);
  script_version("1.28");
  script_set_attribute(attribute:"plugin_modification_date", value:"2022/04/11");

  script_cve_id("CVE-2000-0138");

  script_name(english:"Shaft Trojan Detection");

  script_set_attribute(attribute:"synopsis", value:
"The remote host is infected by a Trojan horse.");
  script_set_attribute(attribute:"description", value:
"The remote host appears to be running Shaft, which is a trojan that can 
be used to control your system or make it attack another network (this 
is actually called a distributed denial of service attack tool).

It is very likely that this host has been compromised");
  script_set_attribute(attribute:"solution", value:
"Restore your system from backups, contact CERT and your local authorities.");
  script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:C/I:C/A:C");

  script_set_attribute(attribute:"vuln_publication_date", value:"2000/02/09");
  script_set_attribute(attribute:"plugin_publication_date", value:"2000/03/17");

  script_set_attribute(attribute:"plugin_type", value:"remote");
  script_set_attribute(attribute:"thorough_tests", value:"true");
  script_end_attributes();

  script_category(ACT_GATHER_INFO);
  script_family(english:"Backdoors");

  script_copyright(english:"This script is Copyright (C) 2000-2022 Tenable Network Security, Inc.");

  script_require_keys("Settings/ThoroughTests");

  exit(0);
}

#
# The script code starts here
#


include('global_settings.inc');

if ( islocalhost() ) exit(0);
if ( ! thorough_tests ) exit(0);
if ( TARGET_IS_IPV6 ) exit(0);

shaft_dstport = 18753;
shaft_rctport = 20433;
shaft_scmd = "alive";
shaft_spass = "tijgu";



command = string(shaft_scmd, " ", shaft_spass, " hi 5 1918");


ip  = forge_ip_packet(ip_hl:5, ip_v:4,   ip_off:0,
                     ip_id:9, ip_tos:0, ip_p : IPPROTO_UDP,
                     ip_len : 20, ip_src : compat::this_host(),
                     ip_ttl : 255);
		   
length = 8 + strlen(command);		     
udpip = forge_udp_packet(ip : ip,
		         uh_sport : 1024,    
                         uh_dport : shaft_dstport,
			 uh_ulen : length,
			 data : command);
			 
filter = string("udp and src host ", get_host_ip(), " and dst host ", compat::this_host(), " and dst port ", shaft_rctport);		 
rep = send_packet(udpip, pcap_filter:filter, pcap_active:TRUE);		
	 	
if(!isnull(rep))
{
 dstport = get_udp_element(udp:rep, element:"uh_dport");
 if(dstport == shaft_rctport && "alive tijgu" >< rep )security_hole(port:shaft_dstport, protocol:"udp");
}

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

11 Apr 2022 00:00Current
5.4Medium risk
Vulners AI Score5.4
CVSS 25
EPSS0.00973
146