Skip to content

Commit

Permalink
default qsize --> 1000, unlimited qsize for speculate & excavate
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTechromancer committed Feb 7, 2024
1 parent bfef473 commit 2f788d7
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion bbot/modules/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ class BaseModule:

_preserve_graph = False
_stats_exclude = False
_qsize = 100
_qsize = 1000
_priority = 3
_name = "base"
_type = "scan"
Expand Down
1 change: 0 additions & 1 deletion bbot/modules/internal/excavate.py
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,6 @@ 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: 0 additions & 1 deletion bbot/modules/internal/speculate.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ 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 2f788d7

Please sign in to comment.