Skip to content

Commit 4ab5e48

Browse files
committed
docs: correct local DNS flag name (--bot-local-dns)
1 parent fc50de6 commit 4ab5e48

5 files changed

Lines changed: 10 additions & 6 deletions

File tree

ADVANCED_FEATURES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ Performance tip: If all contexts share the same proxy IP, set `--proxy-ip` to sk
117117
**DNS & IP Discovery**
118118
- **DNS‑leak protection:** SOCKS5 proxies prevent local DNS resolution, and all domain lookups go through the proxy tunnel.
119119
- **UDP over SOCKS5 (ENT Tier3):** Automatically attempts UDP associate to tunnel QUIC/STUN where supported; ICE presets can often be skipped when UDP is available.
120-
- **Local DNS solver (ENT Tier1):** Enable `--bot-dns-local` when you want faster resolution, want to avoid DNS poisoning, or your proxy provider restricts DNS behavior. This keeps DNS resolution local while the rest of the proxy and geo pipeline remains consistent.
120+
- **Local DNS solver (ENT Tier1):** Enable `--bot-local-dns` when you want faster resolution, want to avoid DNS poisoning, or your proxy provider restricts DNS behavior. This keeps DNS resolution local while the rest of the proxy and geo pipeline remains consistent.
121121
- **Custom public IP service:** Use `--bot-ip-service` to point BotBrowser at your preferred IP lookup endpoint when you need deterministic egress discovery or an in-house IP service. You can provide multiple endpoints separated by commas, and BotBrowser will race them and pick the fastest successful response.
122122

123123
**Important:** Always use BotBrowser's proxy options over framework-specific settings to ensure geo-detection remains accurate and consistent.

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
- **Chromium Core → 143.0.7499.147**: Updated the engine to 143.0.7499.147 to stay aligned with the latest Chrome Stable. This keeps Web Platform behavior, DevTools schemas, and version keyed heuristics in lockstep with upstream.
99

1010
### New
11-
- **Local DNS solver (ENT Tier1)**: Added a local DNS resolver that can be enabled with `--bot-dns-local`. This improves privacy and resolution speed, avoids common DNS poisoning scenarios, and bypasses DNS limitations imposed by some proxy providers.
11+
- **Local DNS solver (ENT Tier1)**: Added a local DNS resolver that can be enabled with `--bot-local-dns`. This improves privacy and resolution speed, avoids common DNS poisoning scenarios, and bypasses DNS limitations imposed by some proxy providers.
1212
- **Custom public IP service**: Added `--bot-ip-service` so you can point BotBrowser at your own IP lookup endpoint when you want full control over how the public egress IP is detected. Multiple endpoints can be provided as a comma-separated list, and BotBrowser will race them and use the fastest successful response.
1313

1414
### Improvements

CLI_FLAGS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,11 +93,11 @@ This skips per‑page IP lookups and speeds up navigation.
9393
- Per-context proxy (ENT Tier1): set different proxies via `createBrowserContext({ proxy })`; BotBrowser auto-derives geo info in both cases
9494
- Avoid: framework-specific options like `page.authenticate()` that disable BotBrowser's geo-detection, which may leak location information
9595

96-
### `--bot-dns-local` (ENT Tier1)
96+
### `--bot-local-dns` (ENT Tier1)
9797
Enable the local DNS solver. This keeps DNS resolution local instead of relying on a proxy provider’s DNS behavior, improving privacy and speed while avoiding common DNS poisoning paths.
9898

9999
```bash
100-
--bot-dns-local=true
100+
--bot-local-dns=true
101101
```
102102

103103
Practical notes:

console/neutralino.config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"minHeight": 200,
2626
"center": true,
2727
"icon": "/dist/botbrowser-console/browser/favicon.ico",
28-
"enableInspector": true,
28+
"enableInspector": false,
2929
"borderless": false,
3030
"maximize": false,
3131
"hidden": false,
@@ -42,4 +42,4 @@
4242
"binaryVersion": "5.4.0",
4343
"clientVersion": "5.4.0"
4444
}
45-
}
45+
}

console/src/app/shared/browser-launcher.service.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,10 @@ export class BrowserLauncherService {
161161
'--disable-blink-features=AutomationControlled',
162162
`--user-data-dir="${userDataDirPath}"`,
163163
`--disk-cache-dir="${diskCacheDirPath}"`,
164+
'--bot-local-dns',
165+
'--bot-webrtc-ice=google',
166+
'--bot-mobile-force-touch',
167+
'--bot-always-active',
164168
`--bot-profile="${botProfilePath}"`,
165169
];
166170

0 commit comments

Comments
 (0)