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
4310e1b6
Unverified
Commit
4310e1b6
authored
Apr 03, 2024
by
azdralovic
Committed by
GitHub
Apr 03, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added another Zyxel default variant (#765)
parent
34f10be0
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
9 additions
and
6 deletions
+9
-6
ftp_default_creds.py
...ersploit/modules/creds/routers/zyxel/ftp_default_creds.py
+1
-1
ssh_default_creds.py
...ersploit/modules/creds/routers/zyxel/ssh_default_creds.py
+1
-1
telnet_default_creds.py
...ploit/modules/creds/routers/zyxel/telnet_default_creds.py
+1
-1
defaults.txt
routersploit/resources/wordlists/defaults.txt
+1
-0
passwords.txt
routersploit/resources/wordlists/passwords.txt
+2
-0
test_ftp_default_creds.py
tests/creds/routers/zyxel/test_ftp_default_creds.py
+1
-1
test_ssh_default_creds.py
tests/creds/routers/zyxel/test_ssh_default_creds.py
+1
-1
test_telnet_default_creds.py
tests/creds/routers/zyxel/test_telnet_default_creds.py
+1
-1
No files found.
routersploit/modules/creds/routers/zyxel/ftp_default_creds.py
View file @
4310e1b6
...
...
@@ -19,4 +19,4 @@ class Exploit(FTPDefault):
port
=
OptPort
(
21
,
"Target FTP port"
)
threads
=
OptInteger
(
1
,
"Number of threads"
)
defaults
=
OptWordlist
(
"admin:admin,admin:1234,admin:user"
,
"User:Pass or file with default credentials (file://)"
)
defaults
=
OptWordlist
(
"admin:admin,admin:1234,admin:user
,admin:Zyxel*2012*
"
,
"User:Pass or file with default credentials (file://)"
)
routersploit/modules/creds/routers/zyxel/ssh_default_creds.py
View file @
4310e1b6
...
...
@@ -19,4 +19,4 @@ class Exploit(SSHDefault):
port
=
OptPort
(
22
,
"Target SSH port"
)
threads
=
OptInteger
(
1
,
"Number of threads"
)
defaults
=
OptWordlist
(
"admin:admin,admin:1234,admin:user"
,
"User:Pass or file with default credentials (file://)"
)
defaults
=
OptWordlist
(
"admin:admin,admin:1234,admin:user
,admin:Zyxel*2012*
"
,
"User:Pass or file with default credentials (file://)"
)
routersploit/modules/creds/routers/zyxel/telnet_default_creds.py
View file @
4310e1b6
...
...
@@ -19,4 +19,4 @@ class Exploit(TelnetDefault):
port
=
OptPort
(
23
,
"Target Telnet port"
)
threads
=
OptInteger
(
1
,
"Number of threads"
)
defaults
=
OptWordlist
(
"admin:admin,admin:1234,admin:user"
,
"User:Pass or file with default credentials (file://)"
)
defaults
=
OptWordlist
(
"admin:admin,admin:1234,admin:user
,admin:Zyxel*2012*
"
,
"User:Pass or file with default credentials (file://)"
)
routersploit/resources/wordlists/defaults.txt
View file @
4310e1b6
...
...
@@ -252,6 +252,7 @@ admin:visual
admin:w2402
admin:xad$l#12
admin:zhone
admin:Zyxel*2012*
admin:zhongxing
admin:zoomadsl
administrator:1234
...
...
routersploit/resources/wordlists/passwords.txt
View file @
4310e1b6
...
...
@@ -713,3 +713,4 @@ zoomadsl
zsun1188
zxcvbnm
zyad1234
Zyxel*2012*
\ No newline at end of file
tests/creds/routers/zyxel/test_ftp_default_creds.py
View file @
4310e1b6
...
...
@@ -9,7 +9,7 @@ def test_check_success(generic_target):
assert
exploit
.
target
==
""
assert
exploit
.
port
==
21
assert
exploit
.
threads
==
1
assert
exploit
.
defaults
==
[
"admin:admin"
,
"admin:1234"
,
"admin:user"
]
assert
exploit
.
defaults
==
[
"admin:admin"
,
"admin:1234"
,
"admin:user"
,
"admin:Zyxel*2012*"
]
assert
exploit
.
stop_on_success
is
True
assert
exploit
.
verbosity
is
True
...
...
tests/creds/routers/zyxel/test_ssh_default_creds.py
View file @
4310e1b6
...
...
@@ -9,7 +9,7 @@ def test_check_success(generic_target):
assert
exploit
.
target
==
""
assert
exploit
.
port
==
22
assert
exploit
.
threads
==
1
assert
exploit
.
defaults
==
[
"admin:admin"
,
"admin:1234"
,
"admin:user"
]
assert
exploit
.
defaults
==
[
"admin:admin"
,
"admin:1234"
,
"admin:user"
,
"admin:Zyxel*2012*"
]
assert
exploit
.
stop_on_success
is
True
assert
exploit
.
verbosity
is
True
...
...
tests/creds/routers/zyxel/test_telnet_default_creds.py
View file @
4310e1b6
...
...
@@ -9,7 +9,7 @@ def test_check_success(generic_target):
assert
exploit
.
target
==
""
assert
exploit
.
port
==
23
assert
exploit
.
threads
==
1
assert
exploit
.
defaults
==
[
"admin:admin"
,
"admin:1234"
,
"admin:user"
]
assert
exploit
.
defaults
==
[
"admin:admin"
,
"admin:1234"
,
"admin:user"
,
"admin:Zyxel*2012*"
]
assert
exploit
.
stop_on_success
is
True
assert
exploit
.
verbosity
is
True
...
...
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