Skip to content

Commit

Permalink
[hoppy] Disable hoppy support for v4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DePierre committed Jan 30, 2017
1 parent f214206 commit 880d94a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
1 change: 0 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ Current support
+ arachni (0.4.x to 1.x) (XML and JSON report)
+ burpsuite (1.x.x) (XML report)
+ dirbuster (1.0-RC1)
+ hoppy (1.x.x)
+ metasploit
+ owasp
+ robots.txt
Expand Down
4 changes: 1 addition & 3 deletions ptp/ptp.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
from .tools.owasp.cm008.parser import OWASPCM008Parser
from .tools.robots.parser import RobotsParser
from .tools.burpsuite.parser import BurpXMLParser
from .tools.hoppy.parser import HoppyParser


class PTP(object):
Expand All @@ -43,8 +42,7 @@ class PTP(object):
'nmap': [NmapXMLParser],
'owasp-cm-008': [OWASPCM008Parser],
'robots': [RobotsParser],
'burpsuite': [BurpXMLParser],
'hoppy': [HoppyParser]}
'burpsuite': [BurpXMLParser]}

def __init__(self, tool_name='', cumulative=False):
"""Initialize :class:`PTP`.
Expand Down
2 changes: 1 addition & 1 deletion tests/test_ptp.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def test_ptp_init_unsupported_tool(self):
def test_ptp_init_supported_tools(self):
tool_names = [
'arachni', 'skipfish', 'w3af', 'wapiti', 'metasploit', 'dirbuster', 'nmap', 'owasp-cm-008', 'robots',
'burpsuite', 'hoppy']
'burpsuite']
for tool_name in tool_names:
self.assertTrue(PTP(tool_name=tool_name).tool_name == tool_name)

Expand Down

0 comments on commit 880d94a

Please sign in to comment.