Skip to content

Commit

Permalink
Merge pull request #1040 from blacklanternsecurity/interactsh-error-h…
Browse files Browse the repository at this point in the history
…andling

Better Interactsh error handling
  • Loading branch information
TheTechromancer authored Jan 29, 2024
2 parents b77f878 + 8bba54c commit 9809d5e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions bbot/core/helpers/interactsh.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,8 @@ async def poll(self):
r = await self.parent_helper.request(
f"https://{self.server}/poll?id={self.correlation_id}&secret={self.secret}", headers=headers
)
if r is None:
raise InteractshError("Error polling interact.sh: No response from server")

ret = []
data_list = r.json().get("data", None)
Expand Down
1 change: 1 addition & 0 deletions docs/release_history.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ January 29, 2024
- https://github.com/blacklanternsecurity/bbot/pull/1014
- https://github.com/blacklanternsecurity/bbot/pull/1015
- https://github.com/blacklanternsecurity/bbot/pull/1032
- https://github.com/blacklanternsecurity/bbot/pull/1040

## Bugfixes
- https://github.com/blacklanternsecurity/bbot/pull/1005
Expand Down

0 comments on commit 9809d5e

Please sign in to comment.