Skip to content

Commit

Permalink
Add grandstream and movistar scanners
Browse files Browse the repository at this point in the history
  • Loading branch information
fwkz committed Mar 5, 2017
1 parent e06f3dd commit 27f7415
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
23 changes: 23 additions & 0 deletions routersploit/modules/scanners/grandstream_scan.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
from __future__ import absolute_import

from .autopwn import Exploit as BaseScanner


class Exploit(BaseScanner):
"""
Scanner implementation for Grandstream vulnerabilities.
"""
__info__ = {
'name': 'Grandstream Scanner',
'description': 'Scanner module for Grandstream devices',
'authors': [
'Mariusz Kupidura <f4wkes[at]gmail.com>', # routersploit module
],
'references': (
'',
),
'devices': (
'Grandstream',
),
}
vendor = 'grandstream'
23 changes: 23 additions & 0 deletions routersploit/modules/scanners/movistar_scan.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
from __future__ import absolute_import

from .autopwn import Exploit as BaseScanner


class Exploit(BaseScanner):
"""
Scanner implementation for Movistar vulnerabilities.
"""
__info__ = {
'name': 'Movistar Scanner',
'description': 'Scanner module for Movistar devices',
'authors': [
'Mariusz Kupidura <f4wkes[at]gmail.com>', # routersploit module
],
'references': (
'',
),
'devices': (
'Movistar',
),
}
vendor = 'movistar'

0 comments on commit 27f7415

Please sign in to comment.