Lucene search
+L

MoonLit Virus Backdoor

🗓️ 03 Nov 2005 00:00:00Reported by Copyright (C) 2004 KK LiuType 
openvas
 openvas
🔗 plugins.openvas.org👁 20 Views

The system is infected by the MoonLit virus, the backdoor port is open. Backdoor.Moonlit is a Trojan horse program that can download and execute files, and may act as a proxy server

Refs
Code
# SPDX-FileCopyrightText: 2004 KK Liu
# Some text descriptions might be excerpted from (a) referenced
# source(s), and are Copyright (C) by the respective right holder(s).
#
# SPDX-License-Identifier: GPL-2.0-only

if(description)
{
  script_oid("1.3.6.1.4.1.25623.1.0.15586");
  script_version("2023-08-01T13:29:10+0000");
  script_tag(name:"last_modification", value:"2023-08-01 13:29:10 +0000 (Tue, 01 Aug 2023)");
  script_tag(name:"creation_date", value:"2005-11-03 14:08:04 +0100 (Thu, 03 Nov 2005)");
  script_tag(name:"cvss_base", value:"7.8");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:N/I:N/A:C");
  script_name("MoonLit Virus Backdoor");
  script_category(ACT_GATHER_INFO);
  script_copyright("Copyright (C) 2004 KK Liu");
  script_family("Malware");
  script_dependencies("os_detection.nasl");
  script_mandatory_keys("Host/runs_windows");

  script_xref(name:"URL", value:"http://securityresponse.symantec.com/avcenter/venc/data/backdoor.moonlit.html");

  script_tag(name:"solution", value:"Ensure all MS patches are applied as well as the latest AV definitions.");

  script_tag(name:"summary", value:"The system is infected by the MoonLit virus,
  the backdoor port is open.

  Backdoor.Moonlit is a Trojan horse program that can download and execute files, and may act as a proxy server.");

  script_tag(name:"solution_type", value:"Mitigation");
  script_tag(name:"qod_type", value:"remote_vul");

  exit(0);
}

include("host_details.inc");

#=============================================================================
# NASL supports only 2 data type - string & integer, and not "long int" support
# so we need to work around the "sign" issue
#=============================================================================
function doGetPortFromIP(dst)
{
  local_var retval;
  local_var ip;

  ip = split(dst, sep: ".", keep: 0);
  retval = int(ip[0])*256*256*256 + int(ip[1])*256*256 + int(ip[2])*256 + int(ip[3])*1;
  #display ('retval = ', retval , '\n');
  MAGIC = 0x6D617468;

  retval = ((retval >>> 5)|(retval << 27));

  #display ('or-retval = ', retval , '\n');

  #original cod in C: retval += (retval >= (retval + MAGIC)) ? MAGIC + 1 : MAGIC;
  #display ('retval = ', retval , ', MAGIC =', MAGIC,'\n');
  if ((retval < 0) && (retval + MAGIC >= 0)) MAGIC += 1;
  retval += MAGIC;

  #display ('retval+MAGIC = ', retval , '\n');

  #KK - 2004-10-28
  ret2 = retval << 30;
  if (ret2 == 0)
  {
    # 0x80000000 mod 0xFAD9 = 0xB87 = 2951
    return((((retval >>> 3)+ 2951) % 0xFAD9) + 1031);
  }
  else
  {
    #ret2 = retval << 29;
    #ret1 = retval >>> 3;
    #display ('val1 = ', ret1, ', val2 =', ret2 , '\n');
    #display ('val1|val2 = ', ret1 | ret2, '\n');

    #if result after the shift is negative, int(0x80000000) < 0
    #we add back - 0x80000000 div 0xFAD9 = 33441

    #if ((retval >>> 3)|(retval << 29) < 0)
    #display ('-or =' , ((retval >>> 3)|(retval << 29)) - 0xFAD9 * 33441, '\n');
    #else display ('+or =' , ((retval >>> 3)|(retval << 29)), '\n');

    if ((retval >>> 3)|(retval << 29) < 0)
      return(((((retval >>> 3)|(retval << 29)) - 0xFAD9 * 41801) % 0xFAD9) + 1031);
    else return((((retval >>> 3)|(retval << 29)) % 0xFAD9) + 1031);
  }
}

hostip = get_host_ip();
dst = string(hostip);
port = doGetPortFromIP(dst:dst);

if(!get_port_state(port))
  exit(0);

soc = open_sock_tcp(port);
if(!soc)
  exit(0);

r = recv(socket:soc, length:10);
close(soc);

if(r && (strlen(r) == 2)) {
  security_message(port:port);
  exit(0);
}

exit(99);

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