mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-01-03 09:25:42 +10:00
Records hostname → IP resolutions during page load using Chrome CDP. Uses Network.responseReceived events to capture DNS resolution data and writes one JSON line per record to dns.jsonl. Features: - Captures hostname to IP address mappings (A/AAAA records) - Records failed DNS lookups (NXDOMAIN) - Deduplicates resolution records per page load - Integrates with existing Chrome plugin infrastructure
22 lines
542 B
JSON
22 lines
542 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required_plugins": ["chrome"],
|
|
"properties": {
|
|
"DNS_ENABLED": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"x-aliases": ["SAVE_DNS", "USE_DNS"],
|
|
"description": "Enable DNS traffic recording during page load"
|
|
},
|
|
"DNS_TIMEOUT": {
|
|
"type": "integer",
|
|
"default": 30,
|
|
"minimum": 5,
|
|
"x-fallback": "TIMEOUT",
|
|
"description": "Timeout for DNS recording in seconds"
|
|
}
|
|
}
|
|
}
|