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
91310b33
Commit
91310b33
authored
Sep 06, 2017
by
fwkz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add scanner modules for `routers`, `misc` and `cameras`.
parent
ef8fec6c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
57 additions
and
0 deletions
+57
-0
cameras_scan.py
routersploit/modules/scanners/cameras_scan.py
+19
-0
misc_scan.py
routersploit/modules/scanners/misc_scan.py
+19
-0
routers_scan.py
routersploit/modules/scanners/routers_scan.py
+19
-0
No files found.
routersploit/modules/scanners/cameras_scan.py
0 → 100755
View file @
91310b33
from
__future__
import
absolute_import
from
.autopwn
import
Exploit
as
BaseScanner
class
Exploit
(
BaseScanner
):
"""
Scanner implementation for cameras.
"""
__info__
=
{
'name'
:
'Cameras Scanner'
,
'description'
:
'Scanner module for cameras'
,
'authors'
:
[
'Mariusz Kupidura <f4wkes[at]gmail.com>'
,
# routersploit module
],
'references'
:
(),
'devices'
:
(),
}
modules
=
[
'cameras'
]
routersploit/modules/scanners/misc_scan.py
0 → 100755
View file @
91310b33
from
__future__
import
absolute_import
from
.autopwn
import
Exploit
as
BaseScanner
class
Exploit
(
BaseScanner
):
"""
Scanner implementation for misc devices.
"""
__info__
=
{
'name'
:
'Misc Scanner'
,
'description'
:
'Scanner module for misc devices'
,
'authors'
:
[
'Mariusz Kupidura <f4wkes[at]gmail.com>'
,
# routersploit module
],
'references'
:
(),
'devices'
:
(),
}
modules
=
[
'misc'
]
routersploit/modules/scanners/routers_scan.py
0 → 100755
View file @
91310b33
from
__future__
import
absolute_import
from
.autopwn
import
Exploit
as
BaseScanner
class
Exploit
(
BaseScanner
):
"""
Scanner implementation for routers.
"""
__info__
=
{
'name'
:
'Router Scanner'
,
'description'
:
'Scanner module for routers'
,
'authors'
:
[
'Mariusz Kupidura <f4wkes[at]gmail.com>'
,
# routersploit module
],
'references'
:
(),
'devices'
:
(),
}
modules
=
[
'routers'
]
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