Skip to content
This repository has been archived by the owner on May 2, 2020. It is now read-only.

Commit

Permalink
Fixed invalid comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tijme Gommers committed May 14, 2018
1 parent 13b793c commit 4a9ef89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extension/GraphWaveHttpListener.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
from threading import Lock

class GraphWaveHttpListener(IHttpListener):
"""The GraphWaveHttpListener listens to all spider packages flowing through Burp Suite.
"""The GraphWaveHttpListener listens to all spider and proxy packages flowing through Burp Suite.
Attributes:
enabled (bool): If the extension should be listening.
Expand Down Expand Up @@ -78,7 +78,7 @@ def processHttpMessage(self, toolFlag, messageIsRequest, requestResponse):
if not self.enabled:
return None

# If not a spider response, stop.
# If not a spider or proxy response, stop.
if toolFlag not in [4,8] or messageIsRequest:
return None

Expand Down

0 comments on commit 4a9ef89

Please sign in to comment.