Skip to content

Commit

Permalink
increase qsize for speculate and excavate
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTechromancer committed Feb 6, 2024
1 parent 1c5a234 commit 86c0171
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions bbot/modules/internal/excavate.py
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,7 @@ class excavate(BaseInternalModule):
meta = {"description": "Passively extract juicy tidbits from scan data"}

scope_distance_modifier = None
_qsize = 10000

async def setup(self):
self.csp = CSPExtractor(self)
Expand Down
1 change: 1 addition & 0 deletions bbot/modules/internal/speculate.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ class speculate(BaseInternalModule):
}
scope_distance_modifier = 1
_priority = 4
_qsize = 10000

async def setup(self):
scan_modules = [m for m in self.scan.modules.values() if m._type == "scan"]
Expand Down

0 comments on commit 86c0171

Please sign in to comment.