Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ jobs:
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Install dependencies
run: uv sync --only-group docs
run: uv sync --frozen --only-group docs
- name: Configure Git
run: |
git config user.name github-actions
Expand Down
2 changes: 1 addition & 1 deletion docs/scanning/tips_and_tricks.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ bbot -t evilcorp.com -f subdomain-enum -c dns.brute_threads=5000

By far the most effective way to speed up a BBOT scan is to **add more resolvers to `/etc/resolv.conf`**. BBOT's DNS engine (blastdns) spins up ten workers per resolver, so more resolvers = more parallelism = faster scans.

For OSINT, it's critical that every resolver is **unfiltered** -- filtering resolvers silently hide domains, which defeats the purpose. Below is a sample `/etc/resolv.conf` with 11 unfiltered public resolvers:
For OSINT, it's critical that every resolver is **unfiltered**. Specialized resolvers that try to block ads, malicious domains, etc. will intentionally omit results. Below is a sample `/etc/resolv.conf` with 11 unfiltered public resolvers:

```conf
--8<-- "docs/data/resolv-sample.conf"
Expand Down
Loading