diff --git a/bbot/modules/internal/excavate.py b/bbot/modules/internal/excavate.py index 5ccc8d36a5..e4fe1c4760 100644 --- a/bbot/modules/internal/excavate.py +++ b/bbot/modules/internal/excavate.py @@ -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) diff --git a/bbot/modules/internal/speculate.py b/bbot/modules/internal/speculate.py index 7aaf12d306..c039b3b1b1 100644 --- a/bbot/modules/internal/speculate.py +++ b/bbot/modules/internal/speculate.py @@ -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"]