Skip to content

Commit

Permalink
increase dnscommonsrv threads
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTechromancer committed Feb 4, 2024
1 parent ad758a7 commit 6273fb3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bbot/modules/dnscommonsrv.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,12 +154,12 @@ class dnscommonsrv(BaseModule):
produced_events = ["DNS_NAME"]
flags = ["subdomain-enum", "passive", "safe"]
meta = {"description": "Check for common SRV records"}
options = {"top": 50, "max_event_handlers": 5}
options = {"top": 50, "max_event_handlers": 10}
options_desc = {
"top": "How many of the top SRV records to check",
"max_event_handlers": "How many instances of the module to run concurrently",
}
_max_event_handlers = 5
_max_event_handlers = 10

def _incoming_dedup_hash(self, event):
# dedupe by parent
Expand Down
2 changes: 1 addition & 1 deletion bbot/modules/sitedossier.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,5 @@ async def query(self, query, parse_fn=None, request_fn=None):
results.add(hostname)
yield hostname
if '<a href="/parentdomain/' not in response.text:
self.verbose(f"Next page not found in {response.text}")
self.debug(f"Next page not found")
break

0 comments on commit 6273fb3

Please sign in to comment.