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
17857b69
Commit
17857b69
authored
May 05, 2016
by
fwkz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update modules metadata.
parent
6fc8d05c
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
74 additions
and
19 deletions
+74
-19
ftp_bruteforce.py
routersploit/modules/creds/ftp_bruteforce.py
+6
-2
ftp_default.py
routersploit/modules/creds/ftp_default.py
+6
-2
http_basic_bruteforce.py
routersploit/modules/creds/http_basic_bruteforce.py
+6
-2
http_basic_default.py
routersploit/modules/creds/http_basic_default.py
+6
-2
http_form_bruteforce.py
routersploit/modules/creds/http_form_bruteforce.py
+6
-2
http_form_default.py
routersploit/modules/creds/http_form_default.py
+6
-2
snmp_bruteforce.py
routersploit/modules/creds/snmp_bruteforce.py
+7
-1
ssh_bruteforce.py
routersploit/modules/creds/ssh_bruteforce.py
+7
-1
ssh_default.py
routersploit/modules/creds/ssh_default.py
+7
-2
telnet_bruteforce.py
routersploit/modules/creds/telnet_bruteforce.py
+7
-1
telnet_default.py
routersploit/modules/creds/telnet_default.py
+6
-2
autopwn.py
routersploit/modules/scanners/autopwn.py
+2
-0
dlink_scan.py
routersploit/modules/scanners/dlink_scan.py
+2
-0
No files found.
routersploit/modules/creds/ftp_bruteforce.py
View file @
17857b69
...
...
@@ -23,9 +23,13 @@ class Exploit(exploits.Exploit):
"""
__info__
=
{
'name'
:
'FTP Bruteforce'
,
'authors'
:
[
'description'
:
'Module performs bruteforce attack against FTP service.'
'If valid credentials are found, they are displayed to the user.'
,
'authors'
:
(
'Marcin Bury <marcin.bury[at]reverse-shell.com>'
# routersploit module
]
),
'references'
:
''
,
'devices'
:
'Multi'
,
}
target
=
exploits
.
Option
(
''
,
'Target IP address or file with target:port (file://)'
)
...
...
routersploit/modules/creds/ftp_default.py
View file @
17857b69
...
...
@@ -22,9 +22,13 @@ class Exploit(exploits.Exploit):
"""
__info__
=
{
'name'
:
'FTP Default Creds'
,
'authors'
:
[
'description'
:
'Module perform dictionary attack with default credentials against FTP service. '
'If valid credentials are found, they are displayed to the user.'
,
'authors'
:
(
'Marcin Bury <marcin.bury[at]reverse-shell.com>'
# routersploit module
]
),
'references'
:
''
,
'devices'
:
'Multi'
,
}
target
=
exploits
.
Option
(
''
,
'Target IP address or file with target:port (file://)'
)
...
...
routersploit/modules/creds/http_basic_bruteforce.py
View file @
17857b69
...
...
@@ -23,9 +23,13 @@ class Exploit(exploits.Exploit):
"""
__info__
=
{
'name'
:
'HTTP Basic Bruteforce'
,
'authors'
:
[
'description'
:
'Module performs bruteforce attack against HTTP Basic Auth service. '
'If valid credentials are found, they are displayed to the user.'
,
'authors'
:
(
'Marcin Bury <marcin.bury[at]reverse-shell.com>'
# routersploit module
]
),
'references'
:
''
,
'devices'
:
'Multi'
,
}
target
=
exploits
.
Option
(
''
,
'Target IP address or file with target:port (file://)'
)
...
...
routersploit/modules/creds/http_basic_default.py
View file @
17857b69
...
...
@@ -22,9 +22,13 @@ class Exploit(exploits.Exploit):
"""
__info__
=
{
'name'
:
'HTTP Basic Default Creds'
,
'authors'
:
[
'description'
:
'Module perform dictionary attack with default credentials against HTTP Basic Auth service. '
'If valid credentials are found, they are displayed to the user.'
,
'authors'
:
(
'Marcin Bury <marcin.bury[at]reverse-shell.com>'
# routersploit module
]
),
'references'
:
''
,
'devices'
:
'Multi'
,
}
target
=
exploits
.
Option
(
''
,
'Target IP address or file with target:port (file://)'
)
...
...
routersploit/modules/creds/http_form_bruteforce.py
View file @
17857b69
...
...
@@ -24,9 +24,13 @@ class Exploit(exploits.Exploit):
"""
__info__
=
{
'name'
:
'HTTP Form Bruteforce'
,
'authors'
:
[
'description'
:
'Module performs bruteforce attack against HTTP form service. '
'If valid credentials are found, they are displayed to the user.'
,
'authors'
:
(
'Marcin Bury <marcin.bury[at]reverse-shell.com>'
# routersploit module
]
),
'references'
:
''
,
'devices'
:
'Multi'
,
}
target
=
exploits
.
Option
(
''
,
'Target IP address or file with target:port (file://)'
)
...
...
routersploit/modules/creds/http_form_default.py
View file @
17857b69
...
...
@@ -23,9 +23,13 @@ class Exploit(exploits.Exploit):
"""
__info__
=
{
'name'
:
'HTTP Form Default Creds'
,
'authors'
:
[
'description'
:
'Module performs dictionary attack with default credentials against HTTP form service. '
'If valid credentials are found, they are displayed to the user.'
,
'authors'
:
(
'Marcin Bury <marcin.bury[at]reverse-shell.com>'
# routersploit module
]
),
'references'
:
''
,
'devices'
:
'Multi'
,
}
target
=
exploits
.
Option
(
''
,
'Target IP address or file with target:port (file://)'
)
...
...
routersploit/modules/creds/snmp_bruteforce.py
View file @
17857b69
...
...
@@ -21,7 +21,13 @@ class Exploit(exploits.Exploit):
"""
__info__
=
{
'name'
:
'SNMP Bruteforce'
,
'authors'
:
'Marcin Bury <marcin.bury[at]reverse-shell.com>'
# routersploit module
'description'
:
'Module performs bruteforce attack against SNMP service. '
'If valid community string is found, it is displayed to the user.'
,
'authors'
:
(
'Marcin Bury <marcin.bury[at]reverse-shell.com>'
,
# routersploit module
),
'references'
:
''
,
'devices'
:
'Multi'
,
}
target
=
exploits
.
Option
(
''
,
'Target IP address or file with target:port (file://)'
)
...
...
routersploit/modules/creds/ssh_bruteforce.py
View file @
17857b69
...
...
@@ -23,7 +23,13 @@ class Exploit(exploits.Exploit):
"""
__info__
=
{
'name'
:
'SSH Bruteforce'
,
'authors'
:
'Marcin Bury <marcin.bury[at]reverse-shell.com>'
# routersploit module
'description'
:
'Module performs bruteforce attack against SSH service. '
'If valid credentials are found, they are displayed to the user.'
,
'authors'
:
(
'Marcin Bury <marcin.bury[at]reverse-shell.com>'
,
# routersploit module
),
'references'
:
''
,
'devices'
:
'Multi'
,
}
target
=
exploits
.
Option
(
''
,
'Target IP address or file with target:port (file://)'
)
...
...
routersploit/modules/creds/ssh_default.py
View file @
17857b69
...
...
@@ -22,9 +22,14 @@ class Exploit(exploits.Exploit):
"""
__info__
=
{
'name'
:
'SSH Default Creds'
,
'authors'
:
[
'description'
:
'Module perform dictionary attack with default credentials against SSH service. '
'If valid credentials are found, they are displayed to the user.'
,
'authors'
:
(
'Marcin Bury <marcin.bury[at]reverse-shell.com>'
# routersploit module
]
),
'references'
:
''
,
'devices'
:
'Multi'
,
}
target
=
exploits
.
Option
(
''
,
'Target IP address or file with target:port (file://)'
)
...
...
routersploit/modules/creds/telnet_bruteforce.py
View file @
17857b69
...
...
@@ -22,7 +22,13 @@ class Exploit(exploits.Exploit):
"""
__info__
=
{
'name'
:
'Telnet Bruteforce'
,
'authors'
:
'Marcin Bury <marcin.bury[at]reverse-shell.com>'
# routersploit module
'description'
:
'Module performs bruteforce attack against Telnet service. '
'If valid credentials are found, they are displayed to the user.'
,
'authors'
:
(
'Marcin Bury <marcin.bury[at]reverse-shell.com>'
,
# routersploit module
),
'references'
:
''
,
'devices'
:
'Multi'
,
}
target
=
exploits
.
Option
(
''
,
'Target IP address or file with target:port (file://)'
)
...
...
routersploit/modules/creds/telnet_default.py
View file @
17857b69
...
...
@@ -21,9 +21,13 @@ class Exploit(exploits.Exploit):
"""
__info__
=
{
'name'
:
'Telnet Default Creds'
,
'authors'
:
[
'description'
:
'Module perform dictionary attack with default credentials against Telnet service. '
'If valid credentials are found, they are displayed to the user.'
,
'authors'
:
(
'Marcin Bury <marcin.bury[at]reverse-shell.com>'
# routersploit module
]
),
'references'
:
''
,
'devices'
:
'Multi'
,
}
target
=
exploits
.
Option
(
''
,
'Target IP address or file with target:port (file://)'
)
...
...
routersploit/modules/scanners/autopwn.py
View file @
17857b69
...
...
@@ -20,6 +20,8 @@ class Exploit(exploits.Exploit):
'authors'
:
[
'Marcin Bury <marcin.bury[at]reverse-shell.com>'
,
# routersploit module
],
'references'
:
''
,
'devices'
:
'Multi'
,
}
target
=
exploits
.
Option
(
''
,
'Target IP address e.g. 192.168.1.1'
)
# target address
...
...
routersploit/modules/scanners/dlink_scan.py
View file @
17857b69
...
...
@@ -20,6 +20,8 @@ class Exploit(exploits.Exploit):
'authors'
:
[
'Marcin Bury <marcin.bury[at]reverse-shell.com>'
,
# routersploit module
],
'references'
:
''
,
'devices'
:
'Multi'
,
}
target
=
exploits
.
Option
(
''
,
'Target IP address e.g. 192.168.1.1'
)
# target address
...
...
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