Lucene search
K

Desktop Orbiter Server Detection

🗓️ 03 Jun 2003 00:00:00Reported by TenableType 
nessus
 nessus
🔗 www.tenable.com👁 16 Views

Remote Desktop Orbiter Satellite is active, posing security risks due to lack of password protection.

Code
#%NASL_MIN_LEVEL 70300
#
# (C) Tenable Network Security, Inc.
#

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

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

  script_name(english:"Desktop Orbiter Server Detection");

  script_set_attribute(attribute:"synopsis", value:
"A remote control software is running on this host.");
  script_set_attribute(attribute:"description", value:
"The remote host is running a Desktop Orbiter Satellite.

This service could be used by an attacker to partially take
control of the remote system, as it is not password protected.");
  script_set_attribute(attribute:"solution", value:
"Disable this service.");
  script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:P/I:P/A:P");

  script_set_attribute(attribute:"plugin_publication_date", value:"2003/06/03");

  script_set_attribute(attribute:"plugin_type", value:"remote");
  script_set_attribute(attribute:"asset_inventory", value:"True");
  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) 2003-2022 and is owned by Tenable, Inc. or an Affiliate thereof.");

  script_dependencies("os_fingerprint.nasl", "find_service2.nasl");
  script_require_ports("Services/unknown", 51051);

  exit(0);
}

include('global_settings.inc');
include("misc_func.inc");

os = get_kb_item("Host/OS");
if(os)
{
 if("Windows" >!< os)exit(0);
}

function probe(port)
{
 local_var len, r, req, soc;

 if(get_port_state(port) == 0 ) return(0);
 soc = open_sock_tcp(port);
 if(!soc)return(0);
 send(socket:soc, data:raw_string(0xA0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00));

req = '<?xml version = "1.0"?>\r\n\r
<Request version = "1.0" timestamp = "6/3/2003 10:14:11 AM">\r
    <param id = "_ActionId" value = "PING" type = "string"/>
</Request>';

send(socket:soc, data:req);
r = recv(socket:soc, length:8);
if(strlen(r) != 8 )exit(0);
len = ord(r[0]);
r = recv(socket:soc, length:len);
if("Reply version" >< r) { security_hole(port); register_service(port:port, proto:"desktop-orbiter"); }
}



if ( thorough_tests && ! get_kb_item("global_settings/disable_service_discovery")  ) ports = add_port_in_list(list:get_kb_list("Services/unknown"), port:51051);
else {
	if ( ! get_port_state(51051) ) exit(0);
	ports = make_list(51051);
     }

foreach port (ports)
{
 if ( port != 135 && port != 139 && port != 445 ) probe(port: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