Table of Contents
Provenance appendix: the second pass over the residue
The scripts and the unedited output behind the second pass of 2026-09-11 over the 40 sampled domains the 2026-09-05 random sample could not adjudicate. It settled 28 of them, which moved the per-list accuracy rates on Design:Ownership resolution and, more consequentially, took the one pairwise comparison that survived Bonferroni below the bar.
Read ownership_resolution section L first: the queries, the new source kinds and what they are worth, the citations this pass broke and fixed, the 12 rows still unresolved with every route tried, and the judgement calls are there, and this page is only the code and the raw output they refer to. The first sitting's code is on random_sample. Corpus-level caveats are on corpus.
Sections are in letter order, A–R, and that is also chronological: A–I are the scripts, J–R the outputs.
Why this is a third page. These blocks are 392 kB and the random-sample appendix's are already 286 kB; putting them together would make one 678 kB page carrying two probe logs. Both figures are computed when this page is generated, from the same file lists the two manifests use, so neither can go stale while the other moves. That page's own “why this is a separate page” paragraph gives the argument and it applies unchanged here. No figure is derived only on this page — several are only shown here, in particular the full 40-domain probe log and the diff between the two estimates.
Every block is read from the committed file when this page is generated
(scripts/build_webxray_residue_pass_page.py, which imports the emitter and
every self-check from the random-sample builder rather than copying them), so
the code published here is the code that ran. Nothing is retyped, abridged or
reflowed. Trailing newlines are stripped and line endings normalised to LF; the
last column below says, per file, whether that changed a byte.
The bytes and SHA-256 in the table are of the file on disk, not of the block. If a block disagrees with its file in any other way, the page was hand-edited and should not be trusted.
| Section | File | Bytes on disk | SHA-256 (16) of the file | Block differs from the file? |
|---|---|---|---|---|
| A | scripts/whois43.py | 2,554 | 48be940fc7637898 | no |
| B | scripts/owner_tail_probe.sh | 6,718 | b50e950571876348 | no |
| C | out/tail_adj/INSTRUCTIONS_TAIL.md | 9,925 | 6af8baf6ef5a16b1 | no |
| D | scripts/owner_tail_merge.py | 7,950 | b7fa9c9a573c6e2f | no |
| E | scripts/owner_tail_corrections.py | 8,654 | 4f30dc28ccd516bf | no |
| F | scripts/report_tail_pass.py | 20,276 | 91ef54dfa24bf452 | no |
| G | scripts/check_tail_figures.py | 17,939 | 401e5956f79c89e9 | no |
| H | scripts/check_tail_merge_mutations.sh | 2,704 | 6a77cccbcb73f91b | no |
| I | scripts/check_tail_figures_mutations.sh | 4,975 | 6664ce97cdbfb5a0 | no |
| J | out/check_tail_merge_mutations-output.txt | 1,142 | ebb83f0c555d0527 | no |
| K | out/tail_probe.txt | 177,214 | 5f487708ad8b7ba9 | yes — one lone CR normalised to LF |
| L | out/owner_tail_merge-output.txt | 1,042 | b1fe634a350c43bc | no |
| M | out/tail_verify-output.txt | 2,512 | f772acd997a598d8 | no |
| N | out/owner_tail_corrections-output.txt | 6,659 | df43d5b6edba64dd | no |
| O | out/owner_random_sample-tail-output.txt | 52,594 | f46dd7c6f37fb231 | no |
| P | out/owner_random_sample-tail.diff | 63,634 | 07ae04745a451e50 | no |
| Q | out/report_tail_pass-output.txt | 13,529 | c5e2c644f7b4c35c | no |
| R | out/check_tail_figures_mutations-output.txt | 1,329 | 9c28a7c4448ac143 | no |
A. scripts/whois43.py — a WHOIS client, because this container has none
Two hops over port 43: IANA referral, the TLD server, then the registrar's own server when the registry is thin. That last hop is what the 2026-09-11 second pass turned on: rdap.org returns a .com/.net record with no registrant, and the registrar returns it un-redacted for 9 of the 40 residue domains. This sandbox has no whois(1) and no apt, so the protocol is spoken directly.
- whois43.py
#!/usr/bin/env python3 """Minimal WHOIS-over-port-43 client, because this container has no whois(1) and `apt-get` is unavailable. Two hops, exactly what whois(1) does: ask whois.iana.org for the TLD's server, then ask that server for the domain. A registrar referral inside the registry answer is followed once more when the registry is thin (.com/.net), because the registrant organisation and the register number live at the registrar. python3 scripts/whois43.py i.ua python3 scripts/whois43.py --raw cedscdn.it """ import socket, sys, re TIMEOUT = 20 def ask(server, query, timeout=TIMEOUT): with socket.create_connection((server, 43), timeout=timeout) as s: s.sendall((query + "\r\n").encode()) buf = b"" while True: try: d = s.recv(8192) except socket.timeout: break if not d: break buf += d return buf.decode("utf-8", "replace") def tld_server(tld): r = ask("whois.iana.org", tld) m = re.search(r"^whois:\s*(\S+)", r, re.M) return m.group(1) if m else None def lookup(domain, follow=True): """Returns [(server, response), ...] in the order queried.""" tld = domain.rsplit(".", 1)[-1] srv = tld_server(tld) out = [] if not srv: return out try: r = ask(srv, domain) except Exception as e: return [(srv, f"<error: {e!r}>")] out.append((srv, r)) if follow: m = re.search(r"^\s*Registrar WHOIS Server:\s*(\S+)", r, re.M | re.I) if m and m.group(1).lower() not in (srv.lower(), ""): try: out.append((m.group(1), ask(m.group(1), domain))) except Exception as e: out.append((m.group(1), f"<error: {e!r}>")) return out KEEP = re.compile( r"organi[sz]|registrant|holder|^\s*org\b|company|vat|codice|p\.? ?iva|" r"created|creation|changed|updated|registered|expir|status|name:|" r"address|country|registrar|admin|tech|e-mail|email", re.I) def main(): raw = "--raw" in sys.argv doms = [a for a in sys.argv[1:] if not a.startswith("--")] for d in doms: for srv, r in lookup(d): print(f"--- whois {d} @ {srv}") for line in r.splitlines(): if line.startswith(("%", "#", ">>>")) or not line.strip(): continue if raw or KEEP.search(line): print(" " + line.rstrip()[:200]) return 0 if __name__ == "__main__": sys.exit(main())
B. scripts/owner_tail_probe.sh — the harder mechanical probe
owner_probe.sh asks three live questions and every one of them is silent on a dead domain, which is most of the residue. This adds RDAP events, the two-hop port-43 WHOIS, register/VAT numbers scraped from the served page, and three Wayback CDX queries — legal pages across every subdomain, the root page's history, and the URL inventory, which is what tells you whether a domain ever served a site at all. None of its output is a verdict.
- owner_tail_probe.sh
#!/bin/bash # Harder-sourcing mechanical probe for the 40 domains the 2026-09-05 random # sample could not settle (section E of scripts/owner_random_sample.py). # # scripts/owner_probe.sh asked three live questions -- TLS, RDAP registrant, # HTTP -- and every one of them is silent on a dead domain, which is most of # this residue. This probe adds the three signals the second pass is for: # # RDAP/WHOIS the registrant organisation AND the event dates. rdap.org's # thin registry answer for .com/.net omits the registrant, so # the registrar's own port-43 server is queried as a second hop # -- that is where "Applied Technologies Internet SAS" sits for # at-o.net, un-redacted, while RDAP shows nothing. ccTLD # registries (.it, .ua, .jp) are queried at their own server, # because rdap.org does not bootstrap them. A registration or # last-changed date bounds a claimed acquisition even when the # organisation is redacted. # REGISTER-ID any company/VAT/register number the served page prints. This # is the identifier a national register is searchable BY, and # searching by number rather than by name is the point of the # second pass: "Admiral", "Collective" and "Globo" are not # usefully searchable as names. # WAYBACK CDX index of the domain's own legal pages across every # subdomain, its root-page history, and its URL inventory. A # dead domain that once served a privacy policy still has an # operator of record in the Archive, and that document is the # domain's own legal document -- the same source kind the # adjudication brief already accepts, read at a date when it # existed. The inventory answers a different question: whether # the domain ever served a site at all, or only tracking # endpoints, in which case no legal page will ever be found and # the row is unresolvable by this route. # # None of these is a verdict. They locate the lead that the adjudication then # has to fetch and quote. # # bash scripts/owner_tail_probe.sh out/tail40.json out/tail_probe # # Writes one file per domain into the output directory and prints them # concatenated in input order, so the parallelism does not reorder the report. set -u export CDX=https://web.archive.org/cdx/search/cdx export UA='Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0 Safari/537.36' LIST="${1:-out/tail40.json}" OUT="${2:-out/tail_probe}" mkdir -p "$OUT" export OUT probe_one() { d="$1" { echo "==============================================================================" echo "=== $d" echo "==============================================================================" # ---- 1. TLS --------------------------------------------------------------- # An OV/EV Subject O= is an identity a CA validated against a company # register. A DV certificate has no O= at all, which is why the issuer is # printed: it is how a reader tells a validated field from an absent one. tls=$(timeout 20 openssl s_client -connect "$d:443" -servername "$d" </dev/null 2>/dev/null \ | openssl x509 -noout -subject -issuer 2>/dev/null) echo "TLS: ${tls:-<no handshake>}" | tr '\n' '|'; echo # ---- 2. RDAP ---------------------------------------------------------------- case "$d" in *.it) u="https://rdap.nic.it/domain/$d" ;; *.jp|*.ua) u="" ;; *) u="https://rdap.org/domain/$d" ;; esac if [ -n "$u" ]; then rd=$(timeout 30 curl -sL --max-time 30 -H 'Accept: application/rdap+json' "$u" 2>/dev/null) if echo "$rd" | jq -e . >/dev/null 2>&1; then echo "RDAP-registrant: $(echo "$rd" | jq -r '[.entities[]? | select(.roles?|index("registrant")) | (.vcardArray[1][]? | select(.[0]=="fn" or .[0]=="org") | .[3])] | unique | join(" / ")')" echo "RDAP-registrar: $(echo "$rd" | jq -r '[.entities[]? | select(.roles?|index("registrar")) | (.vcardArray[1][]? | select(.[0]=="fn") | .[3])] | unique | join(" / ")')" echo "RDAP-events: $(echo "$rd" | jq -r '[.events[]? | "\(.eventAction)=\(.eventDate)"] | join(" ")')" echo "RDAP-status: $(echo "$rd" | jq -r '[.status[]?] | join(",")')" echo "RDAP-ns: $(echo "$rd" | jq -r '[.nameservers[]?.ldhName] | join(",")' | tr 'A-Z' 'a-z')" else echo "RDAP: <no JSON from $u>" fi else echo "RDAP: <no endpoint for this TLD; WHOIS below is the published interface>" fi # WHOIS over port 43. This container has no whois(1) and no apt, so # scripts/whois43.py speaks the protocol directly: IANA referral, then the # TLD server, then the registrar's server when the registry is thin. # Filtered to lines that can carry an identity, so a privacy proxy stays # visible rather than being read as an owner. w=$(timeout 90 python3 scripts/whois43.py "$d" 2>/dev/null | head -45) echo "WHOIS:"; echo "${w:- <none>}" # ---- 3. register / VAT numbers on the live page --------------------------- page=$(timeout 25 curl -sL --max-time 25 -A "$UA" "https://$d/" 2>/dev/null | sed 's/<[^>]*>/ /g') ids=$(echo "$page" | grep -oiE '(company (number|no\.?|registration)|reg\.? no\.?|registered in [a-z ]+ no\.?|VAT( reg(istration)?)?( no\.?| number)?|P\.? ?IVA|USt-IdNr|HRB|SIREN|SIRET|codice fiscale|CIK)[: ]*[A-Z0-9][A-Z0-9 .-]{3,20}' | sort -u | head -8) echo "REGISTER-ID (live page): ${ids:-<none>}" # ---- 4. Wayback CDX ------------------------------------------------------- cdx() { timeout 90 curl -s --max-time 90 "$CDX?$1" 2>/dev/null; } echo "WAYBACK-legal (any subdomain, 200 only, one row per distinct body):" r=$(cdx "url=$d&matchType=domain&fl=timestamp,original,statuscode&filter=statuscode:200&filter=original:.*(privacy|terms|legal|imprint|impressum|about|contact|policy|conditions|mentions|datenschutz|cookie|gdpr).*&collapse=digest&limit=12") echo "${r:- <none>}" | sed 's/^/ /' echo "WAYBACK-root (every distinct body of the root page, with status):" r=$(cdx "url=$d&fl=timestamp,statuscode,digest,length&collapse=digest&limit=20") echo "${r:- <none>}" | sed 's/^/ /' echo "WAYBACK-inventory (distinct URLs ever captured, any status):" r=$(cdx "url=$d&matchType=domain&fl=timestamp,original,statuscode&collapse=urlkey&limit=20") echo "${r:- <none>}" | sed 's/^/ /' echo } > "$OUT/$d.txt" 2>&1 } export -f probe_one jq -r '.[].domain' "$LIST" | xargs -P 6 -I{} bash -c 'probe_one "$@"' _ {} for d in $(jq -r '.[].domain' "$LIST"); do cat "$OUT/$d.txt"; done
C. the second-pass adjudication brief, as given to the sub-agents
Five Sonnet sub-agents, 8 domains each, round-robin over the prevalence order. Published verbatim for the same reason the first brief is: the sourcing bar is the instrument, and this pass widened it. The three new source kinds, the rule that an archived legal page cannot settle a row on its own, and the instruction that unresolved remains a correct answer are all in here and are all load-bearing.
# Second pass: the 40 domains the random sample could not settle
Today is **2026-09-11**. On 2026-09-05 a stratified random sample of 175 domains
was adjudicated against primary sources to measure how accurate three published
domain-to-company ownership databases (webXray, Tracker Radar, Disconnect) are.
**40 of the 175 could not be settled** and were excluded from every accuracy
rate, which makes every published rate *conditional on the entry being
adjudicable*. The exclusion rate rises toward the prevalence tail, and it is
worst for Disconnect (18 of its 60). If the unadjudicable entries are
systematically worse than the adjudicable ones, all the rates are flattered.
You are doing the harder second pass over exactly those rows. **Every row you
resolve moves out of the residue and into the rates.** A row you cannot resolve
stays out, and that is a correct answer — do not manufacture one.
## What is different this time: three routes the first pass did not take
1. **National company register, searched BY NUMBER, not by name.** The first
pass failed on names like "Admiral", "Collective", "Globo" and "Acint"
because they are unsearchable as strings. Get an identifier first — a
company/VAT/register number from the domain's own imprint, an OV/EV TLS
certificate subject, a filing, a registry WHOIS record — and then look the
number up in the register. Registers that answer by number, all free:
* UK: `https://find-and-update.company-information.service.gov.uk/company/<number>`
* France: `https://annuaire-entreprises.data.gouv.fr/entreprise/<siren>`
* Italy: the `.it` registry WHOIS carries the registrant organisation; the
Registro Imprese/VAT number is on the site's own footer by law.
* Denmark: `https://datacvr.virk.dk/enhed/virksomhed/<cvr>`
* Japan: `https://www.houjin-bangou.nta.go.jp/` (corporate number)
* US: SEC EDGAR by CIK `https://data.sec.gov/submissions/CIK##########.json`,
or the state register (Delaware, California, Pennsylvania …) by file number.
* Brazil: CNPJ. Ukraine: EDRPOU. Cyprus: HE number.
2. **RDAP / registry WHOIS history.** `out/tail_probe.txt` (given to you below,
per domain) already contains, for each domain: the TLS subject and issuer,
the RDAP registrant/registrar/events/status, and a full two-hop port-43 WHOIS
(registry, then the registrar's own server — which is where the registrant
organisation is un-redacted for several of these). Registration and
last-changed dates **bound** a claim even when the organisation is redacted:
a domain created in 2005 was not registered by a company founded in 2014.
3. **Archived captures of the domain's own legal pages.** The probe lists, per
domain, every Wayback capture of a privacy/terms/legal/imprint page on the
domain or any of its subdomains, the root page's capture history, and the
URL inventory. A dead domain that once served a privacy policy still names
an operator of record in the Archive. Fetch the capture:
`https://web.archive.org/web/<timestamp>id_/<url>` (the `id_` suffix returns
the original bytes without the Archive's banner).
## The sourcing bar, and what it now accepts
Everything the first pass accepted still counts and is preferred:
`newsroom` (the company's own press release), `filing` (SEC/regulator/annual
report), `legal-doc` (the domain's own live privacy policy, terms, imprint,
cookie policy, or the legal-entity name in the footer of the site it serves or
redirects to), `parent-site` (the acquirer's/parent's own site naming the brand
or domain as theirs), `register` (a national company register record, or an
**OV/EV** TLS certificate's validated `O =` field).
Three source kinds are **new in this pass** and must be labelled as such,
because they are a different and in one case weaker kind of evidence and the
published page has to say so:
* `domain-register` — the **un-redacted `Registrant Organization`** in the
registry-of-record or registrar WHOIS. This is the registry's record of who
holds the name, contractually required to be accurate, but it is
self-asserted by the registrant and nobody validated it. Weaker than a
company register. Acceptable **on its own** only when it names a specific
legal entity (not a proxy, not "REDACTED", not "N/A", not the registrar), and
you must quote the exact line.
* `archived-legal-doc` — a Wayback capture of the domain's own legal page.
This establishes who operated the domain **at the capture date**, not today.
To turn it into a verdict about today you need one of:
(a) registry WHOIS showing the same registrant organisation now, or
registration/last-changed dates that bracket the period with no transfer,
**or**
(b) a live primary source about the named entity that names this domain or
the service it serves.
With neither, **the row stays `unresolved`** — record in the note what the
archive did establish, because that is still a finding.
* `tls-san` — the certificate served on the domain carries a SAN or CN for
**another organisation's domain**, i.e. that organisation terminates TLS for
this host and holds the private key. Strong technical evidence of operation,
not of ownership; acceptable only as corroboration, never alone.
**Never** Wikipedia, Crunchbase, ZoomInfo, PitchBook, Owler, Tracxn, LinkedIn,
BBC/TechCrunch-style press coverage, "list of acquisitions" pages, SEO
listicles, WHOIS *aggregators* (whoisxmlapi, whois.domaintools, who.is — these
are not the registry), Netify/similar traffic-classification vendors, or AI
summaries. Use them to locate a lead; the URL you record must be one of the
kinds above.
**Fetch with `curl`, and grep the raw bytes for your quote.** A `WebFetch`
summary is a paraphrase, not a quote, and a paraphrase in quotation marks has
already been published from this project once by mistake. Use:
curl -sL --max-time 30 -A 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0 Safari/537.36' '<url>' | sed 's/<[^>]*>/ /g' | grep -i '<needle>'
If a site is Cloudflare-walled, `WebFetch` may still work for locating the lead,
but the quote must be confirmed against raw bytes. If you cannot confirm it,
the row is unresolved.
## Verdict vocabulary — unchanged from the first pass
* `current` — the list names the company that owns/operates the domain
today. A legal name and its trading brand for the *same*
company both count ("Stripe" / "Stripe, Inc").
* `stale` — the list names a real *former* owner, or a former name of
the company: ownership or the name has since changed.
* `granularity` — correct but at a different level of the corporate tree (it
names the ultimate parent where a live subsidiary or brand
operates the domain, or vice versa). Not an error.
* `error` — the list names an entity that was never the owner at any
time. A law firm that appears only as the registrant's
contact, a registrar, or a hosting provider is an `error`,
not a `granularity`.
* `absent` — the list has no entry for this domain. (Given to you below;
do not change it.)
* `unknown` — you could not settle it.
Prefer `current` over `granularity` when the named entity is a live, correct
name for the business behind the domain. Use `granularity` only when a reader
would be misled about *which* company.
**`self-named` is retired — do not use it.** If a list's entity name is just the
domain or its bare label (`km0trk.com`, `htplayground.com`, `ContentABC`,
`StackTrack`, `I.UA`), judge it as an ownership claim like any other: if a real
company of that name operates the domain it is `current`; if the label happens
to match nothing real it is `error`; if you cannot tell, `unknown`. Say in the
note that the name is the domain label.
## What you return
Write **one JSON file**, nothing else — no prose in it, no markdown fence.
One object per domain you were given, all of them, in the order given.
```json
[{
"domain": "example.com",
"owner_today": "Legal Name Inc. (Brand)",
"when_changed": "closed 2022-06-06" | "n/a -- independent" | "UNRESOLVED -- <why>",
"source": "https://...",
"source_kind": "newsroom|filing|legal-doc|register|parent-site|domain-register|archived-legal-doc",
"quote": "<= 200 chars copied VERBATIM from the raw bytes of that URL",
"corroboration": "second URL + one line on what it adds, or null",
"webXray": "current|stale|granularity|error|absent|unknown",
"tracker_radar": "...",
"disconnect": "...",
"resolution": "resolved" | "unresolved",
"route": "register-by-number | rdap-history | archived-legal | live-source | none",
"note": "2-4 sentences: what you fetched, what settled it or what stopped you,
and anything a reader checking this row needs. If still unresolved,
say exactly which of the three routes you tried and what each returned."
}]
```
Rules:
* `source` must be a URL **you fetched in this session**; `quote` must appear
verbatim in its raw bytes.
* If `resolution` is `unresolved`, set every list verdict to `unknown` except
where the value given to you below is `absent` — keep `absent` as given.
* Do not change an `absent` verdict. It is a fact about the list's file,
already established, and it is not yours to revise.
* Budget your effort by prevalence: the domains are given in descending
prevalence order and the first ones matter most to the encounter-weighted
estimate. But answer all of them.
* Being unable to resolve a row is a real result. Roughly a third of these are
genuinely dead domains with no archived legal page and a redacted registry
record; if that is what you find, say so precisely.
D. scripts/owner_tail_merge.py — the gate for a partial re-adjudication
A second pass over 40 of 175 rows has failure modes the full merge does not: a row silently re-adjudicated outside the residue, a row moving back to unresolved, an absent verdict revised. It asserts the other 135 rows come through field-identical and counts the new source kinds separately, so the page can state how many rows rest on the weaker bar rather than implying none do.
- owner_tail_merge.py
#!/usr/bin/env python3 """Merge the 2026-09-11 second-pass adjudication of the 40 unresolved rows back into the 175-row set, and refuse anything the estimator would swallow. python3 owner_tail_merge.py --sample out/owner_sample.json \ --base out/adj_rows_scored.json --tail out/tail40.json \ --dir out/tail_adj --out out/adj_rows_tail.json Why a second merge script rather than re-running ``owner_merge_rows.py``: that script merges a *complete* set of batches covering every sampled domain, and fails when rows are missing. This pass covers exactly the 40 rows that were in the residue and must leave the other 135 byte-identical. The gates it adds are about that asymmetry: * the tail batches cover **exactly** the residue set -- no extra domain, no missing one, so the pass cannot quietly re-adjudicate a row that was already settled; * the 135 untouched rows are compared field by field against the base file and any difference is fatal; * a row may move unresolved -> resolved. It may **not** move the other way, and a list verdict that was ``absent`` may not change to anything else: ``absent`` is a fact about the list's file, established by ``owner_merge_rows.py`` against the file itself, and is not the second pass's to revise; * ``self-named`` is rejected outright: the verdict was retired on 2026-09-05 and ``owner_random_sample.py`` exits fatally if one survives, so catching it here names the batch that produced it instead; * a ``resolved`` row must carry a source, a quote and a ``source_kind`` in the vocabulary, and the three source kinds introduced by this pass (``domain-register``, ``archived-legal-doc``, ``tls-san``) are counted separately and printed, because they are a weaker or differently-shaped bar than the first pass used and the page has to say how many rows rest on them. """ import argparse, glob, json, os, sys from collections import Counter VERDICTS = {"current", "stale", "granularity", "error", "absent", "unresolved", "unknown"} KINDS_2026_09_05 = {"newsroom", "filing", "legal-doc", "register", "parent-site"} KINDS_NEW = {"domain-register", "archived-legal-doc", "tls-san"} LK = {"webXray": "webXray", "tracker_radar": "Tracker Radar", "disconnect": "Disconnect"} FIELDS = ("domain", "owner_today", "when_changed", "source", "quote", "webXray", "tracker_radar", "disconnect", "resolution", "note") def main(): ap = argparse.ArgumentParser() for a in ("sample", "base", "tail", "dir", "out"): ap.add_argument("--" + a, required=True) args = ap.parse_args() S = json.load(open(args.sample)) claims = {r["domain"]: r for r in S["union"]} base = {r["domain"]: r for r in json.load(open(args.base))} residue = [t["domain"] for t in json.load(open(args.tail))] residue_set = set(residue) rows, seen, problems = {}, {}, [] for f in sorted(glob.glob(os.path.join(args.dir, "result*.json"))): for r in json.load(open(f)): d = r["domain"] if d in seen: problems.append(f"duplicate row for {d} ({seen[d]} and {os.path.basename(f)})") continue seen[d] = os.path.basename(f) r["_tail_batch"] = os.path.basename(f) rows[d] = r missing = sorted(residue_set - set(rows)) extra = sorted(set(rows) - residue_set) if missing: problems.append(f"residue domains with no second-pass row: {', '.join(missing)}") if extra: problems.append(f"second-pass rows for domains NOT in the residue: {', '.join(extra)}") kinds, routes, moved = Counter(), Counter(), [] for d in residue: if d not in rows: continue r, b = rows[d], base[d] for k in FIELDS: if k not in r: problems.append(f"{d}: missing field {k} (from {seen[d]})") r.setdefault(k, None) for k in LK: v = r.get(k) if v == "self-named": problems.append(f"{d}: {k}='self-named' -- the verdict was retired on 2026-09-05") elif v not in VERDICTS: problems.append(f"{d}: verdict {k}={v!r} outside the vocabulary") if b[k] == "absent" and v != "absent": problems.append(f"{d}: {k} was absent in the base rows and this pass set {v!r};" " absent is a fact about the list file, not a finding") if b[k] != "absent" and v == "absent": problems.append(f"{d}: {k} set to absent but the base rows say {b[k]!r}") # cross-check absent against the list file itself, as owner_merge_rows.py does c = claims[d] for k, lab in LK.items(): has = c[lab] is not None if r.get(k) == "absent" and has: problems.append(f"{d}: {lab} scored absent but the file says {c[lab]!r}") if r.get(k) not in (None, "absent") and not has: problems.append(f"{d}: {lab} scored {r.get(k)!r} but the file has no entry") if b["resolution"] != "unresolved": problems.append(f"{d}: base resolution is {b['resolution']!r}, not unresolved -- " "this row should not have been in the second pass") if r["resolution"] == "resolved": if not (r.get("source") and r.get("quote")): problems.append(f"{d}: resolution=resolved but source/quote empty") kind = r.get("source_kind") if kind not in KINDS_2026_09_05 | KINDS_NEW: problems.append(f"{d}: source_kind={kind!r} outside the vocabulary") kinds[kind] += 1 routes[r.get("route")] += 1 moved.append(d) elif r["resolution"] == "unresolved": for k in LK: if r.get(k) not in ("absent", "unknown"): problems.append(f"{d}: resolution=unresolved but {k}={r.get(k)!r};" " an unresolved row may only carry absent or unknown") else: problems.append(f"{d}: resolution={r['resolution']!r} is neither resolved nor unresolved") # ---- the 135 untouched rows must come through byte-identical ------------- merged, drift = [], [] for d, b in base.items(): if d in rows: new = dict(b) new.update({k: v for k, v in rows[d].items() if k != "_batch"}) merged.append(new) else: merged.append(b) for m in merged: if m["domain"] in residue_set: continue if m != base[m["domain"]]: drift.append(m["domain"]) if drift: problems.append(f"rows outside the residue changed: {', '.join(drift)}") print(f"second-pass batches: {len(set(seen.values()))}, rows: {len(rows)}") print(f"residue size: {len(residue_set)}; missing: {len(missing)}; unsampled: {len(extra)}") print(f"rows moved unresolved -> resolved: {len(moved)} of {len(residue_set)}") if moved: print(" " + ", ".join(sorted(moved))) print(f"still unresolved: {len(residue_set) - len(moved)}") print("\nsource kinds of the newly resolved rows " "(the three marked NEW are a bar the 2026-09-05 pass did not use):") for k, n in sorted(kinds.items(), key=lambda x: -x[1]): print(f" {k:22} {n:3}" + (" NEW" if k in KINDS_NEW else "")) print("\nroute that settled each newly resolved row:") for k, n in sorted(routes.items(), key=lambda x: -x[1]): print(f" {str(k):22} {n:3}") if problems: print(f"\nPROBLEMS ({len(problems)}):") for p in problems: print(" " + p) merged.sort(key=lambda r: r["domain"]) json.dump(merged, open(args.out, "w"), indent=1, ensure_ascii=False) print(f"\nwrote {args.out} ({len(merged)} rows)") return 1 if problems else 0 if __name__ == "__main__": sys.exit(main())
E. scripts/owner_tail_corrections.py — the six rows fixed by hand
Each with what was re-fetched, the exact command where it matters, and which direction the change moves the rate. One verdict changed, i.ua, and it moves Disconnect up.
- owner_tail_corrections.py
#!/usr/bin/env python3 """The second pass's rows that a machine flagged and a human then re-checked. python3 owner_tail_corrections.py --rows out/adj_rows_tail.json \ --out out/adj_rows_tail_final.json Same shape and the same three actions as ``owner_corrections.py`` from the 2026-09-05 sitting, plus two this pass needed: keep the citation holds; the automated checker could not see it, and the reason is a property of the checker or of the transport, not of the evidence. resource the claim holds but the row cited the wrong document for it. rescore the adjudicator's verdict is wrong on the brief's own rules. demote no primary source survives a second look; the row leaves every rate. Every entry states what was re-fetched, the exact command where that matters, and which direction the change moves the list's rate -- because five of the six below move a rate **up**, and a page that does not say so is a page that hides its own thumb on the scale. """ import argparse, json, sys # domain -> (action, {field: new value}, reason) CORRECTIONS = { "app-us1.com": ("resource", { "source": "whois://whois.markmonitor.com/app-us1.com", "source_kind": "domain-register", "quote": "Registrant Organization: ActiveCampaign, LLC", "corroboration": ( "https://marketing.app-us1.com/apps/workable-integration -- serves " "ActiveCampaign's own integration-marketing page and carries " "<link rel=\"canonical\" href=\"https://www.activecampaign.com/apps/" "workable-integration\" />, confirmed in the raw bytes on 2026-09-11. " "Demoted from source to corroboration because that URL now returns " "HTTP 404: a 404 body is not a legal document."), }, "The cited page is a 404 whose only evidence is a <link> tag, which " "the quote checker normalises to the empty string and reports as " "NOQUOTE -- so the row's only citation was one the checker cannot " "see, on a page that does not exist. Re-issued the registrar WHOIS " "query live (whois.markmonitor.com, port 43): the registrant " "organisation is un-redacted and names ActiveCampaign, LLC. The " "verdict does not change; the evidence under it does, from a 404 " "page to the registry record. Rate effect: none."), "blogblog.com": ("resource", { "source": "whois://whois.markmonitor.com/blogblog.com", }, "The row's source URL was prose -- 'whois://blogblog.com (registrar " "WHOIS, whois.markmonitor.com)' -- which no client can dereference, " "so it FETCHFAILed. Rewritten in the whois://<server>/<domain> form " "the checker parses and re-queried live: 'Registrant Organization: " "Google LLC'. Same record, same quote, a URL that resolves. Rate " "effect: none."), "ksearchnet.com": ("resource", { "source": "tls://eucs23v2.ksearchnet.com:443", }, "The row cites an OV certificate's validated O= field -- which the " "brief accepts as register-grade -- but gave the https:// URL of the " "host, which now returns HTTP 404, so the checker fetched a 404 body " "and looked for a certificate subject in it. Repointed to the " "tls:// form the checker handles. Handshake redone 2026-09-11: " "subject=C=FI, ST=Uusimaa, O=Klevu Oy, CN=*.ksearchnet.com, issuer " "Sectigo Public Server Authentication CA OV R36. Rate effect: none."), "i.ua": ("rescore", { "owner_today": "ТОВ «КЕПРЕЙТ ПАРТНЕРС» (LLC Keprait Partners), Ukrainian " "register code 33500955", "source": "https://help.i.ua/agreement/", "source_kind": "legal-doc", "quote": "ТОВ «КЕПРЕЙТ ПАРТНЕРС», далі- «Адміністрація») порталу I.UA", "corroboration": ( "https://help.i.ua/privacy-policy/ -- the same entity and register " "code: 'Керування цим Сайтом здійснюється ТОВ «КЕПРЕЙТ ПАРТНЕРС», " "реєстраційний код: 33500955'. The port-43 registry record " "(whois://whois.ua/i.ua) names a DIFFERENT organisation, 'Digital " "Ventures LLC', which is why this row is the pass's own " "counter-example to the domain-register source kind."), "disconnect": "current", "route": "live-source", }, "Two things were wrong. (1) The row rested on the WHOIS registrant, " "'Digital Ventures LLC'. The portal's own user agreement names a " "different company as its administration -- ТОВ «КЕПРЕЙТ ПАРТНЕРС», " "register code 33500955 -- so on this domain the registrant of " "record is NOT the operator. That is the single most important " "finding about the domain-register source kind this pass added, and " "it is kept in the residue notes rather than smoothed away. (2) The " "adjudicator scored Disconnect's entry 'I.UA' as error because the " "registrant's name differs from it. But the brief scores a trading " "brand for the same business as current, and the operator's own " "agreement calls the property 'порталу I.UA' -- the portal I.UA. " "error means 'never the owner at any time', which this is not. " "Rescored current. Rate effect: moves Disconnect UP, which is the " "self-serving direction, so the alternative reading is published " "beside it and the sensitivity run reports what happens without it."), "adgrx.com": ("keep", {}, "FETCHFAIL 'HTTP 000' is the TLS layer, not the citation: " "samsungads.ca serves an expired certificate, so curl refuses it and " "the checker never sees a body. Re-fetched by hand with --insecure on " "2026-09-11: HTTP 200, 46,160 bytes, and the quoted row " "'adgrx.com</span></td><td><span style=\"font-weight: 400;\">" "ADGRX_UID</span>' is byte-verbatim in it. The checker is deliberately " "NOT given an --insecure retry: an ownership citation whose host " "identity cannot be validated should surface, not be swallowed. Same " "call the 2026-09-11 inter-rater pass made on its own expired-cert row."), "sa-as.com": ("keep", {}, "NOTFOUND was a cached rate-limit stub, not a bad citation. " "whois.markmonitor.com answers the fourth rapid query with a record " "that has no registrant block, and the checker cached it. Re-queried " "25 seconds later: 3,357 bytes, 'Registrant Organization: FoundryCo, " "Inc.' present. owner_verify_sources.py now refuses to cache a whois " "answer under 400 bytes or one that does not name the queried domain, " "and blogblog.com hit the same stub. The row still rests on an " "UNCORROBORATED registrant organisation and is counted as such."), } def main(): ap = argparse.ArgumentParser() ap.add_argument("--rows", required=True) ap.add_argument("--out", required=True) args = ap.parse_args() rows = json.load(open(args.rows)) by = {r["domain"]: r for r in rows} missing = sorted(set(CORRECTIONS) - set(by)) if missing: sys.exit(f"FATAL: corrections for domains not in the rows: {missing}") print("=" * 78) print("Hand corrections to the 2026-09-11 second pass") print("=" * 78) counts = {} for d, (action, fields, reason) in CORRECTIONS.items(): r = by[d] counts[action] = counts.get(action, 0) + 1 print(f"\n--- {d} [{action}]") for k, v in fields.items(): print(f" {k}: {r.get(k)!r}") print(f" -> {v!r}") r[k] = v if not fields: print(" (no field changed)") print(f" why: {reason}") print("\n" + "-" * 78) print("actions: " + ", ".join(f"{k}={v}" for k, v in sorted(counts.items()))) verdict_changes = [d for d, (a, f, _) in CORRECTIONS.items() if any(k in ("webXray", "tracker_radar", "disconnect") for k in f)] print(f"rows whose VERDICT changed: {len(verdict_changes)} " f"({', '.join(verdict_changes) or 'none'})") json.dump(rows, open(args.out, "w"), indent=1, ensure_ascii=False) print(f"wrote {args.out} ({len(rows)} rows)") return 0 if __name__ == "__main__": sys.exit(main())
F. scripts/report_tail_pass.py — what the second pass changed
Imports the estimator from owner_random_sample.py rather than rewriting it, and asserts its own per-list eligible counts against section A of both estimator outputs before printing anything. Its docstring carries the limit that matters: the rows a second pass recovers are the easier end of the residue, so its comparison tests the recovered rows and cannot bound what is left.
- report_tail_pass.py
#!/usr/bin/env python3 """What the 2026-09-11 second pass over the residue changed, and whether the rows it recovered look like the rows that were already there. python3 report_tail_pass.py --sample out/owner_sample.json \ --before out/adj_rows_scored.json --after out/adj_rows_tail_final.json \ --before-output out/owner_random_sample-output.txt \ --after-output out/owner_random_sample-tail-output.txt The published accuracy rates are conditional on the entry being *adjudicable*. 40 of the 175 sampled domains were not, 42 of the 180 draws, and the share rises toward the prevalence tail -- 11 of webXray's 60, 13 of Tracker Radar's, 18 of Disconnect's. The worry that motivates this script is one-directional: if the rows that could not be settled are systematically *worse* than the rows that could, every rate is flattered, and nothing inside the original sample can say. A second pass with harder sourcing gives a partial answer, and only a partial one: it shrinks the region nothing can speak for, without putting a bound on what is left inside it. The rows it recovers are, by construction, the **easier end of the residue** -- the ones a register number or an archived legal page could reach. Whatever is still unresolved after it is harder still, so the comparison below is a test of the recovered rows, not of the residue. It can show that the recovered rows are worse (which would support the worry) or that they are not (which weakens it without closing it). It cannot bound what is left. The estimator itself is imported from ``owner_random_sample.py`` rather than rewritten, so there is one estimator and not two; and this script's own per-list eligible counts are asserted against the counts parsed out of the estimator's committed output, so a divergence in how "eligible" is computed fails here instead of producing two plausible tables. """ import argparse, importlib.util, json, math, os, random, re, sys from collections import Counter HERE = os.path.dirname(os.path.abspath(__file__)) spec = importlib.util.spec_from_file_location("ors", os.path.join(HERE, "owner_random_sample.py")) ors = importlib.util.module_from_spec(spec) spec.loader.exec_module(ors) LISTS, KEY, INELIGIBLE = ors.LISTS, ors.KEY, ors.INELIGIBLE GOOD = {"current", "granularity"} BAD = {"stale", "error"} def eligible(S, ROWS): """Exactly owner_random_sample.py's rule, per list: (strata, names, unresolved).""" out = {} for lab in LISTS: elig = [[] for _ in range(4)] names = [[] for _ in range(4)] unres = [] for r in S["lists"][lab]["rows"]: row = ROWS[r["domain"]] v = row[KEY[lab]] h = r["stratum"] - 1 if v in ("unresolved", "unknown") or row["resolution"] != "resolved" or v in INELIGIBLE: unres.append((h, r["domain"], v)) else: elig[h].append((r["prevalence"], v)) names[h].append(r["domain"]) out[lab] = (elig, names, unres) return out def fisher_two_sided(a, b, c, d): """Exact two-sided p for the 2x2 table [[a,b],[c,d]], summing tables no more likely than the observed one. Same convention as the Fisher tests already on the page.""" n = a + b + c + d r1, r2, c1 = a + b, c + d, a + c def p(x): return (math.comb(r1, x) * math.comb(r2, c1 - x)) / math.comb(n, c1) obs = p(a) lo, hi = max(0, c1 - r2), min(r1, c1) return min(1.0, sum(p(x) for x in range(lo, hi + 1) if p(x) <= obs * (1 + 1e-9))) def parse_eligible(path): """Section A of the estimator's output: drawn / unresolved / eligible.""" txt = open(path, encoding="utf8").read() got = {} for lab in LISTS: m = re.search(r"^" + re.escape(lab) + r"\s+(\d+)\s+(\d+)\s+(\d+)\s", txt, re.M) if not m: sys.exit(f"FATAL: section A of {path} has no row for {lab}") got[lab] = (int(m.group(1)), int(m.group(2)), int(m.group(3))) return got def pct(x): return " n/a " if x is None else f"{100*x:.1f}%" def main(): ap = argparse.ArgumentParser() for a in ("sample", "before", "after", "before-output", "after-output"): ap.add_argument("--" + a, required=True) args = ap.parse_args() S = json.load(open(args.sample)) B = {r["domain"]: r for r in json.load(open(args.before))} A = {r["domain"]: r for r in json.load(open(args.after))} eb, ea = eligible(S, B), eligible(S, A) # ---- guard: our "eligible" must be the estimator's ----------------------- for path, ours in ((getattr(args, "before_output"), eb), (getattr(args, "after_output"), ea)): theirs = parse_eligible(path) for lab in LISTS: mine = sum(len(x) for x in ours[lab][0]) if mine != theirs[lab][2]: sys.exit(f"FATAL: {lab} eligible is {mine} here and {theirs[lab][2]} in {path}; " "the two definitions of 'eligible' have diverged and nothing below is safe") print("guard: this script's eligible counts match section A of both estimator outputs.\n") print("=" * 78) print("The second pass over the residue: what it recovered, and what it looks like") print("=" * 78) # ---- A. what moved ------------------------------------------------------- print("\n--- A. Rows recovered, per list and per prevalence quartile -----------") print("\n'Recovered' = a row that was in the residue and now carries a verdict for") print("this list. A row can be recovered for one list and remain absent for another.") print(f"\n{'List':14} {'drawn':>6} {'eligible before':>16} {'after':>7} {'recovered':>10} per quartile (eligible/drawn), after") for lab in LISTS: nb = sum(len(x) for x in eb[lab][0]) na = sum(len(x) for x in ea[lab][0]) per = [] for h in range(4): drawn = sum(1 for r in S["lists"][lab]["rows"] if r["stratum"] == h + 1) per.append(f"Q{h+1} {len(ea[lab][0][h])}/{drawn}") print(f"{lab:14} {len(S['lists'][lab]['rows']):>6} {nb:>16} {na:>7} {na-nb:>10} " + " ".join(per)) # ---- B. are the recovered rows worse? ------------------------------------ print("\n--- B. Are the recovered rows worse than the rows already in the rates? ---") print("\nRaw counts, unweighted, because this is a comparison between two groups of") print("drawn rows and not an estimate for the list. Fisher's exact, two-sided. A") print("significantly worse recovered group would support the worry that the rates") print("are flattered.") print() print("**Both metrics, because the answer depends on which one you ask.** The first") print("version of this script tested current+granularity here and current-only in") print("section E2 -- each the choice that makes its own claim mildest -- and did not") print("say so. A review pass caught it. Neither metric is privileged: `current` is") print("the stricter reading, `current+granularity` is the one the content page says") print("is right when the unit of analysis is 'which company'.") for metric, pick in (("current only", lambda v: v == "current"), ("current+granularity", lambda v: v in GOOD)): print(f"\n metric: {metric}") print(f" {'List':14} {'already-eligible good/n':>24} {'recovered good/n':>18} {'p (Fisher)':>11}") pooled = [0, 0, 0, 0] for lab in LISTS: old_names = {d for st in eb[lab][1] for d in st} og = on = rg = rn = 0 for h in range(4): for (p_, v), d in zip(ea[lab][0][h], ea[lab][1][h]): if d in old_names: on += 1; og += pick(v) else: rn += 1; rg += pick(v) if rn == 0: print(f" {lab:14} {f'{og}/{on}':>24} {'0/0':>18} {'n/a':>11}") continue p = fisher_two_sided(og, on - og, rg, rn - rg) pooled[0] += og; pooled[1] += on - og; pooled[2] += rg; pooled[3] += rn - rg print(f" {lab:14} {f'{og}/{on}':>24} {f'{rg}/{rn}':>18} {p:>11.3f}") if pooled[2] + pooled[3]: p = fisher_two_sided(*pooled) print(f" {'pooled':14} {f'{pooled[0]}/{pooled[0]+pooled[1]}':>24} " f"{f'{pooled[2]}/{pooled[2]+pooled[3]}':>18} {p:>11.3f}") print("\nThe pooled row counts a domain once per list that drew it, so it is not an") print("independent test; it is printed as a summary of direction, not as evidence.") # ---- C. verdict mix ------------------------------------------------------ print("\n--- C. Verdict mix of the recovered rows, per list --------------------") for lab in LISTS: old_names = {d for st in eb[lab][1] for d in st} c = Counter(v for h in range(4) for (p_, v), d in zip(ea[lab][0][h], ea[lab][1][h]) if d not in old_names) print(f" {lab:14} " + (" ".join(f"{k}={n}" for k, n in sorted(c.items())) or "<none recovered>")) # ---- D. the worst case, recomputed -------------------------------------- print("\n--- D. The worst case, before and after -------------------------------") print("\nAssume every row still unresolved is stale -- the adversarial bound the") print("content page already quotes. Unweighted, over each list's 60 drawn rows.") print("Two conventions, because the content page's published bound counts") print("`current` ONLY, and a reader comparing the two would otherwise find") print("figures that do not match: 58.3 / 58.3 / 65.0 is the current-only column.") print(f"\n{'List':14} {'current-only before':>20} {'after':>7} " f"{'+granularity before':>20} {'after':>7} {'unresolved':>11}") for lab in LISTS: n = len(S["lists"][lab]["rows"]) row = [] for pick in (lambda v: v == "current", lambda v: v in GOOD): gb = sum(1 for h in range(4) for _, v in eb[lab][0][h] if pick(v)) ga = sum(1 for h in range(4) for _, v in ea[lab][0][h] if pick(v)) row += [100 * gb / n, 100 * ga / n] print(f"{lab:14} {row[0]:>19.1f}% {row[1]:>6.1f}% " f"{row[2]:>19.1f}% {row[3]:>6.1f}% {len(ea[lab][2]):>11}") # ---- D2. every error verdict, named -------------------------------------- print("\n--- D2. Every `error` verdict in the sample, before and after ----------") print() print("The content page names these individually, so they are listed rather than") print("counted. An `error` is a list naming an entity that was never the owner.") for lab in LISTS: for tag, E in (("before", eb), ("after", ea)): names = [d for h in range(4) for (p_, v), d in zip(E[lab][0][h], E[lab][1][h]) if v == "error"] n = sum(len(x) for x in E[lab][0]) print(f" {lab:14} {tag:6} {len(names)} of {n} eligible" + (": " + ", ".join(sorted(names)) if names else "")) # ---- E. rate movement, from the one estimator --------------------------- print("\n--- E. Rate movement, computed with owner_random_sample.py's estimator ---") print("\nImported, not reimplemented -- the point estimator is owner_random_sample.py's") print("own `strat_estimate`. **Point estimates only.** The 95% intervals are in the") print("estimator's own output and nowhere else: its bootstrap draws for several") print("verdicts from one generator, so re-running it here from a generator seeded") print("identically prints a different interval for the same estimate.") for lab in LISTS: L = S["lists"][lab] w = list(zip(L["strata_N"], L["strata_mass"])) print(f"\n{lab}") print(f" {'verdict':14} {'domain before':>14} {'domain after':>13} {'delta':>7} " f"{'enc. before':>12} {'enc. after':>11} {'delta':>7}") for v, f in (("current", lambda x: x == "current"), ("granularity", lambda x: x == "granularity"), ("stale", lambda x: x == "stale"), ("error", lambda x: x == "error"), ("current+gran.", lambda x: x in GOOD), ("stale+error", lambda x: x in BAD)): db, pb = ors.strat_estimate(eb[lab][0], w, f) da, pa = ors.strat_estimate(ea[lab][0], w, f) print(f" {v:14} {pct(db):>14} {pct(da):>13} {100*(da-db):>+6.1f} " f"{pct(pb):>12} {pct(pa):>11} {100*(pa-pb):>+6.1f}") # No interval is printed here. The bootstrap is stochastic and the # estimator draws for several verdicts from ONE generator, so calling it # again from a fresh generator seeded identically produces a DIFFERENT # interval for the same estimate -- 61.7-85.5 here against 61.6-85.3 # there. Two published intervals for one number is exactly the defect # this file exists to prevent, and a review pass found it. The intervals # are in owner_random_sample.py's own output and nowhere else. # ---- E2. the pairwise tests the content page publishes ------------------- print("\n--- E2. The three pairwise comparisons, recomputed ---------------------") print() print("The content page tests each pair on the eligible RAW counts, `current`") print("only, Fisher's exact two-sided, with a Bonferroni threshold of 0.0167 for") print("three tests on one sample. Before and after, so a reader can see whether") print("the second pass changed which comparisons survive.") print() raw = {} for lab in LISTS: for tag, E in (("before", eb), ("after", ea)): n = sum(len(x) for x in E[lab][0]) g = sum(1 for h in range(4) for _, v in E[lab][0][h] if v == "current") gg = sum(1 for h in range(4) for _, v in E[lab][0][h] if v in GOOD) raw[(lab, tag)] = (g, n) raw[(lab, tag, "gran")] = (gg, n) print(f" {'List':14} {'current/eligible before':>24} {'after':>12} {'raw % before':>13} {'after':>7}") for lab in LISTS: gb, nb = raw[(lab, "before")] ga, na = raw[(lab, "after")] print(f" {lab:14} {f'{gb}/{nb}':>24} {f'{ga}/{na}':>12} " f"{100*gb/nb:>12.1f}% {100*ga/na:>6.1f}%") print() print("**The result depends on the metric, and publishing only one of them was") print("this script's most misleading omission.** Counting `granularity` as") print("acceptable -- which the content page says is right when the unit of analysis") print("is 'which company' rather than 'which legal entity' -- BOTH Disconnect") print("comparisons clear Bonferroni, before and after, and the second pass overturns") print("nothing. On `current` only, Disconnect-versus-webXray stops clearing it.") print("Report both or report neither.") for metric, key in (("current only", None), ("current+granularity", "gran")): print(f"\n metric: {metric}") print(f" {'Pair':34} {'p before':>9} {'p after':>9} survives 0.0167 before / after?") for a, b in (("Disconnect", "webXray"), ("Disconnect", "Tracker Radar"), ("Tracker Radar", "webXray")): ka = (a, "before") if key is None else (a, "before", key) kb = (b, "before") if key is None else (b, "before", key) ga, na = raw[ka]; gb, nb = raw[kb] pb = fisher_two_sided(ga, na - ga, gb, nb - gb) ka = (a, "after") if key is None else (a, "after", key) kb = (b, "after") if key is None else (b, "after", key) ga2, na2 = raw[ka]; gb2, nb2 = raw[kb] pa = fisher_two_sided(ga2, na2 - ga2, gb2, nb2 - gb2) print(f" {a + ' vs ' + b:34} {pb:>9.3f} {pa:>9.3f} " f"{'yes' if pb < 0.0167 else 'no':>3} / {'yes' if pa < 0.0167 else 'no'}" f" ({ga2}/{na2} vs {gb2}/{nb2})") # ---- E3. sensitivity: drop the weakest-sourced recovered rows ------------ print("\n--- E3. Sensitivity: the recovered rows that rest on the weakest source ---") print() weak = sorted(d for d, r in A.items() if r.get("source_kind") == "domain-register" and not r.get("corroboration") and r["resolution"] == "resolved") print(f"{len(weak)} recovered row(s) rest on an UNCORROBORATED registrant organisation") print("in registry or registrar WHOIS -- a source kind the 2026-09-05 pass did not") print("use, self-asserted by the registrant and validated by nobody. One row in this") print("pass, i.ua, showed exactly why: its registrant of record is not its operator,") print("and it was re-sourced to the portal's own user agreement. The count here is") print("computed from the rows, not typed, so re-sourcing a row removes it from the") print("list below rather than leaving the sentence stale. This drops every remaining") print("such row back to unresolved and re-runs the estimator.") print() print(" dropped: " + (", ".join(weak) or "<none>")) NEWKINDS = {"domain-register", "archived-legal-doc", "tls-san"} allnew = sorted(d for d, r in A.items() if r.get("source_kind") in NEWKINDS and r["resolution"] == "resolved") def run(dropped, label, note): A2 = {d: (dict(r, resolution="unresolved") if d in dropped else r) for d, r in A.items()} e2 = eligible(S, A2) print(f"\n {label} ({len(dropped)} row(s): {', '.join(dropped) or 'none'})") print(f" {note}") print(f" {'List':14} {'eligible':>9} {'current raw':>13} {'current (domain)':>17} " f"{'vs. full pass':>14}") rawc = {} for lab in LISTS: w = list(zip(S["lists"][lab]["strata_N"], S["lists"][lab]["strata_mass"])) d2, _ = ors.strat_estimate(e2[lab][0], w, lambda x: x == "current") da, _ = ors.strat_estimate(ea[lab][0], w, lambda x: x == "current") n = sum(len(x) for x in e2[lab][0]) g = sum(1 for h in range(4) for _, v in e2[lab][0][h] if v == "current") rawc[lab] = (g, n) print(f" {lab:14} {n:>9} {f'{g}/{n}':>13} {pct(d2):>17} " f"{100*(d2-da):>+13.1f}") for a, b in (("Disconnect", "webXray"), ("Disconnect", "Tracker Radar")): ga, na = rawc[a]; gb, nb = rawc[b] pv = fisher_two_sided(ga, na - ga, gb, nb - gb) print(f" {a} vs {b}, current only: p = {pv:.3f} " f"({'survives' if pv < 0.0167 else 'does not survive'} 0.0167)") run(weak, "1. uncorroborated registrant organisation only", "the narrowest reading: a row whose ONLY evidence is a registrant name nobody validated.") run(allnew, "2. EVERY row resting on a source kind the first pass did not accept", "the same-bar comparison: what the rates would be if the second pass had used\n" " the first pass's bar exactly and settled only what that bar could reach.") run(["i.ua"], "3. the i.ua rescore, under the reading this run rejected", "if 'I.UA' is held to name no company at all, the row is an error rather than\n" " current, which is the reading the hand correction argued against. Dropping the\n" " row entirely is the conservative stand-in, since scoring it `error` would lower\n" " Disconnect further than dropping it does.") # ---- F. what is still unresolved ---------------------------------------- print("\n--- F. Residue after the second pass, printed in full -----------------") print() still = set() for lab in LISTS: for h, d, v in ea[lab][2]: if A[d]["resolution"] == "resolved": continue # eligible for another list; not residue for this one by verdict still.add(d) print(f" {lab:14} Q{h+1} {d:26} {v:9} {(A[d].get('route') or '-'):18} " f"{(A[d].get('note') or '')[:70]}") print(f"\n distinct domains still unresolved: {len(still)} of 175 sampled " f"({len(still)/175:.1%}); was 40 ({40/175:.1%})") return 0 if __name__ == "__main__": sys.exit(main())
G. scripts/check_tail_figures.py — the page-versus-report guard
The companion to section L for the second pass's own figures. The residue list is checked as one contiguous run rather than domain by domain, because the mutation harness caught a deletion surviving on a mention elsewhere in the same paragraph.
- check_tail_figures.py
#!/usr/bin/env python3 """Assert that every second-pass figure on a page matches ``report_tail_pass.py``'s own output. python3 check_tail_figures.py --page pages/own_tail.txt \ --output out/report_tail_pass-output.txt Companion to ``check_owner_sample_figures.py``, which covers the estimator's figures. This one covers the figures that exist only because of the 2026-09-11 second pass: what it recovered, what it did to each rate, the two Fisher comparisons it changed, the source-kind split and the sensitivity run. Same limits as its companion, and they are worth restating rather than assumed: it compares a page to a tool, so a bug **inside** ``report_tail_pass.py`` passes every assertion here, and so does a correct figure attached to the wrong sentence. It is proved to bite by ``check_tail_figures_mutations.sh``; without that harness a guard is a claim about a guard. Every check fails if the figure is **missing** from the page as well as if it disagrees, because a guard that passes because its needle was deleted asserts nothing. """ import argparse, re, sys def main(): ap = argparse.ArgumentParser() ap.add_argument("--page", required=True) ap.add_argument("--output", required=True) ap.add_argument("--corrections", default=None, help="out/owner_tail_corrections-output.txt, for the " "hand-changed verdict count the report cannot produce") args = ap.parse_args() page = open(args.page, encoding="utf8").read() out = open(args.output, encoding="utf8").read() fails, checked = [], 0 def need(what, needle): nonlocal checked checked += 1 if needle not in page: fails.append(f"{what}: {needle!r} is not on the page") # ---- A. recovered rows, from section A ----------------------------------- secA = re.findall(r"^(webXray|Tracker Radar|Disconnect)\s+60\s+(\d+)\s+(\d+)\s+(\d+)\s", out, re.M) if len(secA) != 3: sys.exit("FATAL: section A of the report did not parse; nothing below was checked") before = " / ".join(b for _, b, _, _ in secA) after = " / ".join(a for _, _, a, _ in secA) need("eligible before", before) need("eligible after", "**" + after + "**") # ---- B. the recovered-versus-existing test ------------------------------- # Section B prints ONE BLOCK PER METRIC since 2026-09-11 (a review pass found # that the script tested current+granularity here and current-only in E2 -- # each the choice that made its own claim mildest -- and said neither). # Parse per metric and check both, or a metric switch could go unnoticed # exactly as it did the first time. blocks = {} for mb in re.finditer(r"^ metric: (.+)$((?:\n(?! metric:).*)+)", out, re.M): rows = re.findall(r"^ *(webXray|Tracker Radar|Disconnect)\s+(\d+)/(\d+)\s+" r"(\d+)/(\d+)\s+([\d.]+)\s*$", mb.group(2), re.M) if len(rows) == 3 and mb.group(1) not in blocks: blocks[mb.group(1).strip()] = rows if len(blocks) != 2: sys.exit(f"FATAL: section B of the report did not parse: " f"{len(blocks)} metric block(s), expected 2 ({sorted(blocks)})") # The page publishes the current+granularity counts verbatim ("11 of 12 # against 41 of 42"), so those are checked as literal substrings. gran = [k for k in blocks if "gran" in k] if len(gran) != 1: sys.exit(f"FATAL: no current+granularity block in section B: {sorted(blocks)}") for lab, og, on, rg, rn, pv in blocks[gran[0]]: need(f"{lab} recovered good/n (current+gran)", f"{rg} of {rn}") need(f"{lab} already-eligible good/n (current+gran)", f"{og} of {on}") need(f"{lab} Fisher p (recovered vs existing, current+gran)", f"{float(pv):.2f}") # The current-only Disconnect figures are quoted in a possessive phrasing # ("9 of Disconnect's 12 ... against 39 of its previous 42"), so they are # checked by regex rather than as a literal. Both must be on the page: the # whole point of the fix is that the page names which metric it is using. conly = [k for k in blocks if "gran" not in k] if len(conly) != 1: sys.exit(f"FATAL: no current-only block in section B: {sorted(blocks)}") for lab, og, on, rg, rn, pv in blocks[conly[0]]: if lab != "Disconnect": continue checked += 2 if not re.search(rf"\b{rg}\b[^.]{{0,40}}\b{rn}\b", page): fails.append(f"{lab} recovered good/n (current only): " f"{rg} .. {rn} is not on the page") if not re.search(rf"\b{og}\b[^.]{{0,40}}\b{on}\b", page): fails.append(f"{lab} already-eligible good/n (current only): " f"{og} .. {on} is not on the page") # ---- D. the worst case, both conventions --------------------------------- secD = re.findall(r"^(webXray|Tracker Radar|Disconnect)\s+([\d.]+)%\s+([\d.]+)%\s+" r"([\d.]+)%\s+([\d.]+)%\s+(\d+)\s*$", out, re.M) if len(secD) != 3: sys.exit("FATAL: section D of the report did not parse") need("worst case before (current-only)", " / ".join(b for _, b, _, _, _, _ in secD).replace(" / ", "% / ") + "%") need("worst case after (current-only)", " / ".join(a for _, _, a, _, _, _ in secD[:2]) .replace(" / ", "% / ") + "% / **" + secD[2][2] + "%**") need("unresolved per list, after", ", ".join(n for *_, n in secD[:2]) + " and " + secD[2][5]) # ---- D2. the error verdicts ---------------------------------------------- err = re.findall(r"^ (webXray|Tracker Radar|Disconnect)\s+after\s+(\d+) of (\d+) eligible", out, re.M) if len(err) != 3: sys.exit("FATAL: section D2 of the report did not parse") m = re.search(r"^ Tracker Radar after\s+(\d+) of (\d+) eligible: (.+)$", out, re.M) need("Tracker Radar error count", f"**{m.group(1)} of {m.group(2)}**") for d in m.group(3).split(", "): need(f"Tracker Radar error domain {d}", f"''{d}''") m = re.search(r"^ Disconnect after\s+(\d+) of (\d+) eligible: (.+)$", out, re.M) need("Disconnect error count", f"**{m.group(1)} of {m.group(2)}**") for d in m.group(3).split(", "): need(f"Disconnect error domain {d}", f"''{d}''") # ---- E2. the pairwise comparisons ---------------------------------------- # Sliced out of the report by heading rather than matched across the whole # file: section B prints rows in the same shape, and a regex over the whole # output silently took whichever came last. mE2 = re.search(r"^--- E2\..*?$(.*?)^--- E3\.", out, re.M | re.S) if not mE2: sys.exit("FATAL: section E2 of the report did not parse: no E2..E3 slice") e2 = mE2.group(1) secE2 = re.findall(r"^ (Disconnect vs webXray|Disconnect vs Tracker Radar|" r"Tracker Radar vs webXray)\s+([\d.]+)\s+([\d.]+)\s+" r"(yes|no) / (yes|no)\s", e2, re.M) # Two metric blocks since 2026-09-11, three pairs each. if len(secE2) != 6: sys.exit(f"FATAL: section E2 of the report did not parse: " f"{len(secE2)} pair row(s), expected 6") def need_p(what, value): """A p-value may appear at three or two decimals: the page writes 0.031 and 0.083 in full but 0.83 rather than 0.831, and forcing one form would make the guard fail on a page that is right. Both forms are accepted and a page carrying NEITHER still fails, which is the property that matters.""" nonlocal checked checked += 1 forms = {f"{float(value):.3f}", f"{float(value):.2f}"} if not any(f in page for f in forms): fails.append(f"{what}: p {value} is not on the page in any of {sorted(forms)}") for pair, pb, pa, sb, sa in secE2: need_p(f"{pair}: p after", pa) need_p(f"{pair}: p before", pb) raw = dict((lab, (g, n)) for lab, g, n in re.findall( r"^ (webXray|Tracker Radar|Disconnect)\s+\d+/\d+\s+(\d+)/(\d+)\s", e2, re.M)) if len(raw) != 3: sys.exit("FATAL: section E2's raw-count table did not parse") for lab, (g, n) in raw.items(): need(f"{lab} current/eligible after", f"{g} of {n}") # ---- E3. the sensitivity runs -------------------------------------------- # THREE runs since 2026-09-11, not one. A review pass found that publishing # only the narrowest of them (2 rows of the 11 that rest on the new bar) and # calling it "moves nothing" left the same-bar comparison -- the one that # answers the objection -- unpublished, and left the i.ua alternative # reading promised in the correction log but never computed. All three are # checked here so dropping one back out of the page fails the guard. mE3 = re.search(r"^--- E3\..*?$(.*?)^--- F\.", out, re.M | re.S) if not mE3: sys.exit("FATAL: section E3 of the report did not parse: no E3..F slice") e3 = mE3.group(1) m = re.search(r"^ dropped: (.+)$", e3, re.M) if not m: sys.exit("FATAL: section E3 of the report did not parse: no 'dropped:' line") for d in m.group(1).split(", "): need(f"sensitivity dropped {d}", f"''{d}''") runs = re.split(r"^ (\d)\. ", e3, flags=re.M)[1:] runs = [(runs[i], runs[i + 1]) for i in range(0, len(runs), 2)] if len(runs) != 3: sys.exit(f"FATAL: section E3 has {len(runs)} sensitivity run(s), expected 3") rates = {} for num, body in runs: rows = re.findall(r"^ (webXray|Tracker Radar|Disconnect)\s+\d+\s+\d+/\d+\s+" r"([\d.]+)%\s+([+-][\d.]+)\s*$", body, re.M) if len(rows) != 3: sys.exit(f"FATAL: E3 run {num}'s delta table did not parse " f"({len(rows)} rows)") rates[num] = rows # run 1: the page quotes the deltas, not the rates. MINUS = "\u2212" # the page uses U+2212, the script's output ASCII '-' need("sensitivity run 1 deltas", ", ".join(lab + " " + d.replace("-", MINUS) for lab, _, d in rates["1"])) # run 2: the same-bar comparison. The page quotes rate AND delta per list. for lab, pct, d in rates["2"]: need(f"same-bar run: {lab} rate", f"{pct}%") need(f"same-bar run: {lab} delta", "(" + d.replace("-", MINUS) + ")") # run 3: the i.ua alternative reading. Only Disconnect moves. d3 = dict((lab, pct) for lab, pct, _ in rates["3"]) need("i.ua alternative reading: Disconnect rate", f"{d3['Disconnect']}%") # ---- F. the remaining residue, every domain named ------------------------- m = re.search(r"distinct domains still unresolved: (\d+) of 175 sampled \(([\d.]+)%\);" r" was (\d+) \(([\d.]+)%\)", out) if not m: sys.exit("FATAL: section F's summary line did not parse") need("residue after", f"**{m.group(1)} distinct domains of the 175**") need("residue after share", m.group(2) + "%") need("residue before", m.group(3) + " (" + m.group(4) + "%)") residue = sorted(set(re.findall(r"^ (?:webXray|Tracker Radar|Disconnect)\s+Q\d\s+(\S+)", out.split("--- F.")[1], re.M))) if len(residue) != int(m.group(1)): sys.exit(f"FATAL: section F lists {len(residue)} domains but claims {m.group(1)}") # As ONE contiguous run, not domain by domain. Checking them individually # lets a deletion from the enumerated list survive on a mention elsewhere in # the same paragraph: the mutation harness caught exactly that, deleting # ``mmstat.com`` from the list while a later sentence still named it, and the # guard passed. A contiguous run also asserts the ORDER and the separators, # so a domain dropped from the middle cannot be masked by one added at the end. need("the residue list, in full and in order", ", ".join(f"''{d}''" for d in residue)) for d in residue: need(f"residue domain {d}", f"''{d}''") # ---- G. SUPERSEDED figures must be ABSENT -------------------------------- # Every check above asserts a correct figure is PRESENT. That is only half # of what a page can get wrong, and on 2026-09-11 it was the wrong half: # the page's headline recommendation box carried 94.4% and 73.7% -- the # pre-second-pass rates -- while both guards exited 0, because the correct # 89.2% and 73.9% were present two sections away. Three review passes each # found it independently; neither guard could. # # A superseded value may legitimately appear in a //before// column, a # historical reviewer log, a published diff or a mutation harness's own # output, so absence is asserted **per line**: the line must either name the # new value too, or be marked as historical. That rule is narrow enough to # bite and wide enough not to forbid an honest before/after table. # ``^[<>] `` is a unified-diff line and nothing else. An earlier version # wrote ``^\s*[<>|]``, which exempted **every table row on the page** -- and # the before/after table is a table, so two of the three mutations that # reintroduce a superseded rate walked straight through the check that # exists to catch exactly them. Caught by the mutation harness, which is the # only reason this comment is here rather than a second silent guard. HIST = re.compile(r"//was |before the second pass|\bwas \d|2026-09-05 pass|" r"^[<>] |mutate |^caught ", re.I) sup = {} for lab, (g, n) in raw.items(): m2 = re.search(r"^ " + re.escape(lab) + r"\s+(\d+)/(\d+)\s", out, re.M) sup[f"{m2.group(1)} of {m2.group(2)}"] = f"{g} of {n}" for lab, b_, a_, _, _, _ in secD: sup[f"{b_}%"] = f"{a_}%" # Section E's per-list rate table is where the HEADLINE rates move, and the # first version of this check did not read it -- so it did not bite on the # very page state that motivated it (94.4% in the recommendation box). The # control for this check is therefore: run it against the pre-fix export and # watch it fail. If it passes there, it is asserting nothing. # Only the ``current`` and ``current+gran.`` rows. The granularity, stale and # error sub-rates are single-digit percentages -- 0.0%, 2.8%, 4.4%, 4.5% -- # and they collide with unrelated figures all over a 66 kB page: sweeping # them produced five false positives on a correct page and would have # trained the next run to ignore this check. The headline rate is what a # recommendation box quotes, and it is what went stale. for verdict, db, da, eb_, ea_ in re.findall( r"^ (current|current\+gran\.)\s+([\d.]+)%\s+([\d.]+)%\s+[+-][\d.]+\s+" r"([\d.]+)%\s+([\d.]+)%\s+[+-][\d.]+\s*$", out, re.M): for b_, a_ in ((db, da), (eb_, ea_)): if b_ != a_: sup[f"{b_}%"] = f"{a_}%" # Figures the REPORT does not produce, but the page carries and this sitting # moved. Section G can only sweep what the report prints, and the total # number of hand-changed verdicts is not one of those: it is the first # sitting's 29 plus whatever this one re-scored. It went stale in exactly # the way this check exists to stop -- the page carried it TWICE, the round # four patch fixed one copy, and the site-wide sweep found the other. So it # is derived here from the corrections script's own output rather than # typed, and both directions are asserted. if args.corrections: ctext = open(args.corrections, encoding="utf8").read() mres = re.search(r"^actions: .*rescore=(\d+)", ctext, re.M) if not mres: sys.exit("FATAL: could not read the rescore count from " f"{args.corrections}") prior = 29 # the 2026-09-05 sitting's own hand changes total = prior + int(mres.group(1)) need("hand-changed verdicts, total", f"{total} of the 525") sup[f"{prior} of the 525"] = f"{total} of the 525" # **p-values are deliberately NOT swept for absence.** They are written at # two or three decimals interchangeably, and a two-decimal form is a prefix # of other numbers on the page: "0.025" rounds to "0.03", which matches # inside "0.031", and "0.014" rounds to "0.01", which matches inside the # Bonferroni threshold "0.0167". Every one of those is a false positive on a # correct page, and a guard that cries wolf is a guard the next run turns # off. The p-values are covered by the presence checks above and by the # page's own explicit before/after column. # Values collected above are `str`; the p-value entries are `set`. Normalise # so the loop below has one shape. sup = {k: (v if isinstance(v, set) else {v}) for k, v in sup.items()} for old_s, new_forms in sup.items(): # A digit or a dot immediately before the match means this is the tail of # a longer number -- "2.4%" inside "92.4%" -- and not the figure at all. pat = re.compile(r"(?<![\d.])" + re.escape(old_s)) for line in page.splitlines(): if pat.search(line) and not any(f in line for f in new_forms) \ and not HIST.search(line): checked += 1 fails.append(f"superseded figure {old_s!r} on a line that does not also " f"carry any of {sorted(new_forms)} and is not marked " f"historical: {line.strip()[:120]!r}") checked += len(sup) print(f"checked {checked} figures from {args.output} against {args.page}") if fails: for f in fails: print(" FAIL " + f) sys.exit(f"\n{len(fails)} figure(s) on the page do not match the report") print("all present and matching") return 0 if __name__ == "__main__": sys.exit(main())
H. scripts/check_tail_merge_mutations.sh — proving the merge gate bites
Eleven corruptions of one adjudication batch, one gate each: a verdict outside the vocabulary, the retired self-named verdict returning, an absent revised in either direction, a resolved row with no source or no quote, a bogus source_kind, an unresolved row still carrying a verdict, a dropped row, a duplicate, and a row for a domain outside the residue. The gate exiting 0 on the real run means nothing until it has been seen to exit non-zero.
- check_tail_merge_mutations.sh
#!/bin/bash # Prove that owner_tail_merge.py's gates actually reject a corrupt second pass. # # The gate is the only thing standing between a sub-agent's JSON and the # published rates, and it exited 0 on the real run -- which tells you nothing # unless it can be seen to exit non-zero. Each mutation below corrupts one # adjudication file in one way the gate claims to catch, and asserts it fails. # # bash scripts/check_tail_merge_mutations.sh set -u TMP=$(mktemp -d) pass=0; fail=0 run() { # run the gate over a mutated copy of out/tail_adj python3 scripts/owner_tail_merge.py --sample out/owner_sample.json \ --base out/adj_rows_scored.json --tail out/tail40.json \ --dir "$TMP/adj" --out "$TMP/rows.json" >"$TMP/log" 2>&1 } mutate() { desc="$1"; jqprog="$2" rm -rf "$TMP/adj"; cp -r out/tail_adj "$TMP/adj" jq "$jqprog" out/tail_adj/result1.json > "$TMP/adj/result1.json" || { echo "BROKEN $desc (jq failed)"; fail=$((fail+1)); return; } if cmp -s out/tail_adj/result1.json "$TMP/adj/result1.json"; then echo "BROKEN $desc -- the jq changed nothing, so this asserts nothing" fail=$((fail+1)); return fi if run; then echo "SURVIVED $desc"; fail=$((fail+1)) else echo "caught $desc [$(grep -m1 -oE ' [a-z0-9.-]+: .*' "$TMP/log" | head -c 110)]" pass=$((pass+1)) fi } mutate "a verdict outside the vocabulary" '[.[] | if .domain=="wishabi.com" then .webXray="probably" else . end]' mutate "the retired self-named verdict returns" '[.[] | if .domain=="wishabi.com" then .disconnect="self-named" else . end]' mutate "an absent verdict revised to current" '[.[] | if .domain=="htplayground.com" then .webXray="current" else . end]' mutate "a real verdict downgraded to absent" '[.[] | if .domain=="wishabi.com" then .webXray="absent" else . end]' mutate "resolved with no source" '[.[] | if .domain=="wishabi.com" then .source=null else . end]' mutate "resolved with no quote" '[.[] | if .domain=="wishabi.com" then .quote="" else . end]' mutate "a source_kind outside the vocabulary" '[.[] | if .domain=="wishabi.com" then .source_kind="vibes" else . end]' mutate "unresolved but still carrying a verdict" '[.[] | if .domain=="1rx.io" then .tracker_radar="current" else . end]' mutate "a row dropped from the batch" '[.[] | select(.domain!="wishabi.com")]' mutate "a duplicate row" '. + [.[0]]' mutate "a row for a domain not in the residue" '[.[] | if .domain=="wishabi.com" then .domain="gstatic.com" else . end]' echo echo "mutations caught: $pass; survived or broken: $fail" rm -rf "$TMP" [ "$fail" -eq 0 ]
I. scripts/check_tail_figures_mutations.sh — proving that guard bites
Fifteen corruptions, one figure each, twelve changes and three deletions. One survived the first run and that is why the residue check above is a contiguous run.
- check_tail_figures_mutations.sh
#!/bin/bash # Prove that check_tail_figures.py actually rejects a wrong page. # # A guard that has never been observed to fail asserts nothing, and this # repository has published one that did not. Each mutation below corrupts the # page by exactly one figure and asserts the guard exits non-zero. The last two # are DELETIONS rather than changes, because the failure mode that matters most # is a guard passing because the string it was looking for is no longer there. # # LIMIT, stated because it was observed here: check_tail_figures.py asks whether # a figure is PRESENT. A page that carries a figure twice and gets one copy # wrong still passes it, so two mutations below need the sed `g` flag to assert # anything at all -- without it they corrupt the first copy and the guard reads # the second and is content. That hole is real and is covered by a different # tool: scripts/sweep_moved_figures.py scans every page in the wiki for every # superseded value, which is how the four surviving copies of the pre-second- # pass rates were found on 2026-09-11. Do not expect this harness to find them. # # bash scripts/check_tail_figures_mutations.sh set -u PAGE=${1:-pages/own_tail7.txt} OUT=out/report_tail_pass-output.txt CORR=out/owner_tail_corrections-output.txt TMP=$(mktemp -d) pass=0; fail=0 mutate() { desc="$1"; shift sed "$@" "$PAGE" > "$TMP/p.txt" if cmp -s "$PAGE" "$TMP/p.txt"; then echo "BROKEN $desc -- the sed changed nothing, so this asserts nothing" fail=$((fail+1)); return fi if python3 scripts/check_tail_figures.py --page "$TMP/p.txt" --output "$OUT" \ --corrections "$CORR" >/dev/null 2>&1; then echo "SURVIVED $desc" fail=$((fail+1)) else echo "caught $desc" pass=$((pass+1)) fi } # --- changed figures --------------------------------------------------------- mutate "eligible after 56 / 56 / 54 -> 56 / 56 / 53" 's|\*\*56 / 56 / 54\*\*|**56 / 56 / 53**|' mutate "Disconnect recovered 11 of 12 -> 12 of 12" 's|11 of 12|12 of 12|g' mutate "webXray recovered-vs-existing p 0.64 -> 0.04" 's|0\.64|0.04|' mutate "Disconnect vs webXray p 0.031 -> 0.013" 's|0\.031|0.013|' mutate "Tracker Radar vs webXray p 0.83 -> 0.53" 's|0\.83 |0.53 |' mutate "Disconnect current/eligible 48 of 54 -> 49 of 54" 's|48 of 54|49 of 54|' mutate "worst case after 80.0% -> 84.0%" 's|\*\*80\.0%\*\*|**84.0%**|' mutate "residue 12 distinct domains -> 11" 's|\*\*12 distinct domains of the 175\*\*|**11 distinct domains of the 175**|' mutate "residue share 6.9% -> 5.9%" 's|6\.9%|5.9%|' mutate "sensitivity delta Tracker Radar −0.6 -> −1.6" 's|Tracker Radar −0\.6|Tracker Radar −1.6|' mutate "Tracker Radar error count 3 of 56 -> 2 of 56" 's|\*\*3 of 56\*\*|**2 of 56**|' mutate "Disconnect error count 1 of 54 -> 2 of 54" 's|\*\*1 of 54\*\*|**2 of 54**|' # --- deletions --------------------------------------------------------------- mutate "delete the residue domain ''mmstat.com''" "s|''mmstat.com''||" mutate "delete the sensitivity-dropped ''sa-as.com''" "s|''sa-as.com''||" mutate "delete the error domain ''km0trk.com''" "s|''km0trk.com''||g" # --- the three sensitivity runs (E3), added 2026-09-11 after the generic pass - # The page used to publish only the narrowest of the three and call it "moves # nothing". These assert that the same-bar run and the i.ua alternative reading # cannot quietly leave the page again. mutate "same-bar Tracker Radar 72.1% -> 72.6%" 's|72\.1%|72.6%|' mutate "same-bar Disconnect 89.0% -> 89.5%" 's|89\.0%|89.5%|' mutate "same-bar Tracker Radar delta (−1.8) -> (−1.9)" 's|(−1\.8)|(−1.9)|' mutate "delete the same-bar Disconnect delta (−0.2)" 's|(−0\.2)||' mutate "i.ua alternative reading 88.6% -> 87.6%" 's|88\.6%|87.6%|' # --- superseded figures reintroduced (section G of the guard) ----------------- # These are the mutations the guard could NOT catch before 2026-09-11: three # review passes each reported, independently, that the page's recommendation box # carried the pre-second-pass rates while both guards exited 0. mutate "reintroduce the superseded Disconnect rate 89.2% -> 94.4%" 's|\*\*89\.2%\*\*|94.4%|' mutate "reintroduce the superseded Tracker Radar rate 73.9% -> 73.7%" 's|73\.9% | 73.7% |' mutate "reintroduce the superseded webXray encounter rate 93.8% -> 93.9%" 's|\*\*93\.8%\*\*|93.9%|' # This one is a single copy of a figure the page carries TWICE. It is the drift # the site-wide sweep found after round four had fixed the other copy, and the # guard could not see it because the report script does not print the quantity. mutate "revert ONE copy of the hand-changed count 30 -> 29 of the 525" 's|30 of the 525|29 of the 525|' echo echo "mutations caught: $pass; survived or broken: $fail" rm -rf "$TMP" [ "$fail" -eq 0 ]
J. Unedited output: scripts/check_tail_merge_mutations.sh
Run as bash scripts/check_tail_merge_mutations.sh.
caught a verdict outside the vocabulary [ wishabi.com: verdict webXray='probably' outside the vocabulary] caught the retired self-named verdict returns [ wishabi.com: disconnect='self-named' -- the verdict was retired on 2026-09-05] caught an absent verdict revised to current [ htplayground.com: webXray was absent in the base rows and this pass set 'current'; absent is a fact about th] caught a real verdict downgraded to absent [ wishabi.com: webXray set to absent but the base rows say 'unknown'] caught resolved with no source [ wishabi.com: resolution=resolved but source/quote empty] caught resolved with no quote [ wishabi.com: resolution=resolved but source/quote empty] caught a source_kind outside the vocabulary [ wishabi.com: source_kind='vibes' outside the vocabulary] caught unresolved but still carrying a verdict [ 1rx.io: resolution=unresolved but tracker_radar='current'; an unresolved row may only carry absent or unknow] caught a row dropped from the batch [] caught a duplicate row [] caught a row for a domain not in the residue [] mutations caught: 11; survived or broken: 0
K. Unedited output: scripts/owner_tail_probe.sh, all 40 residue domains
Run as bash scripts/owner_tail_probe.sh out/tail40.json out/tail_probe.
==============================================================================
=== 1rx.io
==============================================================================
TLS: <no handshake>|
RDAP-registrant:
RDAP-registrar:
RDAP-events:
RDAP-status:
RDAP-ns:
WHOIS:
--- whois 1rx.io @ whois.nic.io
Domain Name: 1rx.io
Registrar WHOIS Server: whois.godaddy.com
Registrar URL: http://www.godaddy.com/domains/search.aspx?ci=8990
Updated Date: 2026-08-12T11:26:08Z
Creation Date: 2015-05-28T23:01:41Z
Registry Expiry Date: 2028-05-28T23:01:41Z
Registrar: GoDaddy.com, LLC
Registrar IANA ID: 146
Registrar Abuse Contact Email: abuse@godaddy.com
Registrar Abuse Contact Phone: +1.4806242505
Domain Status: ok https://icann.org/epp#ok
Registry Registrant ID: REDACTED
Registrant Name: REDACTED
Registrant Organization: Domains By Proxy, LLC
Registrant Street: REDACTED
Registrant City: REDACTED
Registrant State/Province: Arizona
Registrant Postal Code: REDACTED
Registrant Country: US
Registrant Phone: REDACTED
Registrant Phone Ext: REDACTED
Registrant Fax: REDACTED
Registrant Fax Ext: REDACTED
Registrant Email: REDACTED
Registry Admin ID: REDACTED
Admin Name: REDACTED
Admin Organization: REDACTED
Admin Street: REDACTED
Admin City: REDACTED
Admin State/Province: REDACTED
Admin Postal Code: REDACTED
Admin Country: REDACTED
Admin Phone: REDACTED
Admin Phone Ext: REDACTED
Admin Fax: REDACTED
Admin Fax Ext: REDACTED
Admin Email: REDACTED
Registry Tech ID: REDACTED
Tech Name: REDACTED
Tech Organization: REDACTED
Tech Street: REDACTED
Tech City: REDACTED
Tech State/Province: REDACTED
Tech Postal Code: REDACTED
REGISTER-ID (live page): <none>
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
20210903102435 https://a-ams.1rx.io/rtbdeliver/js?excid=smartadserver&pickup=420d86898060135cb520636c27422c5c&zrk=9a96a840e23eeb92ba2f877db9d93305&zds=8c273b49fab9f6e0afb705a66cc8e9cb&imp=c6bf810261e9064c5a87ac87ea498aaa&zwp=2.1312&bet=MTYzMDY2NTg3MzY2OA&pv=1&prc=ZX0.3870153442345454&pg=https%3A%2F%2Fwww.wowhead.com%2Faboutus&pgao=https%3A%2F%2Fwww.wowhead.com&refer=none 200
20191224034829 https://a-ams.1rx.io/rtbdeliver/js?excid=betweenexchange&pickup=a4db4256f6ee903a1b40650616468630&zrk=f27077b22268c6c1ae62f0ced3cb0903&zds=4079b822620d2a0ede1646c83d1607f7&imp=08933b74351986b236e9af8bc8fa4158&zwp=0.5592&pv=1&prc=ZX0.284964915867445&pg=about%3Asrcdoc&pgao=https%3A%2F%2Fbryansk.aif.ru&refer=none 200
20200326143807 https://a-ams.1rx.io/rtbdeliver/js?excid=betweenexchange&pickup=8284981657d12607f8d74952272118d2&zrk=1dfd39e95741a8ce887618d39b3434e2&zds=44413a59d14d48062620968990638b1a&imp=0e3d96c2aed61333d12a275adedd8101&zwp=0.0732&pv=1&prc=ZX0.18828376115521905&pg=about%3Asrcdoc&pgao=https%3A%2F%2Fwww.delfi.lt&refer=none 200
20200322144901 https://a-ams.1rx.io/rtbdeliver/js?excid=betweenexchange&pickup=edd082041b8e79f96dcc8be56eaca1d2&zrk=65259104a21c132099e52f2e20b40c0a&zds=ddc2eddf1b4b76f78c6c4f704b1f2065&imp=115f237eb9639940cd50c086eae39f92&zwp=1.4264&pv=1&prc=ZX0.3032588329437602&pg=about%3Asrcdoc&pgao=https%3A%2F%2Fwww.delfi.lt&refer=none 200
20200329210951 https://a-ams.1rx.io/rtbdeliver/js?excid=betweenexchange&pickup=e2ab8390a5ad8fd850b05ad8ee91f620&zrk=8651810db60007f97c79a8213af2c1b7&zds=21e904bcc6cbd8e637ec4e583012c611&imp=238e1955e9890f5fb210d3a748ce0fbf&zwp=0.774&pv=1&prc=ZX0.11927546356801355&pg=about%3Asrcdoc&pgao=https%3A%2F%2Fwww.delfi.lt&refer=none 200
20200410202909 https://a-ams.1rx.io/rtbdeliver/js?excid=betweenexchange&pickup=1d9915e023b91e554381e0289b91e461&zrk=fd10843ee7bf02b6befffacc12c47f39&zds=6f79cd3ca1f09d271141862892c35ea4&imp=2fdfdbc6247a73dc98a5da1451215af1&zwp=0.774&pv=1&prc=ZX0.5794706779300052&pg=about%3Asrcdoc&pgao=https%3A%2F%2Fwww.delfi.lt&refer=none 200
20200326210048 https://a-ams.1rx.io/rtbdeliver/js?excid=betweenexchange&pickup=0189d9bec1575d29f49340e99660ac74&zrk=d50a17f97927986180b4a39ecb10ed25&zds=2900a31e3904561b175772e396e30f18&imp=36519eae4fde4eeb8a92f7bfd240050a&zwp=0.0725&pv=1&prc=ZX0.11496168246529925&pg=about%3Asrcdoc&pgao=https%3A%2F%2Fwww.delfi.lt&refer=none 200
20200410202913 https://a-ams.1rx.io/rtbdeliver/js?excid=betweenexchange&pickup=723ebd19c0d9b203f52886fa7c475c5e&zrk=28bfc978e73f821143b90da9c3baddc4&zds=6f79cd3ca1f09d271141862892c35ea4&imp=46c8c90d67c9ea9a45453109d24a7818&zwp=0.774&pv=1&prc=ZX0.7691804304921277&pg=about%3Asrcdoc&pgao=https%3A%2F%2Fwww.delfi.lt&refer=none 200
20200410202923 https://a-ams.1rx.io/rtbdeliver/js?excid=betweenexchange&pickup=05782bc62756dfa358536f439d4d3959&zrk=e5241c4013badb31bb69d815f5cf156b&zds=6f79cd3ca1f09d271141862892c35ea4&imp=71dd1cfc088577b0ef10ed1bae199d15&zwp=0.774&pv=1&prc=ZX0.510489409481667&pg=about%3Asrcdoc&pgao=https%3A%2F%2Fwww.delfi.lt&refer=none 200
20200224074235 https://a-ams.1rx.io/rtbdeliver/js?excid=betweenexchange&pickup=d4725c9f9c2ebe93493d7ae9c90c44d8&zrk=cc2b0f4cac29ba88a1512721d98f3406&zds=59eca6207f25c3ebbd32e1075bc5d168&imp=74dbd2da9c610d414dc16ebf46bee44d&zwp=1.3888&pv=1&prc=ZX0.8812005975308863&pg=about%3Asrcdoc&pgao=https%3A%2F%2Fwww.delfi.lt&refer=none 200
20200326204138 https://a-ams.1rx.io/rtbdeliver/js?excid=betweenexchange&pickup=ab3ccfdd49df0f1e6498a2a740084484&zrk=85e4a4728470cf2fe993f5eb972396d7&zds=3ea4c01568d9550e19a293e2526759a5&imp=7644567d1c196d2f61af67cc2f0bd97d&zwp=0.3873&pv=1&prc=ZX0.050326733789958444&pg=about%3Asrcdoc&pgao=https%3A%2F%2Fwww.delfi.lt&refer=none 200
20200329221416 https://a-ams.1rx.io/rtbdeliver/js?excid=betweenexchange&pickup=579424826200961bfe3b41eb78ea347c&zrk=9b6c70b758f3e129ac94f9e29251df31&zds=05727ae79d929a0b71b4c21290e8243d&imp=7f1eb713b99657b8108e25a1259c6b4e&zwp=1.374&pv=1&prc=ZX0.4656028778189303&pg=about%3Asrcdoc&pgao=https%3A%2F%2Fwww.delfi.lv&refer=none 200
WAYBACK-root (every distinct body of the root page, with status):
<none>
WAYBACK-inventory (distinct URLs ever captured, any status):
<none>
==============================================================================
=== agkn.com
==============================================================================
TLS: <no handshake>|
RDAP-registrant:
RDAP-registrar: GoDaddy Corporate Domains, LLC
RDAP-events: registration=2005-06-09T22:54:35Z expiration=2027-09-02T03:59:59Z last changed=2026-08-02T23:18:53Z last update of RDAP database=2026-09-11T18:35:29Z
RDAP-status: client transfer prohibited
RDAP-ns: pdns196.ultradns.biz,pdns196.ultradns.co.uk,pdns196.ultradns.com,pdns196.ultradns.info,pdns196.ultradns.net,pdns196.ultradns.org
WHOIS:
--- whois agkn.com @ whois.verisign-grs.com
Domain Name: AGKN.COM
Registrar WHOIS Server: whois.brandsight.com
Registrar URL: http://gcd.com
Updated Date: 2026-08-02T23:18:53Z
Creation Date: 2005-06-09T22:54:35Z
Registry Expiry Date: 2027-09-02T03:59:59Z
Registrar: GoDaddy Corporate Domains, LLC
Registrar IANA ID: 3786
Registrar Abuse Contact Email: abuse@gcd.com
Registrar Abuse Contact Phone: +1.5189669187
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
unsolicited, commercial advertising or solicitations via e-mail, telephone,
Registrars.
--- whois agkn.com @ whois.brandsight.com
Domain Name: agkn.com
Registrar WHOIS Server: whois.brandsight.com
Registrar URL: https://gcd.com
Updated Date: 2026-08-02T23:18:53Z
Creation Date: 2005-06-09T22:54:35Z
Registrar Registration Expiration Date: 2027-09-02T03:59:59Z
Registrar: GoDaddy Corporate Domains, LLC
Registrar IANA ID: 3786
Registrar Abuse Contact Email: abuse@gcd.com
Registrar Abuse Contact Phone: +1.5188315864
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Registry Registrant ID: Not Available From Registry
Registrant Name: Brandsight Privacy Customer 319339
Registrant Organization:
Registrant Street: PO Box 190899
Registrant City: Boise
Registrant State/Province: ID
Registrant Postal Code: 83719
Registrant Country: US
Registrant Phone: +1.2084252575
Registrant Phone Ext:
Registrant Fax:
Registrant Fax Ext:
REGISTER-ID (live page): <none>
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
20161014024049 http://www.agkn.com:80/privacy.html 200
20200604135110 https://aa.agkn.com/adscores/g.js?sid=9212281248&pageid=https://web.archive.org/web/20160316033108/https://www.allstate.com/about/board-of-directors.aspx&_=1458099073372&&bounced=1 200
20200127132509 https://aa.agkn.com/adscores/g.js?sid=9212281988&page=https://www.hyundaiusa.com/about-hyundai/news/index.aspx?intcmp=footer+nav&bottom=&text=&news=&&bounced=1 200
20211001002753 http://aa.agkn.com/adscores/g.js?sid=9212268928&page=www.neustar.biz%2Fabout-us%2Fleadership%2Fexecutive-profiles&&bounced=1 200
20190721182301 https://aa.agkn.com/adscores/g.js?sid=9212281248&pageid=https://www.allstate.com/about.aspx&&bounced=1 200
20170225011303 https://aa.agkn.com/adscores/g.js?sid=9212284698&page=https://web.archive.org/web/20161107071654/https://www.cricketwireless.com/legal-info/acceptable-use-policy.html&_=1487985168773 200
20210531202603 https://aa.agkn.com/adscores/g.js?sid=9212284698&page=https%3A%2F%2Fwww.cricketwireless.com%2Flegal-info%2Fdevice-unlock-policy.html&_=1499753979457 200
20210531202540 https://aa.agkn.com/adscores/g.js?sid=9212284698&page=https%3A%2F%2Fwww.cricketwireless.com%2Flegal-info%2Fdevice-unlock-policy.html&_=1499753982568 200
20171016023132 https://aa.agkn.com/adscores/g.js?sid=9212284698&page=https%3A%2F%2Fweb.archive.org%2Fweb%2F20171001014929%2Fhttps%3A%2F%2Fwww.cricketwireless.com%2Fterms&_=1508121083431 200
20210516003357 https://aa.agkn.com/adscores/g.js?sid=9212284698&page=https%3A%2F%2Fwww.cricketwireless.com%2Flegal-info%2Fdevice-unlock-policy.html&_=1547922013820 200
20200902200324 https://aa.agkn.com/adscores/g.js?sid=9212284698&page=https%3A%2F%2Fwww.cricketwireless.com%2Flegal-info%2Fdevice-unlock-policy.html&_=1547922017170 200
20190218001223 https://aa.agkn.com/adscores/g.js?sid=9212284698&page=http%3A%2F%2Fweb.archive.org%2Fweb%2F20171001014933%2Fhttps%3A%2F%2Fwww.cricketwireless.com%2Fcontactus&_=1550448739858 200
WAYBACK-root (every distinct body of the root page, with status):
<html><head><meta charset="UTF-8"><title>Internet Archive: Temporarily Offline</title><style>p{font-size:24px;}img{margin-bottom:2rem;}</style></head>
<body style="padding:30px 0;">
<div style="float:left;width:260px;text-align:center;">
<img xsrc="logo_ia.jpg" src="data:image/jpeg;base64,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">
<img xsrc="logo_wm.png" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJgAAAA3BAMAAAACpp4pAAAAMFBMVEX///+nKC4CBAROUFDAwMD4+PiGhoatNjzBaGzY2Nj47u/KfYHXnaDt1NX05OW0RUolqTtyAAAF00lEQVR42u2XT2jbVhzHf60tZfLS4HcICuTg8uQZ0kMwVmpIDkNz4sJyGGKNs3Zkm7ATQ8cY1cmFMWofSk3HmHGawnoya1JGV0J8G2u7NoeOQls6H0Z2WMBd1q49bGtPLRuj+/2eJP+JUy9ddxns5yC9f/rqo+/7vScFQNGNvoylWFJG10tKRh/BFt2Au3E4BaI6reujgHFmDJwuCGT0ujRu9Y1h/TXYeBnkuhiJkV6C8m5/FA6l7xqQePUbbDkZAYXDOIiqfGp4lsb5wqbowtLIRhI2xvxDWE+BEoF5MVKI4U11FMOCCeWFFBYkHQJ6FMVEVd4tCTIdnC740QiUwBc9SGLYpkPWGYmRAThVPinEsG12jm4fBuXQ0LiokhhQ7EvURRdSJIHw9g3TxdhWGnVHCo153yiJmdiWxbZErARKVJ93q/JLQmzkM0t04cHA6rQWd8l2HrLckShuwrykWVTAthLJ+6Io9nrcrcp7aZgSz+wVXfiYV4ksqgw718iRpDtSiG9A2iMzfsLC4hD0RWVNVD0y2RKGL+Jh51iggmJ+l8zP62IkFTMW3DXphpkK0cZNGL+jQ98c6G5VHhNiCxAH6qIEyRjY6t+DF+PDSdguRuIpRX8Ub4JTk85BACRUdqpuMYADRBeWD57Gnmb/klP6P/4LUWOH6TSVzWZnS92H9qrBVRsPzZbzN27cNNvEqFOJcYxIs1nmVofYi57Y9Y++FQ1SjTF2rINsP9fwx43uYiy4ynpZ8DfGQg4PiQ22iT2gtciTsfCZzWJ98UqH2AwLVm3GVq4Ve4v5GiuSrrTUJLNZxcdPx8I+bvh1fQ6U7LtCDA9Gm2esn8T6q+pxli+wAyxYYyt2qD71yZNL2L0kyITYghArc65BmmuGzK9O1JXs/YlP3zNwb4/XW8gKA2ttYqv4sEbg1pOPSSxHYpMklkxrCa6ge3tkrvNRKSXzGA8Dzs4wiblkhYEeO18lsTUSO8cwVt7BwxWPrCTI6ODnRjos0+T6Yn48aQoPxyJtZD1E9oJDdnSG4WMfo7l44IlNNsSm+SSJRWIRH5/iownNz62y1uJZ4YhHVrORbIoN1lSci8sseLtBNuSKyUQ2za2ERpTRsjbF58qauYms6pGFZthgD5F9LcRym8mSSIZiSLZIYn4S28IzEnPI3mB5EutvkoUbZMkOsgSRdXp22/FsEOsOWYdnZ1vIpoRYh2ebyXrIsxNPIXt2z/Lb8awhtnWeeWQdng09u2e15/dsfR0vdvPsuT0D6LG379lkd89gueaRPdWzcMsKGOnm2ec5227NM9UVO3q4zbPkxPvkmSHd6eZZlamtZKnlX3eQZ/mUSQtdbcxmCgQZ7otdPHuo2k3P2Id4G0G24myOH4DnGW3g03Tq5pkdusW8PGPshIkeCjIUU4Psd/A8U7KZbZA188y22QDcy9kNMmYPNMgSnJNnywvtnsXTrZ7ZLWuTqaGlAkq4ZPiqac5mmmec/ayNDO/QQVZ1ZvMCC/3CHLGvlis1dsTLM+d9t9V+punxVs9a9rNLLETbtkiNHIr/+Xc77SK3pBRs7Vme8kxdU7e7Nukd0PbefJh7JMgay2lgB+u6NjfN5uJEk6y/YIuk/RJJXLEe9Wlr82zHfobl1jx7hTESs5tk3ddmuDPP6DEHqzh9wbcu/HDxyipOIYpdVkO9qkN2cyvPFB7nw+15NueuTRUVcNcAVD7AnuAKUJk92OuS5ZC0faeNbHAJvwasrcgCmJ30hODEPbyYlhPe46Gdv009tTbP0pifIGdGnLW5n884s7k3oYnLH+Vyucd1IXWt+D0L3isWL8IulFHzvTZTv6vZrZ6V8XuFhpqyY7pMUG9zzf2oPIfhfrIVaDad78eCwD1/YRLWcg9yucp+l0w6WbkvRrhi4jElXLFjsCnoO+qwU/zi8fVivqUrsATLFUzzRnhkJGYe3Dfb8f/Oz/QdBc8cEv46Y9dx9Y86/EshBdbNf371X9PpIJoRp3XyAAAAAElFTkSuQmCC">
<img xsrc="logo_ol.png" src="data:image/png;base64,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">
<img xsrc="logo_ait.png" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJYAAACCBAMAAABWaCxcAAAAMFBMVEUAdcj////N4/RKndc4k9SizOsjh8+y1e7d7Pfy+PwNe8qDvOSSxOdzs+Bmq95cptuwcM7yAAADDUlEQVR42u2Zz27TQBDGZ0makPBHniS0OE1osATnVubEiYoXCG+QgsS5QeKePgBSw6239A3SK3AonJForyChwgu0j8Ds2saJ7dje9ajqwZ+sZD3Z/cmfPTteO1CqlJH+fgAuTREReHSOyAWro9IhMOjcY7WAQehrAoUlApYFhbUTsDagsPC/ZsBlkcEkJ8vncKRrbZE1Z7NY2CQin0lGFllkM3m8zGrzWSxksonIZlIwsqbIZxJjGrFZJJOMLOSzaMyqJrGGfBaxy2cRkZN1wWbRMCv2kll9PotGJ6yByGZSMLIiE7qQyciBVML9bXOLthcYh2zzu8bAC9w3Nxkfacy6HR8pTE2GAzvx0Lr5VYwnHCfr0HQ1WHSFuJvO6hlOoIdJE3RmOK+D4KvF+V2QtRjbMiyDVlINMl0qJZXZC32L4YPQiWFBnMZWN82xadXHHCp21zAyKfKwOnwWA5PZZZDNpGBkHSCfyVVjdiPxWW6L2SyLkWXrWwxZ2ieslp81z7SYn2VlWszPQk7WJMNiGkvT5LEOa0vXYsjSnEaNVJaeSZGblb14Gqey9EwiH6upyzpLOV26LKtk3USWdk5cXU+uss5HzZozSl+q6rD2IUOPM1iM7+BLlboZcl36qP36qXbuvZ9V3W1wn0PFfUEbvHHhpUtdVM9nQE36TJna/vz2/iu01qja4TqVj31BrSnKBbvt9Wypfq0crAF9xViow7rrQawGDaRS9vYsZFVkq0+sy8uAdTRF++PqUqgquBzVoza9Lg5ZFJXbAR14wFJdVrPsgNWih2KIsJp6rPbYZ7UBo6xuXYv1x9ppS1ZVIjYU69HvgLUpcE6sz5/ysCRFYJAT6s+gNWp6LPJMv8nr2NFkdeMsEbK+f/mheVx9xbKPllleAj7IwSJ5xGF47rVZ4Q3tFFS6R1nU3OtB/utYV8sNP5O+LrNo9ImlwRLKoL8Jyv3REgsNWZvqsWESZ1FUl4XROiFv6EMN1jcHwBnI7bWjXupd3ZG7T+GWcwr0QbF3jiO/qN8TGZlDqVLXpH9l9QF1iGaCHAAAAABJRU5ErkJggg==">
</div>
<div style="overflow:hidden;width:500px;padding:0 30px">
<h1 style="margin-top:0">Temporarily Offline</h1>
<p>Internet Archive services are temporarily offline.</p>
<p>Please check our official accounts, including <a href="https://twitter.com/internetarchive/">Twitter/X</a>, <a href="https://bsky.app/profile/did:plc:73dpznbu4wqwtcyurwbiulov">Bluesky</a> or <a href="https://mastodon.archive.org/deck/@internetarchive">Mastodon</a> for the latest information.</p>
<p>We apologize for the inconvenience.</p>
</div></body></html>
WAYBACK-inventory (distinct URLs ever captured, any status):
20000818155008 http://www.agkn.com:80/ 200
20221225233224 https://www.agkn.com/%1A 404
20221006030816 https://www.agkn.com/%E2%80%A9 404
20220504094227 http://www.agkn.com/%E2%80%A9%E2%80%A9 404
20220504094138 http://www.agkn.com/%E2%80%A9%E2%80%A9%E2%80%A9 404
20160801234730 http://www.agkn.com:80/88sd55s 404
20250405133517 http://www.agkn.com/?ref=cyberlaw.stanford.edu 404
20160925025812 http://www.agkn.com/crossdomain.xml -
20010405095554 http://www.agkn.com:80/domainlist.php 200
20110202162457 http://agkn.com/favicon.ico 200
20170304232006 http://www.agkn.com/images/AAnet-graphic.png 200
20010813120011 http://agkn.com:80/images/forsale.gif 200
20170304232006 http://www.agkn.com/images/neustar-adadvisor-logo.png 200
20010813120424 http://agkn.com:80/images/onl.gif 200
20011221233948 http://agkn.com:80/images/result.gif 200
20011221233926 http://agkn.com:80/images/vote.gif 200
20010405185304 http://www.agkn.com:80/index.php?id=1 200
20010405185404 http://www.agkn.com:80/index.php?id=100 200
20010803092257 http://www.agkn.com:80/index.php?id=101 200
20010803092953 http://www.agkn.com:80/index.php?id=102 200
==============================================================================
=== spot.im
==============================================================================
TLS: subject=CN = spot.im|issuer=C = US, O = Amazon, CN = Amazon RSA 2048 M04|
RDAP-registrant:
RDAP-registrar:
RDAP-events:
RDAP-status:
RDAP-ns:
WHOIS:
--- whois spot.im @ whois.nic.im
Domain Name: spot.im
Name: Redacted
Address
Domain Owners / Registrant
Name: Redacted
Address
Administrative Contact
Name: Redacted
Address
Name: Redacted
Address
Technical Contact
Name: Redacted
Address
Expiry Date: 05/10/2029 00:59:46
REGISTER-ID (live page): <none>
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
20130816013817 http://www.spot.im:80/a/about 200
20130816121634 http://www.spot.im/a/about 200
20140418084602 http://www.spot.im:80/a/terms 200
20161224211502 https://www.spot.im/about/ 200
20170710100440 https://www.spot.im/about/ 200
20171119215747 http://www.spot.im:80/about 200
20180324234708 http://www.spot.im:80/about 200
20180604075158 http://www.spot.im:80/about 200
20190721062132 https://www.spot.im/about/ 200
20190721070042 https://www.spot.im/about 200
20190821174603 https://www.spot.im/about/ 200
20190922201348 https://www.spot.im/about/ 200
WAYBACK-root (every distinct body of the root page, with status):
<none>
WAYBACK-inventory (distinct URLs ever captured, any status):
<none>
==============================================================================
=== company-target.com
==============================================================================
TLS: <no handshake>|
RDAP-registrant:
RDAP-registrar: GoDaddy.com, LLC
RDAP-events: registration=2012-08-06T22:51:27Z expiration=2033-08-06T22:51:27Z last changed=2023-08-10T15:54:25Z last update of RDAP database=2026-09-11T18:35:29Z
RDAP-status: client delete prohibited,client renew prohibited,client transfer prohibited,client update prohibited
RDAP-ns: ns-1317.awsdns-36.org,ns-1712.awsdns-22.co.uk,ns-276.awsdns-34.com,ns-706.awsdns-24.net
WHOIS:
--- whois company-target.com @ whois.verisign-grs.com
Domain Name: COMPANY-TARGET.COM
Registrar WHOIS Server: whois.godaddy.com
Registrar URL: http://www.godaddy.com
Updated Date: 2023-08-10T15:54:25Z
Creation Date: 2012-08-06T22:51:27Z
Registry Expiry Date: 2033-08-06T22:51:27Z
Registrar: GoDaddy.com, LLC
Registrar IANA ID: 146
Registrar Abuse Contact Email: abuse@godaddy.com
Registrar Abuse Contact Phone: 480-624-2505
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientRenewProhibited https://icann.org/epp#clientRenewProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
unsolicited, commercial advertising or solicitations via e-mail, telephone,
Registrars.
--- whois company-target.com @ whois.godaddy.com
Domain Name: COMPANY-TARGET.COM
Registrar WHOIS Server: whois.godaddy.com
Registrar URL: https://www.godaddy.com
Updated Date: 2023-08-10T10:54:23Z
Creation Date: 2012-08-06T17:51:27Z
Registrar Registration Expiration Date: 2033-08-06T17:51:27Z
Registrar: GoDaddy.com, LLC
Registrar IANA ID: 146
Registrar Abuse Contact Email: abuse@godaddy.com
Registrar Abuse Contact Phone: +1.4806242505
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
Domain Status: clientRenewProhibited https://icann.org/epp#clientRenewProhibited
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Registry Registrant ID: Not Available From Registry
Registrant Name: Registration Private
Registrant Organization: Domains By Proxy, LLC
Registrant Street: DomainsByProxy.com
Registrant Street: 100 S. Mill Ave, Suite 1600
Registrant City: Tempe
REGISTER-ID (live page): <none>
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
20190414060816 https://a.company-target.com/bidswitch_match?bidswitch_ssp_id=openx&bsw_custom_parameter=8b5476fc-bae9-4a38-b08c-da73192fd61f&gdpr=&gdpr_consent= 200
20160214202800 https://a.company-target.com/pixel?type=js&id=1427820892&page=https%3A%2F%2Fwww.symantec.com%2Fabout%2Fnewsroom%2Fpress-releases%2F2012%2Fsymantec_1015_01 200
20160124210232 http://a.company-target.com/pixel?type=js&id=1429635068&page=http%3A%2F%2Fwww.nomi.com%2Fhomepage%2Fprivacy%2F 200
20160512130544 http://a.company-target.com/ul_cb/pixel?type=js&id=1385063850&page=http%3A%2F%2Fforums.juniper.net%2Ft5%2FSecurity-Incident-Response%2FImportant-Announcement-about-ScreenOS%2Fba-p%2F285554 200
20160512130544 http://a.company-target.com/ul_cb/pixel?type=js&id=1385063917&page=http%3A%2F%2Fforums.juniper.net%2Ft5%2FSecurity-Incident-Response%2FImportant-Announcement-about-ScreenOS%2Fba-p%2F285554 200
20170119211330 http://a.company-target.com/ul_cb/pixel?type=js&id=1390494526&page=http%3A%2F%2Flegalexecutiveinstitute.com%2Fartificial-intelligence-law-state-play-2016%2F 200
20161030231342 http://a.company-target.com/ul_cb/pixel?type=js&id=1390494526&page=http%3A%2F%2Flegalexecutiveinstitute.com%2Fgeorgetown-laws-james-w-jones-industry-segmentation-could-dramatically-change-the-face-of-legal-industry%2F 200
20170402203708 http://a.company-target.com/ul_cb/pixel?type=js&id=1390494526&page=http%3A%2F%2Flegalsolutions.thomsonreuters.com%2Flaw-products%2Fnews-views%2Fcorporate-counsel%2F2016-in-house-study%2Frise-of-the-legal-department-operations-manager 200
20170115023433 http://a.company-target.com/ul_cb/pixel?type=js&id=1390494526&page=http%3A%2F%2Flegalsolutions.thomsonreuters.com%2Flaw-products%2Fnews-views%2Fcorporate-counsel%2Femployer-and-employee-ownership-of-intellectual-property-not-as-easy-as-you-think 200
20170115023433 http://a.company-target.com/ul_cb/pixel?type=js&id=1390494526&page=http%3A%2F%2Flegalsolutions.thomsonreuters.com%2Flaw-products%2Fnews-views%2Fcorporate-counsel%2Femployer-and-employee-ownership-of-intellectual-property-not-as-easy-as-you-think 200
20161010202552 http://a.company-target.com/ul_cb/pixel?type=js&id=1390494526&page=http%3A%2F%2Flegalsolutions.thomsonreuters.com%2Flaw-products%2FRegulations%2FWests-Code-of-Federal-Regulations-General-Index-2016-ed%2Fp%2F102220236 200
20161010202552 http://a.company-target.com/ul_cb/pixel?type=js&id=1390494526&page=http%3A%2F%2Flegalsolutions.thomsonreuters.com%2Flaw-products%2FRegulations%2FWests-Code-of-Federal-Regulations-General-Index-2016-ed%2Fp%2F102220236 200
WAYBACK-root (every distinct body of the root page, with status):
20170422023801 301 3I42H3S6NNFQ2MSVX7XZKYAYSCX5QBYJ 280
20240625070553 403 VPRAXZZEBXU3A7XFYJZCZUJHKP2QDAWI 948
20240625075412 403 YYESQIYNMKP247IHZN6BV375RDISER2W 946
20240625075503 403 LEML4THRJB7VJMVCZYFCXR42B5V2V654 942
20240625124944 403 QOVYER2LFQ4TVU7LEVPQQIGV7BCDBT7A 943
20240625140551 403 RDV4SEIRGDHNN5YM6NVOAV5THUPCV2KT 942
20240625152035 403 A2WBL6KZCPUOXWI75X3ZHDOLCUM5ASST 947
20240625212707 403 5PYDAGJQVWXJ6BM36SHSU2LA5CSR7AXG 943
20240626024245 403 WU33R7A4VL3CIJHXFQZF72JUZJJYUJTH 946
20240626024508 403 VKRANFNGGIZL33NKWB56BJFDVKQV3LAP 949
20240626061500 403 ML6FEHWHPF7G4C4ZBIFISNPGTD5CQGTE 946
20240626064048 403 V7LXA7NKYLR3Z5SYNDZM4LLMTK2P2GMJ 948
20240626064530 403 TFUFWHIA5OWJNU34YSDUNY4LBJ43G653 945
20240626085006 403 DMFBJ5FZYXA7PZJL43VEBGXQXYZAR7SM 967
20240626104000 403 UNO5GO2CYJLTOJHIF65N6GIF5F4QHIMK 947
20240626150427 403 WN3B2WEZAEJICMVYL4KNKEK6MEZ3IZOD 943
20240626221133 403 U5XIJFLWY3CBVCIJJB77VKFYIZEEFQOK 947
20240626223130 403 QXJJFTQ7CVDHJA2LXSN27IQDDI2EDTVT 946
20240627040724 403 XF3A6S252ZBE4CWCKJ4C5HJZHHHP5YVA 946
20240627041156 403 KG3B3V7ICMLYVAJHDWQMKOGT6JXNHYOQ 944
WAYBACK-inventory (distinct URLs ever captured, any status):
<html><head><meta charset="UTF-8"><title>Internet Archive: Temporarily Offline</title><style>p{font-size:24px;}img{margin-bottom:2rem;}</style></head>
<body style="padding:30px 0;">
<div style="float:left;width:260px;text-align:center;">
<img xsrc="logo_ia.jpg" src="data:image/jpeg;base64,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">
<img xsrc="logo_wm.png" src="data:image/png;base64,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">
<img xsrc="logo_ol.png" src="data:image/png;base64,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">
<img xsrc="logo_ait.png" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJYAAACCBAMAAABWaCxcAAAAMFBMVEUAdcj////N4/RKndc4k9SizOsjh8+y1e7d7Pfy+PwNe8qDvOSSxOdzs+Bmq95cptuwcM7yAAADDUlEQVR42u2Zz27TQBDGZ0makPBHniS0OE1osATnVubEiYoXCG+QgsS5QeKePgBSw6239A3SK3AonJForyChwgu0j8Ds2saJ7dje9ajqwZ+sZD3Z/cmfPTteO1CqlJH+fgAuTREReHSOyAWro9IhMOjcY7WAQehrAoUlApYFhbUTsDagsPC/ZsBlkcEkJ8vncKRrbZE1Z7NY2CQin0lGFllkM3m8zGrzWSxksonIZlIwsqbIZxJjGrFZJJOMLOSzaMyqJrGGfBaxy2cRkZN1wWbRMCv2kll9PotGJ6yByGZSMLIiE7qQyciBVML9bXOLthcYh2zzu8bAC9w3Nxkfacy6HR8pTE2GAzvx0Lr5VYwnHCfr0HQ1WHSFuJvO6hlOoIdJE3RmOK+D4KvF+V2QtRjbMiyDVlINMl0qJZXZC32L4YPQiWFBnMZWN82xadXHHCp21zAyKfKwOnwWA5PZZZDNpGBkHSCfyVVjdiPxWW6L2SyLkWXrWwxZ2ieslp81z7SYn2VlWszPQk7WJMNiGkvT5LEOa0vXYsjSnEaNVJaeSZGblb14Gqey9EwiH6upyzpLOV26LKtk3USWdk5cXU+uss5HzZozSl+q6rD2IUOPM1iM7+BLlboZcl36qP36qXbuvZ9V3W1wn0PFfUEbvHHhpUtdVM9nQE36TJna/vz2/iu01qja4TqVj31BrSnKBbvt9Wypfq0crAF9xViow7rrQawGDaRS9vYsZFVkq0+sy8uAdTRF++PqUqgquBzVoza9Lg5ZFJXbAR14wFJdVrPsgNWih2KIsJp6rPbYZ7UBo6xuXYv1x9ppS1ZVIjYU69HvgLUpcE6sz5/ysCRFYJAT6s+gNWp6LPJMv8nr2NFkdeMsEbK+f/mheVx9xbKPllleAj7IwSJ5xGF47rVZ4Q3tFFS6R1nU3OtB/utYV8sNP5O+LrNo9ImlwRLKoL8Jyv3REgsNWZvqsWESZ1FUl4XROiFv6EMN1jcHwBnI7bWjXupd3ZG7T+GWcwr0QbF3jiO/qN8TGZlDqVLXpH9l9QF1iGaCHAAAAABJRU5ErkJggg==">
</div>
<div style="overflow:hidden;width:500px;padding:0 30px">
<h1 style="margin-top:0">Temporarily Offline</h1>
<p>Internet Archive services are temporarily offline.</p>
<p>Please check our official accounts, including <a href="https://twitter.com/internetarchive/">Twitter/X</a>, <a href="https://bsky.app/profile/did:plc:73dpznbu4wqwtcyurwbiulov">Bluesky</a> or <a href="https://mastodon.archive.org/deck/@internetarchive">Mastodon</a> for the latest information.</p>
<p>We apologize for the inconvenience.</p>
</div></body></html>
==============================================================================
=== adgrx.com
==============================================================================
TLS: <no handshake>|
RDAP-registrant:
RDAP-registrar: Amazon Registrar, Inc.
RDAP-events: registration=2011-10-06T22:04:52Z expiration=2027-10-06T22:04:52Z last changed=2026-05-16T11:38:44Z last update of RDAP database=2026-09-11T18:35:29Z
RDAP-status: client transfer prohibited
RDAP-ns: a1-166.akam.net,a18-67.akam.net,a2-64.akam.net,a20-65.akam.net,a5-67.akam.net,ns-1267.awsdns-30.org,ns-1554.awsdns-02.co.uk,ns-226.awsdns-28.com,ns-616.awsdns-13.net
WHOIS:
--- whois adgrx.com @ whois.verisign-grs.com
Domain Name: ADGRX.COM
Registrar WHOIS Server: whois.registrar.amazon
Registrar URL: http://registrar.amazon.com
Updated Date: 2026-05-16T11:38:44Z
Creation Date: 2011-10-06T22:04:52Z
Registry Expiry Date: 2027-10-06T22:04:52Z
Registrar: Amazon Registrar, Inc.
Registrar IANA ID: 468
Registrar Abuse Contact Email: trustandsafety@support.aws.com
Registrar Abuse Contact Phone: +1.2024422253
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
unsolicited, commercial advertising or solicitations via e-mail, telephone,
Registrars.
--- whois adgrx.com @ whois.registrar.amazon
Domain Name: adgrx.com
Registrar WHOIS Server: whois.registrar.amazon
Registrar URL:
Updated Date: 2026-05-16T11:38:44Z
Creation Date: 2011-10-06T22:04:52Z
Registrar Registration Expiration Date: 2027-10-06T22:04:52Z
Registrar: Amazon Registrar, Inc.
Registrar IANA ID: 468
Registrar Abuse Contact Email: trustandsafety@support.aws.com
Registrar Abuse Contact URL:
Registrar Abuse Contact Phone: +1.2024422253
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Registry Registrant ID: Not Available From Registry
Registrant Name: On behalf of adgrx.com OWNER
Registrant Organization: c/o whoisproxy.com
Registrant Street: 604 Cameron Street
Registrant City: Alexandria
Registrant State/Province: VA
Registrant Postal Code: 22314
Registrant Country: US
Registrant Phone: +64.48319528
Registrant Phone Ext:
Registrant Fax:
REGISTER-ID (live page): <none>
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
20260508173943 https://cm.adgrx.com/bridge.gif?AG_PID=casale&gdpr=1&gdpr_consent=CQj44sAQj44sAAOACBENCcFoAP_gAEPgACiQMHtB9G7eTWFjeTJ2YLskOYwH0VBJ4MAwBgCBAUABzBIUIBwGRmAxJAyIICACGAIAIGBBIABlGBBAQEAAIIAFAABIAEkAIBAAICAAAAAIAABACAAAAAAAEAAQgEAXIAQgmAYEBFoIQUhAggAAAQAAAAAEAIABAASAAAAAQAAACAAAACgAggAAAAAAAAAEAFAIAAAAIAECAgMkdAAQAAAAAAgIAAYAAEABAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAIAACC_YAJBoVEERYEAgQCAhBAgAEFAQAUCAIAAAgQAAAEwQECAMAFRgMgBACAAAAAAAAAAAAQAAAQAIQABAAACAEAAACAAIACAAAAAgAAAAAEAAAAAAAAAAAAAAAAAABCAAIIAAAAQQAEFAABAAIAAAAAAAAACIAAgAAAAAAAAAAAAAAIAAAIAAAAAAAAAAAAAACBEAACAAAAKAxBYAEAAAAAAAAAAAAAhAAQAAAACAAAIAAAAAAAAAAAAAAAAAAAAAAACAAA.IMHtB9G7eTXFneTJ2YLskOYwX0VBJ4MAwBgCBAUABzBIUIBwGVmAzJEyIICACGAIAIGBBIABtGBhAQEAAIIAVAABIAEkAIBAAIGAAACAIQABACAAAAAAAEAAQgEAXIAQgmAYEBFoIQUhAkgAgAQAAAAAEAIgBCASAEAAAQAAACAAAgCgAggAAAAAAAAAEAFAIEQAAIAECAoPkdgAQAAAAAAgIAAYACEABAAAAAIAAAgCAAAAAAAAAAAAAAAAAAABAAIAACA 200
20250226223052 https://cm.adgrx.com/bridge.gif?AG_PID=freewheel&gdpr=0&gdpr_consent= 200
20250303010614 https://cm.adgrx.com/bridge.gif?AG_PID=freewheel&gdpr=0&gdpr_consent= 200
20250303090523 https://cm.adgrx.com/bridge.gif?AG_PID=freewheel&gdpr=0&gdpr_consent= 200
20250304181327 https://cm.adgrx.com/bridge.gif?AG_PID=freewheel&gdpr=0&gdpr_consent= 200
20250313095646 https://cm.adgrx.com/bridge.gif?AG_PID=freewheel&gdpr=0&gdpr_consent= 200
20250313123816 https://cm.adgrx.com/bridge.gif?AG_PID=freewheel&gdpr=0&gdpr_consent= 200
20250316053311 https://cm.adgrx.com/bridge.gif?AG_PID=freewheel&gdpr=0&gdpr_consent= 200
20250316053421 https://cm.adgrx.com/bridge.gif?AG_PID=freewheel&gdpr=0&gdpr_consent= 200
20250317080802 https://cm.adgrx.com/bridge.gif?AG_PID=freewheel&gdpr=0&gdpr_consent= 200
20250318092945 https://cm.adgrx.com/bridge.gif?AG_PID=freewheel&gdpr=0&gdpr_consent= 200
20250322223815 https://cm.adgrx.com/bridge.gif?AG_PID=freewheel&gdpr=0&gdpr_consent= 200
WAYBACK-root (every distinct body of the root page, with status):
20141216052036 301 QH732FYSV7UM34JYWVYMB7EZGR2CYM6B 295
20171001220308 200 2XPN47YDKVRYM4S2ARYCW25D6DEEFWO3 2925
20180224034940 301 QH732FYSV7UM34JYWVYMB7EZGR2CYM6B 477
20180224063334 200 2XPN47YDKVRYM4S2ARYCW25D6DEEFWO3 2923
20180426152645 200 A5C5LI5A2PQAIXIARZHSWZYG5K26N575 403
20180517125908 301 QH732FYSV7UM34JYWVYMB7EZGR2CYM6B 478
20180517125912 - 2XPN47YDKVRYM4S2ARYCW25D6DEEFWO3 500
20180526043913 301 QH732FYSV7UM34JYWVYMB7EZGR2CYM6B 477
20180526043921 - 2XPN47YDKVRYM4S2ARYCW25D6DEEFWO3 500
20180527042322 301 QH732FYSV7UM34JYWVYMB7EZGR2CYM6B 477
20180527042326 - 2XPN47YDKVRYM4S2ARYCW25D6DEEFWO3 501
20180528112830 301 QH732FYSV7UM34JYWVYMB7EZGR2CYM6B 478
20180528112833 200 2XPN47YDKVRYM4S2ARYCW25D6DEEFWO3 2928
20180528134347 301 QH732FYSV7UM34JYWVYMB7EZGR2CYM6B 477
20180528134351 200 2XPN47YDKVRYM4S2ARYCW25D6DEEFWO3 2929
20180529051753 200 A5C5LI5A2PQAIXIARZHSWZYG5K26N575 400
20180602051151 301 QH732FYSV7UM34JYWVYMB7EZGR2CYM6B 477
20180602051200 - 2XPN47YDKVRYM4S2ARYCW25D6DEEFWO3 503
20180607210830 301 QH732FYSV7UM34JYWVYMB7EZGR2CYM6B 478
20180607210833 - 2XPN47YDKVRYM4S2ARYCW25D6DEEFWO3 501
WAYBACK-inventory (distinct URLs ever captured, any status):
<none>
==============================================================================
=== marphezis.com
==============================================================================
TLS: <no handshake>|
RDAP-registrant:
RDAP-registrar: GoDaddy.com, LLC
RDAP-events: registration=2015-07-14T12:39:24Z expiration=2027-07-14T12:39:24Z last changed=2026-07-15T10:42:38Z last update of RDAP database=2026-09-11T18:35:29Z
RDAP-status: client delete prohibited,client renew prohibited,client transfer prohibited,client update prohibited
RDAP-ns: ns-1349.awsdns-40.org,ns-1576.awsdns-05.co.uk,ns-57.awsdns-07.com,ns-725.awsdns-26.net
WHOIS:
--- whois marphezis.com @ whois.verisign-grs.com
Domain Name: MARPHEZIS.COM
Registrar WHOIS Server: whois.godaddy.com
Registrar URL: http://www.godaddy.com
Updated Date: 2026-07-15T10:42:38Z
Creation Date: 2015-07-14T12:39:24Z
Registry Expiry Date: 2027-07-14T12:39:24Z
Registrar: GoDaddy.com, LLC
Registrar IANA ID: 146
Registrar Abuse Contact Email: abuse@godaddy.com
Registrar Abuse Contact Phone: 480-624-2505
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientRenewProhibited https://icann.org/epp#clientRenewProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
unsolicited, commercial advertising or solicitations via e-mail, telephone,
Registrars.
--- whois marphezis.com @ whois.godaddy.com
Domain Name: marphezis.com
Registrar WHOIS Server: whois.godaddy.com
Registrar URL: https://www.godaddy.com
Updated Date: 2026-07-15T05:42:36Z
Creation Date: 2015-07-14T07:39:24Z
Registrar Registration Expiration Date: 2027-07-14T07:39:24Z
Registrar: GoDaddy.com, LLC
Registrar IANA ID: 146
Registrar Abuse Contact Email: abuse@godaddy.com
Registrar Abuse Contact Phone: +1.4806242505
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
Domain Status: clientRenewProhibited https://icann.org/epp#clientRenewProhibited
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Registry Registrant ID: Not Available From Registry
Registrant Name: Registration Private
Registrant Organization: Domains By Proxy, LLC
Registrant Street: DomainsByProxy.com
Registrant Street: 100 S. Mill Ave, Suite 1600
Registrant City: Tempe
REGISTER-ID (live page): <none>
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
<html>
<head><title>504 Gateway Time-out</title></head>
<body>
<center><h1>504 Gateway Time-out</h1></center>
<hr><center>nginx</center>
</body>
</html>
WAYBACK-root (every distinct body of the root page, with status):
<none>
WAYBACK-inventory (distinct URLs ever captured, any status):
<none>
==============================================================================
=== app-us1.com
==============================================================================
TLS: <no handshake>|
RDAP-registrant:
RDAP-registrar: MarkMonitor Inc.
RDAP-events: registration=2013-11-13T19:12:44Z expiration=2026-11-13T19:12:44Z last changed=2025-10-12T10:23:41Z last update of RDAP database=2026-09-11T18:35:59Z
RDAP-status: client delete prohibited,client transfer prohibited,client update prohibited
RDAP-ns: abby.ns.cloudflare.com,alex.ns.cloudflare.com
WHOIS:
--- whois app-us1.com @ whois.verisign-grs.com
Domain Name: APP-US1.COM
Registrar WHOIS Server: whois.markmonitor.com
Registrar URL: http://www.markmonitor.com
Updated Date: 2025-10-12T10:23:41Z
Creation Date: 2013-11-13T19:12:44Z
Registry Expiry Date: 2026-11-13T19:12:44Z
Registrar: MarkMonitor Inc.
Registrar IANA ID: 292
Registrar Abuse Contact Email: abusecomplaints@markmonitor.com
Registrar Abuse Contact Phone: +1.2086851750
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
unsolicited, commercial advertising or solicitations via e-mail, telephone,
Registrars.
--- whois app-us1.com @ whois.markmonitor.com
Domain Name: app-us1.com
Registrar WHOIS Server: whois.markmonitor.com
Registrar URL: http://www.markmonitor.com
Updated Date: 2025-10-12T10:23:41+0000
Creation Date: 2013-11-13T19:12:44+0000
Registrar Registration Expiration Date: 2026-11-13T00:00:00+0000
Registrar: MarkMonitor, Inc.
Registrar IANA ID: 292
Registrar Abuse Contact: https://corp.markmonitor.com/domain/ui/abuse-report
Registrar Abuse Contact Phone: +1.2086851750
Domain Status: clientUpdateProhibited (https://www.icann.org/epp#clientUpdateProhibited)
Domain Status: clientTransferProhibited (https://www.icann.org/epp#clientTransferProhibited)
Domain Status: clientDeleteProhibited (https://www.icann.org/epp#clientDeleteProhibited)
Registrant Organization: ActiveCampaign, LLC
Registrant Country: US
Registrant Email: Select Request Email Form at https://domains.markmonitor.com/whois/app-us1.com
Tech Email: Select Request Email Form at https://domains.markmonitor.com/whois/app-us1.com
For more information on WHOIS status codes, please visit:
https://www.icann.org/resources/pages/epp-status-codes
If you wish to contact this domain’s Registrant or Technical
contact, and such email address is not visible above, you may do so via our web
REGISTER-ID (live page): <none>
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
<none>
WAYBACK-root (every distinct body of the root page, with status):
<none>
WAYBACK-inventory (distinct URLs ever captured, any status):
<none>
==============================================================================
=== govx.com
==============================================================================
TLS: subject=CN = govx.com|issuer=C = BE, O = GlobalSign nv-sa, CN = GlobalSign Atlas R3 DV TLS CA 2025 Q4|
RDAP-registrant:
RDAP-registrar: GoDaddy.com, LLC
RDAP-events: registration=2003-11-27T19:19:57Z expiration=2028-11-27T19:19:57Z last changed=2025-11-10T18:26:10Z last update of RDAP database=2026-09-11T18:35:59Z
RDAP-status: client delete prohibited,client renew prohibited,client transfer prohibited,client update prohibited
RDAP-ns: pdns03.domaincontrol.com,pdns04.domaincontrol.com
WHOIS:
--- whois govx.com @ whois.verisign-grs.com
Domain Name: GOVX.COM
Registrar WHOIS Server: whois.godaddy.com
Registrar URL: http://www.godaddy.com
Updated Date: 2025-11-10T18:26:10Z
Creation Date: 2003-11-27T19:19:57Z
Registry Expiry Date: 2028-11-27T19:19:57Z
Registrar: GoDaddy.com, LLC
Registrar IANA ID: 146
Registrar Abuse Contact Email: abuse@godaddy.com
Registrar Abuse Contact Phone: 480-624-2505
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientRenewProhibited https://icann.org/epp#clientRenewProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
unsolicited, commercial advertising or solicitations via e-mail, telephone,
Registrars.
--- whois govx.com @ whois.godaddy.com
Domain Name: GOVX.COM
Registrar WHOIS Server: whois.godaddy.com
Registrar URL: https://www.godaddy.com
Updated Date: 2025-11-10T13:26:08Z
Creation Date: 2003-11-27T14:19:57Z
Registrar Registration Expiration Date: 2028-11-27T14:19:57Z
Registrar: GoDaddy.com, LLC
Registrar IANA ID: 146
Registrar Abuse Contact Email: abuse@godaddy.com
Registrar Abuse Contact Phone: +1.4806242505
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
Domain Status: clientRenewProhibited https://icann.org/epp#clientRenewProhibited
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Registry Registrant ID: Not Available From Registry
Registrant Name: Registration Private
Registrant Organization: Domains By Proxy, LLC
Registrant Street: DomainsByProxy.com
Registrant Street: 100 S. Mill Ave, Suite 1600
Registrant City: Tempe
REGISTER-ID (live page): <none>
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
<none>
WAYBACK-root (every distinct body of the root page, with status):
<none>
WAYBACK-inventory (distinct URLs ever captured, any status):
<none>
==============================================================================
=== cdnbasket.net
==============================================================================
TLS: <no handshake>|
RDAP-registrant:
RDAP-registrar: Tucows Domains Inc.
RDAP-events: registration=2017-09-13T21:34:59Z expiration=2027-09-13T21:34:59Z last changed=2026-08-15T03:52:56Z last update of RDAP database=2026-09-11T18:35:59Z
RDAP-status: client transfer prohibited,client update prohibited
RDAP-ns: ns-cloud-e1.googledomains.com,ns-cloud-e2.googledomains.com,ns-cloud-e3.googledomains.com,ns-cloud-e4.googledomains.com
WHOIS:
--- whois cdnbasket.net @ whois.verisign-grs.com
Domain Name: CDNBASKET.NET
Registrar WHOIS Server: whois.tucows.com
Registrar URL: http://www.tucows.com
Updated Date: 2026-08-15T03:52:56Z
Creation Date: 2017-09-13T21:34:59Z
Registry Expiry Date: 2027-09-13T21:34:59Z
Registrar: Tucows Domains Inc.
Registrar IANA ID: 69
Registrar Abuse Contact Email: domainabuse@tucows.com
Registrar Abuse Contact Phone: +1.4165350123
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
unsolicited, commercial advertising or solicitations via e-mail, telephone,
Registrars.
--- whois cdnbasket.net @ whois.tucows.com
Domain Name: CDNBASKET.NET
Registrar WHOIS Server: whois.tucows.com
Registrar URL: http://tucowsdomains.com
Updated Date: 2026-08-15T03:52:56
Creation Date: 2017-09-13T21:34:59
Registrar Registration Expiration Date: 2027-09-13T21:34:59
Registrar: TUCOWS.COM, CO.
Registrar IANA ID: 69
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
Registry Registrant ID:
Registrant Name: Contact Privacy Inc. Customer 0168237798
Registrant Organization: Contact Privacy Inc. Customer 0168237798
Registrant Street: 96 Mowat Ave
Registrant City: Toronto
Registrant State/Province: ON
Registrant Postal Code: M6K 3M1
Registrant Country: CA
Registrant Phone: +1.4165385457
Registrant Phone Ext:
Registrant Fax:
Registrant Fax Ext:
REGISTER-ID (live page): <none>
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
<none>
WAYBACK-root (every distinct body of the root page, with status):
<none>
WAYBACK-inventory (distinct URLs ever captured, any status):
<none>
==============================================================================
=== opti-digital.com
==============================================================================
TLS: <no handshake>|
RDAP-registrant:
RDAP-registrar: Gandi SAS
RDAP-events: registration=2018-05-24T15:06:27Z expiration=2027-05-24T15:06:27Z last changed=2026-04-23T12:12:13Z last update of RDAP database=2026-09-11T18:35:59Z
RDAP-status: client transfer prohibited
RDAP-ns: aida.ns.cloudflare.com,sean.ns.cloudflare.com
WHOIS:
--- whois opti-digital.com @ whois.verisign-grs.com
Domain Name: OPTI-DIGITAL.COM
Registrar WHOIS Server: whois.gandi.net
Registrar URL: http://www.gandi.net
Updated Date: 2026-04-23T12:12:13Z
Creation Date: 2018-05-24T15:06:27Z
Registry Expiry Date: 2027-05-24T15:06:27Z
Registrar: Gandi SAS
Registrar IANA ID: 81
Registrar Abuse Contact Email: abuse@support.gandi.net
Registrar Abuse Contact Phone: +33.170377661
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
unsolicited, commercial advertising or solicitations via e-mail, telephone,
Registrars.
--- whois opti-digital.com @ whois.gandi.net
Domain Name: opti-digital.com
Registrar WHOIS Server: whois.gandi.net
Registrar URL: http://www.gandi.net
Updated Date: 2026-04-23T12:12:13Z
Creation Date: 2018-05-24T13:06:27Z
Registrar Registration Expiration Date: 2027-05-24T15:06:27Z
Registrar: GANDI SAS
Registrar IANA ID: 81
Registrar Abuse Contact Email: abuse@support.gandi.net
Registrar Abuse Contact Phone: +33.170377661
Domain Status: clientTransferProhibited http://www.icann.org/epp#clientTransferProhibited
Domain Status:
Domain Status:
Domain Status:
Domain Status:
Registry Registrant ID: REDACTED FOR PRIVACY
Registrant Name: REDACTED FOR PRIVACY
Registrant Organization:
Registrant Street: 63-65 boulevard Massena
Registrant City: Paris
Registrant State/Province: Paris
Registrant Postal Code: 75013
Registrant Country: FR
REGISTER-ID (live page): <none>
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
<none>
WAYBACK-root (every distinct body of the root page, with status):
<none>
WAYBACK-inventory (distinct URLs ever captured, any status):
<none>
==============================================================================
=== ksearchnet.com
==============================================================================
TLS: <no handshake>|
RDAP-registrant:
RDAP-registrar: OVH sas
RDAP-events: registration=2017-04-18T09:53:13Z expiration=2027-04-18T09:53:13Z last changed=2026-04-19T08:13:21Z last update of RDAP database=2026-09-11T18:36:14Z
RDAP-status: client delete prohibited,client transfer prohibited
RDAP-ns: ns-1305.awsdns-35.org,ns-1795.awsdns-32.co.uk,ns-377.awsdns-47.com,ns-698.awsdns-23.net
WHOIS:
--- whois ksearchnet.com @ whois.verisign-grs.com
Domain Name: KSEARCHNET.COM
Registrar WHOIS Server: whois.ovh.com
Registrar URL: http://www.ovh.com
Updated Date: 2026-04-19T08:13:21Z
Creation Date: 2017-04-18T09:53:13Z
Registry Expiry Date: 2027-04-18T09:53:13Z
Registrar: OVH sas
Registrar IANA ID: 433
Registrar Abuse Contact Email: abuse@ovh.net
Registrar Abuse Contact Phone: +33.972101007
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
unsolicited, commercial advertising or solicitations via e-mail, telephone,
Registrars.
--- whois ksearchnet.com @ whois.ovh.com
Domain Name: ksearchnet.com
Registrar WHOIS Server: whois.ovh.com
Registrar URL: https://ovh.com
Updated Date: 2025-04-19T07:11:26Z
Creation Date: 2017-04-18T09:53:13Z
Registrar Registration Expiration Date: 2026-04-18T11:53:13+02:00
Registrar: OVH, SAS
Registrar IANA ID: 433
Registrar Abuse Contact Email: abuse@ovh.net
Registrar Abuse Contact Phone: +33.972101007
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Registry Registrant ID: REDACTED FOR PRIVACY
Registrant Name: REDACTED FOR PRIVACY
Registrant Organization: REDACTED FOR PRIVACY
Registrant Street: REDACTED FOR PRIVACY
Registrant City: REDACTED FOR PRIVACY
Registrant State/Province: REDACTED FOR PRIVACY
Registrant Postal Code: REDACTED FOR PRIVACY
Registrant Country: FI
Registrant Phone: REDACTED FOR PRIVACY
Registrant Phone Ext: REDACTED FOR PRIVACY
REGISTER-ID (live page): <none>
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
<none>
WAYBACK-root (every distinct body of the root page, with status):
<none>
WAYBACK-inventory (distinct URLs ever captured, any status):
<none>
==============================================================================
=== kameleoon.io
==============================================================================
TLS: <no handshake>|
RDAP-registrant:
RDAP-registrar:
RDAP-events:
RDAP-status:
RDAP-ns:
WHOIS:
--- whois kameleoon.io @ whois.nic.io
Domain Name: kameleoon.io
Registrar WHOIS Server: whois.ovh.com
Registrar URL: http://www.ovh.com
Updated Date: 2026-09-02T08:00:02Z
Creation Date: 2019-07-19T07:59:14Z
Registry Expiry Date: 2027-07-19T07:59:14Z
Registrar: OVH SAS
Registrar IANA ID: 433
Registrar Abuse Contact Email: abuse@ovh.net
Registrar Abuse Contact Phone:
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Registry Registrant ID: REDACTED
Registrant Name: REDACTED
Registrant Organization: Kameleoon
Registrant Street: REDACTED
Registrant City: REDACTED
Registrant State/Province:
Registrant Postal Code: REDACTED
Registrant Country: FR
Registrant Phone: REDACTED
Registrant Phone Ext: REDACTED
Registrant Fax: REDACTED
Registrant Fax Ext: REDACTED
Registrant Email: REDACTED
Registry Admin ID: REDACTED
Admin Name: REDACTED
Admin Organization: REDACTED
Admin Street: REDACTED
Admin City: REDACTED
Admin State/Province: REDACTED
Admin Postal Code: REDACTED
Admin Country: REDACTED
Admin Phone: REDACTED
Admin Phone Ext: REDACTED
Admin Fax: REDACTED
Admin Fax Ext: REDACTED
Admin Email: REDACTED
Registry Tech ID: REDACTED
Tech Name: REDACTED
Tech Organization: REDACTED
Tech Street: REDACTED
Tech City: REDACTED
Tech State/Province: REDACTED
REGISTER-ID (live page): <none>
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
<none>
WAYBACK-root (every distinct body of the root page, with status):
<none>
WAYBACK-inventory (distinct URLs ever captured, any status):
<none>
==============================================================================
=== gssprt.jp
==============================================================================
TLS: <no handshake>|
RDAP: <no endpoint for this TLD; WHOIS below is the published interface>
WHOIS:
--- whois gssprt.jp @ whois.jprs.jp
[ JPRS database provides information on network administration. Its use is ]
[ restricted to network administration purposes. For further information, ]
[Registrant] Geniee, Inc.
[Email] info@geniee.co.jp
[Postal Address] Sumitomofudosan Nishishinjuku Bldg 25F
REGISTER-ID (live page): <none>
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
<none>
WAYBACK-root (every distinct body of the root page, with status):
<none>
WAYBACK-inventory (distinct URLs ever captured, any status):
<none>
==============================================================================
=== acint.net
==============================================================================
TLS: subject=CN = *.acint.net|issuer=C = US, O = Let's Encrypt, CN = YE1|
RDAP-registrant:
RDAP-registrar: PDR Ltd. d/b/a PublicDomainRegistry.com
RDAP-events: registration=2014-02-06T08:42:55Z expiration=2027-02-06T08:42:55Z last changed=2026-02-11T15:25:30Z last update of RDAP database=2026-09-11T18:36:14Z
RDAP-status: active
RDAP-ns: ns3-l2.nic.ru,ns4-cloud.nic.ru,ns4-l2.nic.ru,ns8-cloud.nic.ru,ns8-l2.nic.ru
WHOIS:
--- whois acint.net @ whois.verisign-grs.com
Domain Name: ACINT.NET
Registrar WHOIS Server: whois.PublicDomainRegistry.com
Registrar URL: http://www.publicdomainregistry.com
Updated Date: 2026-02-11T15:25:30Z
Creation Date: 2014-02-06T08:42:55Z
Registry Expiry Date: 2027-02-06T08:42:55Z
Registrar: PDR Ltd. d/b/a PublicDomainRegistry.com
Registrar IANA ID: 303
Registrar Abuse Contact Email: abuse-contact@publicdomainregistry.com
Registrar Abuse Contact Phone: +1.2013775952
Domain Status: ok https://icann.org/epp#ok
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
unsolicited, commercial advertising or solicitations via e-mail, telephone,
Registrars.
--- whois acint.net @ whois.PublicDomainRegistry.com
Domain Name: ACINT.NET
Registrar WHOIS Server: whois.publicdomainregistry.com
Registrar URL: www.publicdomainregistry.com
Updated Date: 2026-02-11T15:25:31Z
Creation Date: 2014-02-06T08:42:55Z
Registrar Registration Expiration Date: 2027-02-06T08:42:55Z
Registrar: PDR Ltd. d/b/a PublicDomainRegistry.com
Registrar IANA ID: 303
Domain Status: OK https://icann.org/epp#OK
Registry Registrant ID: Not Available From Registry
Registrant Name: Poshibalov Evgeny Vasilyevich
Registrant Organization: N/A
Registrant Street: Kurkinskaya str, 16-107
Registrant City: Khimki
Registrant State/Province: Moscow reg
Registrant Postal Code: 141400
Registrant Country: RU
Registrant Phone: +7.9037598806
Registrant Phone Ext:
Registrant Fax:
Registrant Fax Ext:
Registrant Email: Evgen.p@gmail.com
Registry Admin ID: Not Available From Registry
REGISTER-ID (live page): <none>
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
<none>
WAYBACK-root (every distinct body of the root page, with status):
<none>
WAYBACK-inventory (distinct URLs ever captured, any status):
<none>
==============================================================================
=== yceml.net
==============================================================================
TLS: <no handshake>|
RDAP-registrant:
RDAP-registrar: MarkMonitor Inc.
RDAP-events: registration=2004-04-08T00:34:45Z expiration=2027-04-08T00:34:45Z last changed=2026-03-07T09:33:09Z last update of RDAP database=2026-09-11T18:36:14Z
RDAP-status: client delete prohibited,client transfer prohibited,client update prohibited
RDAP-ns: a1-100.akam.net,a1-27.akam.net,a2-64.akam.net,a20-65.akam.net,a26-65.akam.net,a28-64.akam.net,a6-65.akam.net,a7-66.akam.net
WHOIS:
--- whois yceml.net @ whois.verisign-grs.com
Domain Name: YCEML.NET
Registrar WHOIS Server: whois.markmonitor.com
Registrar URL: http://www.markmonitor.com
Updated Date: 2026-03-07T09:33:09Z
Creation Date: 2004-04-08T00:34:45Z
Registry Expiry Date: 2027-04-08T00:34:45Z
Registrar: MarkMonitor Inc.
Registrar IANA ID: 292
Registrar Abuse Contact Email: abusecomplaints@markmonitor.com
Registrar Abuse Contact Phone: +1.2086851750
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
unsolicited, commercial advertising or solicitations via e-mail, telephone,
Registrars.
--- whois yceml.net @ whois.markmonitor.com
Domain Name: yceml.net
Registrar WHOIS Server: whois.markmonitor.com
Registrar URL: http://www.markmonitor.com
Updated Date: 2026-03-07T09:33:09+0000
Creation Date: 2004-04-08T00:34:45+0000
Registrar Registration Expiration Date: 2027-04-08T00:00:00+0000
Registrar: MarkMonitor, Inc.
Registrar IANA ID: 292
Registrar Abuse Contact: https://corp.markmonitor.com/domain/ui/abuse-report
Registrar Abuse Contact Phone: +1.2086851750
Domain Status: clientUpdateProhibited (https://www.icann.org/epp#clientUpdateProhibited)
Domain Status: clientTransferProhibited (https://www.icann.org/epp#clientTransferProhibited)
Domain Status: clientDeleteProhibited (https://www.icann.org/epp#clientDeleteProhibited)
Registrant Name: Domain Administrator
Registrant Organization: Conversant, Inc.
Registrant Street: 30699 Russell Ranch Rd, Suite 250
Registrant City: Westlake Village
Registrant State/Province: California
Registrant Postal Code: 91362
Registrant Country: US
Registrant Phone: +1.8185323580
REGISTER-ID (live page): <none>
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
<none>
WAYBACK-root (every distinct body of the root page, with status):
<none>
WAYBACK-inventory (distinct URLs ever captured, any status):
<none>
==============================================================================
=== travelpayouts.com
==============================================================================
TLS: subject=CN = travelpayouts.com|issuer=C = US, O = Amazon, CN = Amazon RSA 2048 M01|
RDAP-registrant:
RDAP-registrar: GoDaddy.com, LLC
RDAP-events: registration=2012-04-23T11:46:45Z expiration=2027-04-23T11:46:45Z last changed=2026-08-28T14:07:54Z last update of RDAP database=2026-09-11T18:36:14Z
RDAP-status: client delete prohibited,client renew prohibited,client transfer prohibited,client update prohibited
RDAP-ns: ns-1283.awsdns-32.org,ns-1789.awsdns-31.co.uk,ns-218.awsdns-27.com,ns-843.awsdns-41.net
WHOIS:
--- whois travelpayouts.com @ whois.verisign-grs.com
Domain Name: TRAVELPAYOUTS.COM
Registrar WHOIS Server: whois.godaddy.com
Registrar URL: http://www.godaddy.com
Updated Date: 2026-08-28T14:07:54Z
Creation Date: 2012-04-23T11:46:45Z
Registry Expiry Date: 2027-04-23T11:46:45Z
Registrar: GoDaddy.com, LLC
Registrar IANA ID: 146
Registrar Abuse Contact Email: abuse@godaddy.com
Registrar Abuse Contact Phone: 480-624-2505
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientRenewProhibited https://icann.org/epp#clientRenewProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
unsolicited, commercial advertising or solicitations via e-mail, telephone,
Registrars.
--- whois travelpayouts.com @ whois.godaddy.com
Domain Name: TRAVELPAYOUTS.COM
Registrar WHOIS Server: whois.godaddy.com
Registrar URL: https://www.godaddy.com
Updated Date: 2025-04-24T07:01:59Z
Creation Date: 2012-04-23T06:46:45Z
Registrar Registration Expiration Date: 2027-04-23T06:46:45Z
Registrar: GoDaddy.com, LLC
Registrar IANA ID: 146
Registrar Abuse Contact Email: abuse@godaddy.com
Registrar Abuse Contact Phone: +1.4806242505
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
Domain Status: clientRenewProhibited https://icann.org/epp#clientRenewProhibited
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Registry Registrant ID: Not Available From Registry
Registrant Name: Valeria Baeva
Registrant Street: 31/F Tower Two
Registrant Street: Times Square, 1 Matheson Street
Registrant City: Hong Kong
Registrant State/Province: Hong Kong
REGISTER-ID (live page): <none>
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
<none>
WAYBACK-root (every distinct body of the root page, with status):
<none>
WAYBACK-inventory (distinct URLs ever captured, any status):
<none>
==============================================================================
=== blogblog.com
==============================================================================
TLS: subject=CN = *.blogger.com|issuer=C = US, O = Google Trust Services, CN = WR2|
RDAP-registrant:
RDAP-registrar: MarkMonitor Inc.
RDAP-events: registration=2000-09-15T05:16:48Z expiration=2027-09-15T05:16:48Z last changed=2026-08-14T10:38:42Z last update of RDAP database=2026-09-11T18:36:14Z
RDAP-status: client delete prohibited,client transfer prohibited,client update prohibited
RDAP-ns: ns1.google.com,ns2.google.com,ns3.google.com,ns4.google.com
WHOIS:
--- whois blogblog.com @ whois.verisign-grs.com
Domain Name: BLOGBLOG.COM
Registrar WHOIS Server: whois.markmonitor.com
Registrar URL: http://www.markmonitor.com
Updated Date: 2026-08-14T10:38:42Z
Creation Date: 2000-09-15T05:16:48Z
Registry Expiry Date: 2027-09-15T05:16:48Z
Registrar: MarkMonitor Inc.
Registrar IANA ID: 292
Registrar Abuse Contact Email: abusecomplaints@markmonitor.com
Registrar Abuse Contact Phone: +1.2086851750
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
unsolicited, commercial advertising or solicitations via e-mail, telephone,
Registrars.
--- whois blogblog.com @ whois.markmonitor.com
Domain Name: blogblog.com
Registrar WHOIS Server: whois.markmonitor.com
Registrar URL: http://www.markmonitor.com
Updated Date: 2026-08-14T10:38:42+0000
Creation Date: 2000-09-15T05:16:48+0000
Registrar Registration Expiration Date: 2027-09-15T00:00:00+0000
Registrar: MarkMonitor, Inc.
Registrar IANA ID: 292
Registrar Abuse Contact: https://corp.markmonitor.com/domain/ui/abuse-report
Registrar Abuse Contact Phone: +1.2086851750
Domain Status: clientUpdateProhibited (https://www.icann.org/epp#clientUpdateProhibited)
Domain Status: clientTransferProhibited (https://www.icann.org/epp#clientTransferProhibited)
Domain Status: clientDeleteProhibited (https://www.icann.org/epp#clientDeleteProhibited)
Registrant Organization: Google LLC
Registrant Country: US
Registrant Email: Select Request Email Form at https://domains.markmonitor.com/whois/blogblog.com
Tech Email: Select Request Email Form at https://domains.markmonitor.com/whois/blogblog.com
For more information on WHOIS status codes, please visit:
https://www.icann.org/resources/pages/epp-status-codes
If you wish to contact this domain’s Registrant or Technical
contact, and such email address is not visible above, you may do so via our web
REGISTER-ID (live page): <none>
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
<none>
WAYBACK-root (every distinct body of the root page, with status):
<none>
WAYBACK-inventory (distinct URLs ever captured, any status):
<none>
==============================================================================
=== at-o.net
==============================================================================
TLS: <no handshake>|
RDAP-registrant:
RDAP-registrar: Gandi SAS
RDAP-events: registration=2018-05-31T10:21:59Z expiration=2027-05-31T10:21:59Z last changed=2026-02-18T16:29:00Z last update of RDAP database=2026-09-11T18:36:14Z
RDAP-status: client transfer prohibited
RDAP-ns: ns-1362.awsdns-42.org,ns-15.awsdns-01.com,ns-1614.awsdns-09.co.uk,ns-792.awsdns-35.net
WHOIS:
--- whois at-o.net @ whois.verisign-grs.com
Domain Name: AT-O.NET
Registrar WHOIS Server: whois.gandi.net
Registrar URL: http://www.gandi.net
Updated Date: 2026-02-18T16:29:00Z
Creation Date: 2018-05-31T10:21:59Z
Registry Expiry Date: 2027-05-31T10:21:59Z
Registrar: Gandi SAS
Registrar IANA ID: 81
Registrar Abuse Contact Email: abuse@support.gandi.net
Registrar Abuse Contact Phone: +33.170377661
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
unsolicited, commercial advertising or solicitations via e-mail, telephone,
Registrars.
--- whois at-o.net @ whois.gandi.net
Domain Name: at-o.net
Registrar WHOIS Server: whois.gandi.net
Registrar URL: http://www.gandi.net
Updated Date: 2026-02-18T16:29:00Z
Creation Date: 2018-05-31T08:21:59Z
Registrar Registration Expiration Date: 2027-05-31T10:21:59Z
Registrar: GANDI SAS
Registrar IANA ID: 81
Registrar Abuse Contact Email: abuse@support.gandi.net
Registrar Abuse Contact Phone: +33.170377661
Domain Status: clientTransferProhibited http://www.icann.org/epp#clientTransferProhibited
Domain Status:
Domain Status:
Domain Status:
Domain Status:
Registry Registrant ID: REDACTED FOR PRIVACY
Registrant Name: REDACTED FOR PRIVACY
Registrant Organization: Applied Technologies Internet SAS
Registrant Street: REDACTED FOR PRIVACY
Registrant City: REDACTED FOR PRIVACY
Registrant State/Province: Nouvelle-Aquitaine
Registrant Postal Code: REDACTED FOR PRIVACY
Registrant Country: FR
REGISTER-ID (live page): <none>
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
<none>
WAYBACK-root (every distinct body of the root page, with status):
<none>
WAYBACK-inventory (distinct URLs ever captured, any status):
<none>
==============================================================================
=== cnevids.com
==============================================================================
TLS: <no handshake>|
RDAP-registrant:
RDAP-registrar: CSC Corporate Domains, Inc.
RDAP-events: registration=2012-10-16T14:57:16Z expiration=2026-10-16T14:57:16Z last changed=2024-10-12T05:12:03Z last update of RDAP database=2026-09-11T18:36:14Z
RDAP-status: client transfer prohibited
RDAP-ns: ns-1440.awsdns-52.org,ns-1574.awsdns-04.co.uk,ns-371.awsdns-46.com,ns-694.awsdns-22.net
WHOIS:
--- whois cnevids.com @ whois.verisign-grs.com
Domain Name: CNEVIDS.COM
Registrar WHOIS Server: whois.corporatedomains.com
Registrar URL: http://cscdbs.com
Updated Date: 2024-10-12T05:12:03Z
Creation Date: 2012-10-16T14:57:16Z
Registry Expiry Date: 2026-10-16T14:57:16Z
Registrar: CSC Corporate Domains, Inc.
Registrar IANA ID: 299
Registrar Abuse Contact Email: domainabuse@cscglobal.com
Registrar Abuse Contact Phone: 8887802723
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
unsolicited, commercial advertising or solicitations via e-mail, telephone,
Registrars.
--- whois cnevids.com @ whois.corporatedomains.com
REGISTER-ID (live page): <none>
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
<html><head><meta charset="UTF-8"><title>Internet Archive: Temporarily Offline</title><style>p{font-size:24px;}img{margin-bottom:2rem;}</style></head>
<body style="padding:30px 0;">
<div style="float:left;width:260px;text-align:center;">
<img xsrc="logo_ia.jpg" src="data:image/jpeg;base64,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">
<img xsrc="logo_wm.png" src="data:image/png;base64,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">
<img xsrc="logo_ol.png" src="data:image/png;base64,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">
<img xsrc="logo_ait.png" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJYAAACCBAMAAABWaCxcAAAAMFBMVEUAdcj////N4/RKndc4k9SizOsjh8+y1e7d7Pfy+PwNe8qDvOSSxOdzs+Bmq95cptuwcM7yAAADDUlEQVR42u2Zz27TQBDGZ0makPBHniS0OE1osATnVubEiYoXCG+QgsS5QeKePgBSw6239A3SK3AonJForyChwgu0j8Ds2saJ7dje9ajqwZ+sZD3Z/cmfPTteO1CqlJH+fgAuTREReHSOyAWro9IhMOjcY7WAQehrAoUlApYFhbUTsDagsPC/ZsBlkcEkJ8vncKRrbZE1Z7NY2CQin0lGFllkM3m8zGrzWSxksonIZlIwsqbIZxJjGrFZJJOMLOSzaMyqJrGGfBaxy2cRkZN1wWbRMCv2kll9PotGJ6yByGZSMLIiE7qQyciBVML9bXOLthcYh2zzu8bAC9w3Nxkfacy6HR8pTE2GAzvx0Lr5VYwnHCfr0HQ1WHSFuJvO6hlOoIdJE3RmOK+D4KvF+V2QtRjbMiyDVlINMl0qJZXZC32L4YPQiWFBnMZWN82xadXHHCp21zAyKfKwOnwWA5PZZZDNpGBkHSCfyVVjdiPxWW6L2SyLkWXrWwxZ2ieslp81z7SYn2VlWszPQk7WJMNiGkvT5LEOa0vXYsjSnEaNVJaeSZGblb14Gqey9EwiH6upyzpLOV26LKtk3USWdk5cXU+uss5HzZozSl+q6rD2IUOPM1iM7+BLlboZcl36qP36qXbuvZ9V3W1wn0PFfUEbvHHhpUtdVM9nQE36TJna/vz2/iu01qja4TqVj31BrSnKBbvt9Wypfq0crAF9xViow7rrQawGDaRS9vYsZFVkq0+sy8uAdTRF++PqUqgquBzVoza9Lg5ZFJXbAR14wFJdVrPsgNWih2KIsJp6rPbYZ7UBo6xuXYv1x9ppS1ZVIjYU69HvgLUpcE6sz5/ysCRFYJAT6s+gNWp6LPJMv8nr2NFkdeMsEbK+f/mheVx9xbKPllleAj7IwSJ5xGF47rVZ4Q3tFFS6R1nU3OtB/utYV8sNP5O+LrNo9ImlwRLKoL8Jyv3REgsNWZvqsWESZ1FUl4XROiFv6EMN1jcHwBnI7bWjXupd3ZG7T+GWcwr0QbF3jiO/qN8TGZlDqVLXpH9l9QF1iGaCHAAAAABJRU5ErkJggg==">
</div>
<div style="overflow:hidden;width:500px;padding:0 30px">
<h1 style="margin-top:0">Temporarily Offline</h1>
<p>Internet Archive services are temporarily offline.</p>
<p>Please check our official accounts, including <a href="https://twitter.com/internetarchive/">Twitter/X</a>, <a href="https://bsky.app/profile/did:plc:73dpznbu4wqwtcyurwbiulov">Bluesky</a> or <a href="https://mastodon.archive.org/deck/@internetarchive">Mastodon</a> for the latest information.</p>
<p>We apologize for the inconvenience.</p>
</div></body></html>
WAYBACK-root (every distinct body of the root page, with status):
<none>
WAYBACK-inventory (distinct URLs ever captured, any status):
<none>
==============================================================================
=== mapixl.com
==============================================================================
TLS: subject=CN = mapixl.com|issuer=C = US, O = Google Trust Services, CN = WE1|
RDAP: <no JSON from https://rdap.org/domain/mapixl.com>
WHOIS:
--- whois mapixl.com @ whois.verisign-grs.com
Domain Name: MAPIXL.COM
Registrar WHOIS Server: whois.godaddy.com
Registrar URL: http://www.godaddy.com
Updated Date: 2025-11-30T18:01:12Z
Creation Date: 2018-11-29T17:06:37Z
Registry Expiry Date: 2026-11-29T17:06:37Z
Registrar: GoDaddy.com, LLC
Registrar IANA ID: 146
Registrar Abuse Contact Email: abuse@godaddy.com
Registrar Abuse Contact Phone: 480-624-2505
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientRenewProhibited https://icann.org/epp#clientRenewProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
unsolicited, commercial advertising or solicitations via e-mail, telephone,
Registrars.
--- whois mapixl.com @ whois.godaddy.com
REGISTER-ID (live page): <none>
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
<none>
WAYBACK-root (every distinct body of the root page, with status):
<none>
WAYBACK-inventory (distinct URLs ever captured, any status):
<none>
==============================================================================
=== htplayground.com
==============================================================================
TLS: <no handshake>|
RDAP: <no JSON from https://rdap.org/domain/htplayground.com>
WHOIS:
--- whois htplayground.com @ whois.verisign-grs.com
Domain Name: HTPLAYGROUND.COM
Registrar WHOIS Server: whois.registrar.amazon
Registrar URL: http://registrar.amazon.com
Updated Date: 2025-11-29T13:53:00Z
Creation Date: 2022-01-03T13:52:35Z
Registry Expiry Date: 2027-01-03T13:52:35Z
Registrar: Amazon Registrar, Inc.
Registrar IANA ID: 468
Registrar Abuse Contact Email: trustandsafety@support.aws.com
Registrar Abuse Contact Phone: +1.2024422253
Domain Status: ok https://icann.org/epp#ok
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
unsolicited, commercial advertising or solicitations via e-mail, telephone,
Registrars.
--- whois htplayground.com @ whois.registrar.amazon
Domain Name: htplayground.com
Registrar WHOIS Server: whois.registrar.amazon
Registrar URL:
Updated Date: 2025-11-29T13:53:00Z
Creation Date: 2022-01-03T13:52:35Z
Registrar Registration Expiration Date: 2027-01-03T13:52:35Z
Registrar: Amazon Registrar, Inc.
Registrar IANA ID: 468
Registrar Abuse Contact Email: trustandsafety@support.aws.com
Registrar Abuse Contact URL:
Registrar Abuse Contact Phone: +1.2024422253
Domain Status: ok https://icann.org/epp#ok
Registry Registrant ID: Not Available From Registry
Registrant Name: On behalf of htplayground.com OWNER
Registrant Organization: c/o whoisproxy.com
Registrant Street: 604 Cameron Street
Registrant City: Alexandria
Registrant State/Province: VA
Registrant Postal Code: 22314
Registrant Country: US
Registrant Phone: +64.48319528
Registrant Phone Ext:
Registrant Fax:
REGISTER-ID (live page): <none>
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
<none>
WAYBACK-root (every distinct body of the root page, with status):
<none>
WAYBACK-inventory (distinct URLs ever captured, any status):
<none>
==============================================================================
=== contentabc.com
==============================================================================
TLS: <no handshake>|
RDAP: <no JSON from https://rdap.org/domain/contentabc.com>
WHOIS:
--- whois contentabc.com @ whois.verisign-grs.com
Domain Name: CONTENTABC.COM
Registrar WHOIS Server: whois.eurodns.com
Registrar URL: http://www.EuroDNS.com
Updated Date: 2025-06-18T18:52:40Z
Creation Date: 2009-08-05T16:12:02Z
Registry Expiry Date: 2027-08-05T16:12:02Z
Registrar: EuroDNS S.A.
Registrar IANA ID: 1052
Registrar Abuse Contact Email: legalservices@eurodns.com
Registrar Abuse Contact Phone: +352.27220150
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
unsolicited, commercial advertising or solicitations via e-mail, telephone,
Registrars.
--- whois contentabc.com @ whois.eurodns.com
Domain Name: contentabc.com
Registrar WHOIS Server: whois.eurodns.com
Registrar URL: http://www.eurodns.com
Updated Date: 2025-06-18T20:52:45Z
Creation Date: 2009-08-05T00:00:00Z
Registrar Registration Expiration Date: 2027-08-04T00:00:00Z
Registrar: Eurodns S.A.
Registrar IANA ID: 1052
Registrar Abuse Contact Email: legalservices@eurodns.com
Registrar Abuse Contact Phone: +352.27220150
Domain Status: clientTransferProhibited http://www.icann.org/epp#clientTransferProhibited
Registry Registrant ID:
Registrant Name: Whois Privacy
Registrant Organization: Whois Privacy (enumDNS dba)
Registrant Street: BPM 333868, Banzelt 4 A
Registrant City: Root-sur-Syre
Registrant State/Province:
Registrant Postal Code: 6921
Registrant Country: LU
Registrant Phone: +352.27720304
Registrant Fax:
Registrant Email: 538284ec913d6d77_o@whoisprivacy.com
Registry Admin ID:
REGISTER-ID (live page): <none>
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
<none>
WAYBACK-root (every distinct body of the root page, with status):
<none>
WAYBACK-inventory (distinct URLs ever captured, any status):
<none>
==============================================================================
=== pages02.net
==============================================================================
TLS: subject=CN = pages00.net|issuer=C = US, O = Amazon, CN = Amazon RSA 2048 M04|
RDAP: <no JSON from https://rdap.org/domain/pages02.net>
WHOIS:
--- whois pages02.net @ whois.verisign-grs.com
Domain Name: PAGES02.NET
Registrar WHOIS Server: whois.markmonitor.com
Registrar URL: http://www.markmonitor.com
Updated Date: 2025-10-05T09:51:17Z
Creation Date: 2007-11-06T15:28:42Z
Registry Expiry Date: 2026-11-06T15:28:42Z
Registrar: MarkMonitor Inc.
Registrar IANA ID: 292
Registrar Abuse Contact Email: abusecomplaints@markmonitor.com
Registrar Abuse Contact Phone: +1.2086851750
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
unsolicited, commercial advertising or solicitations via e-mail, telephone,
Registrars.
--- whois pages02.net @ whois.markmonitor.com
Domain Name: pages02.net
Registrar WHOIS Server: whois.markmonitor.com
Registrar URL: http://www.markmonitor.com
Updated Date: 2025-10-05T09:51:17+0000
Creation Date: 2007-11-06T08:00:00+0000
Registrar Registration Expiration Date: 2026-11-06T00:00:00+0000
Registrar: MarkMonitor, Inc.
Registrar IANA ID: 292
Registrar Abuse Contact: https://corp.markmonitor.com/domain/ui/abuse-report
Registrar Abuse Contact Phone: +1.2086851750
Domain Status: clientUpdateProhibited (https://www.icann.org/epp#clientUpdateProhibited)
Domain Status: clientTransferProhibited (https://www.icann.org/epp#clientTransferProhibited)
Domain Status: clientDeleteProhibited (https://www.icann.org/epp#clientDeleteProhibited)
Registrant Organization: Acoustic, L.P.
Registrant Country: US
Registrant Email: Select Request Email Form at https://domains.markmonitor.com/whois/pages02.net
Tech Email: Select Request Email Form at https://domains.markmonitor.com/whois/pages02.net
For more information on WHOIS status codes, please visit:
https://www.icann.org/resources/pages/epp-status-codes
If you wish to contact this domain’s Registrant or Technical
contact, and such email address is not visible above, you may do so via our web
REGISTER-ID (live page): <none>
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
<none>
WAYBACK-root (every distinct body of the root page, with status):
<none>
WAYBACK-inventory (distinct URLs ever captured, any status):
<none>
==============================================================================
=== stat-track.com
==============================================================================
TLS: <no handshake>|
RDAP: <no JSON from https://rdap.org/domain/stat-track.com>
WHOIS:
--- whois stat-track.com @ whois.verisign-grs.com
Domain Name: STAT-TRACK.COM
Registrar WHOIS Server: whois.markmonitor.com
Registrar URL: http://www.markmonitor.com
Updated Date: 2025-08-11T04:15:37Z
Creation Date: 2016-02-02T18:14:54Z
Registry Expiry Date: 2029-02-02T18:14:54Z
Registrar: MarkMonitor Inc.
Registrar IANA ID: 292
Registrar Abuse Contact Email: abusecomplaints@markmonitor.com
Registrar Abuse Contact Phone: +1.2086851750
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
unsolicited, commercial advertising or solicitations via e-mail, telephone,
Registrars.
--- whois stat-track.com @ whois.markmonitor.com
REGISTER-ID (live page): <none>
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
<none>
WAYBACK-root (every distinct body of the root page, with status):
<none>
WAYBACK-inventory (distinct URLs ever captured, any status):
<none>
==============================================================================
=== trustpilot.net
==============================================================================
TLS: subject=CN = *.trustpilot.com|issuer=C = US, O = Amazon, CN = Amazon RSA 2048 M01|
RDAP: <no JSON from https://rdap.org/domain/trustpilot.net>
WHOIS:
--- whois trustpilot.net @ whois.verisign-grs.com
Domain Name: TRUSTPILOT.NET
Registrar WHOIS Server: whois.registrar.amazon
Registrar URL: http://registrar.amazon.com
Updated Date: 2026-08-20T13:52:11Z
Creation Date: 2009-09-24T13:51:45Z
Registry Expiry Date: 2027-09-24T13:51:45Z
Registrar: Amazon Registrar, Inc.
Registrar IANA ID: 468
Registrar Abuse Contact Email: trustandsafety@support.aws.com
Registrar Abuse Contact Phone: +1.2024422253
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
unsolicited, commercial advertising or solicitations via e-mail, telephone,
Registrars.
--- whois trustpilot.net @ whois.registrar.amazon
Domain Name: trustpilot.net
Registrar WHOIS Server: whois.registrar.amazon
Registrar URL:
Updated Date: 2026-08-20T13:52:11Z
Creation Date: 2009-09-24T13:51:45Z
Registrar Registration Expiration Date: 2027-09-24T13:51:45Z
Registrar: Amazon Registrar, Inc.
Registrar IANA ID: 468
Registrar Abuse Contact Email: trustandsafety@support.aws.com
Registrar Abuse Contact URL:
Registrar Abuse Contact Phone: +1.2024422253
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Registry Registrant ID: Not Available From Registry
Registrant Name: On behalf of trustpilot.net OWNER
Registrant Organization: c/o whoisproxy.com
Registrant Street: 604 Cameron Street
Registrant City: Alexandria
Registrant State/Province: VA
Registrant Postal Code: 22314
Registrant Country: US
Registrant Phone: +64.48319528
Registrant Phone Ext:
Registrant Fax:
REGISTER-ID (live page): <none>
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
<none>
WAYBACK-root (every distinct body of the root page, with status):
<none>
WAYBACK-inventory (distinct URLs ever captured, any status):
<none>
==============================================================================
=== awltovhc.com
==============================================================================
TLS: <no handshake>|
RDAP: <no JSON from https://rdap.org/domain/awltovhc.com>
WHOIS:
--- whois awltovhc.com @ whois.verisign-grs.com
Domain Name: AWLTOVHC.COM
Registrar WHOIS Server: whois.markmonitor.com
Registrar URL: http://www.markmonitor.com
Updated Date: 2026-03-05T09:42:06Z
Creation Date: 2004-04-06T01:59:55Z
Registry Expiry Date: 2027-04-06T01:59:55Z
Registrar: MarkMonitor Inc.
Registrar IANA ID: 292
Registrar Abuse Contact Email: abusecomplaints@markmonitor.com
Registrar Abuse Contact Phone: +1.2086851750
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
unsolicited, commercial advertising or solicitations via e-mail, telephone,
Registrars.
--- whois awltovhc.com @ whois.markmonitor.com
REGISTER-ID (live page): <none>
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
<none>
WAYBACK-root (every distinct body of the root page, with status):
<none>
WAYBACK-inventory (distinct URLs ever captured, any status):
<none>
==============================================================================
=== mmstat.com
==============================================================================
TLS: <no handshake>|
RDAP: <no JSON from https://rdap.org/domain/mmstat.com>
WHOIS:
--- whois mmstat.com @ whois.verisign-grs.com
Domain Name: MMSTAT.COM
Registrar WHOIS Server: grs-whois.hichina.com
Registrar URL: http://www.net.cn
Updated Date: 2025-11-11T02:28:15Z
Creation Date: 2007-12-25T02:04:23Z
Registry Expiry Date: 2026-12-25T02:04:23Z
Registrar: Alibaba Cloud Computing (Beijing) Co., Ltd.
Registrar IANA ID: 420
Registrar Abuse Contact Email: DomainAbuse@service.aliyun.com
Registrar Abuse Contact Phone: +86.95187
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
unsolicited, commercial advertising or solicitations via e-mail, telephone,
Registrars.
--- whois mmstat.com @ grs-whois.hichina.com
Domain Name: mmstat.com
Registrar WHOIS Server: grs-whois.hichina.com
Registrar URL: http://www.net.cn
Updated Date: 2025-11-11T02:28:15Z
Creation Date: 2007-12-25T02:04:23Z
Registrar Registration Expiration Date: 2026-12-25T02:04:23Z
Registrar: Alibaba Cloud Computing (Beijing) Co., Ltd.
Registrar IANA ID: 420
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Registrant City:
Registrant State/Province: zhe jiang
Registrant Country: CN
Registrant Email:https://whois.aliyun.com/whois/whoisForm
Registry Registrant ID: Not Available From Registry
Registrar Abuse Contact Email: DomainAbuse@service.aliyun.com
Registrar Abuse Contact Phone: +86.95187
For more information on Whois status codes, please visit https://icann.org/epp
Important Reminder: Per ICANN 2013RAA`s request, Hichina has modified domain names`whois format of dot com/net/cc/tv, you could refer to section 1.4 posted by ICANN on http://www.icann.org/en/resource
REGISTER-ID (live page): <none>
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
<none>
WAYBACK-root (every distinct body of the root page, with status):
20040418103010 200 L3I76U4CWF2JPJJ7TJT3OQ3HC76I4TJ4 5079
20040618230944 200 5YPLSZTKMCFIAP6PV7YQ4ZJGIQ2REAUL 4477
20040830192456 200 YO57WGRKWVDDVTWIQ5L3AECNPU5LB5N7 4499
20050207110740 200 4ZBPB6JILDLZHKKLDFSKYT76AID3RJAX 3957
20121107005529 200 VXEDWGPHSNERWHDOUD6YWRWNT4ZOLEX4 293
20160602031026 302 3I42H3S6NNFQ2MSVX7XZKYAYSCX5QBYJ 385
20160702124429 200 VXEDWGPHSNERWHDOUD6YWRWNT4ZOLEX4 280
20160708090825 302 3I42H3S6NNFQ2MSVX7XZKYAYSCX5QBYJ 390
20160807205056 200 VXEDWGPHSNERWHDOUD6YWRWNT4ZOLEX4 282
20160811230349 404 ICXKVTNK4R2OVCE62NCVL5CMPQ4WJS2Y 656
20160826033223 404 FEB6T65ZZ5NSFCYBIUOTVQVM6QX2WRKD 656
20160902042951 404 XB4W7YCLFEQMCLQ5V6ST7VR4K6MZKLNQ 656
20160930205513 404 3WJRNTQKWIOU2YFCFYYZPBWKYHEEKKOY 654
20161003195112 404 UGYEHFD2AU2NFYQM2EQ2PDVEOPVU7PPX 651
20161013195226 404 GAWQ55DUSH6H4PV7E7TATJNCZSAEOGST 655
20161110161323 404 6OUAWVODYM2LHDBCVSYU22UQFJ7KDWXW 508
20161126022250 404 GM7OEY77NSP7WFEJD55CU7BYY4PMBJLP 653
20161203025021 404 5YICU7EHTXNY7HL4DSITT6EI7ZGYIDGP 652
20161209000532 404 NZ653K2GHVXH5KJ62AJUNF3HK4H7WV4Q 655
20161209232529 404 IZMZLSM3O3OIDTT4UKSI6VJIEMXCWZBT 655
WAYBACK-inventory (distinct URLs ever captured, any status):
<none>
==============================================================================
=== collective-media.net
==============================================================================
TLS: <no handshake>|
RDAP: <no JSON from https://rdap.org/domain/collective-media.net>
WHOIS:
--- whois collective-media.net @ whois.verisign-grs.com
Domain Name: COLLECTIVE-MEDIA.NET
Registrar WHOIS Server: whois.godaddy.com
Registrar URL: http://www.godaddy.com
Updated Date: 2026-06-24T16:17:46Z
Creation Date: 2005-06-23T22:00:13Z
Registry Expiry Date: 2027-06-23T22:00:13Z
Registrar: GoDaddy.com, LLC
Registrar IANA ID: 146
Registrar Abuse Contact Email: abuse@godaddy.com
Registrar Abuse Contact Phone: 480-624-2505
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientRenewProhibited https://icann.org/epp#clientRenewProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
unsolicited, commercial advertising or solicitations via e-mail, telephone,
Registrars.
--- whois collective-media.net @ whois.godaddy.com
REGISTER-ID (live page): <none>
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
<none>
WAYBACK-root (every distinct body of the root page, with status):
<none>
WAYBACK-inventory (distinct URLs ever captured, any status):
20130713205839 http://collective-media.net 200
20130725171412 http://collective-media.net/images/blendbar.jpg 200
20130725181451 http://collective-media.net/images/glogo.jpg 200
20130725171405 http://collective-media.net/images/glogo2.png 200
20130725171405 http://collective-media.net/images/go-button-gateway.gif 200
20130725171405 http://collective-media.net/images/petabox-header.png 200
20040728215020 http://www.collective-media.net/robots.txt 200
20130725171004 http://collective-media.net/static/images/toolbar/transp-black-pixel.png 404
20130725171404 http://collective-media.net/stylesheets/archive.css?v=51519 200
20071024121253 http://a.collective-media.net:80/ 403
20091222074004 http://a.collective-media.net:80/.../bieb;kw=;tile=1;sz=728x25;ord=1937170991100979 404
20141010200707 https://a.collective-media.net/378348.gif?partner_uid=1391ea643ab7c93&redirect=1 503
20130816202246 http://a.collective-media.net/?01AD=3-_t5Ky5GjgPnLaMQRzv50l-mEBCSGAMbIwjzJj6WFyh70_pd18-Kow&01RI=6241971CA61FE62&01NA=na 403
20120529162407 http://a.collective-media.net/?01AD=3-cehLl-oZDJIbl-nz27OzCHuOuvlqf0wc42jREmE3w-tu2TAQvRqXA&01RI=2B442B757B576F1&01NA= 403
20120923092934 http://a.collective-media.net/?01AD=3-eizOrlv3zOfbc5jes3uentRU5sdGBzvgy2DF7EyTc8Smu5pEPsi8Q&01RI=AF983DFDF56F329&01NA=na 403
20111106234245 http://a.collective-media.net/?01AD=3-ettIfmOHG75O0tl9bEx0ifgPtYuXJFYYkI2Zvz0vI9A9u4d7C-bug&01RI=CB50609CEE6307F&01NA=na 403
20130202210431 http://a.collective-media.net/?01AD=3-FBsYuKY0ASWXDIF74SCJIx_qWDPmG0-63g8yz8MkIC2ysWXlI0NFg&01RI=2907F740DB9FA16&01NA= 403
20100723024744 http://a.collective-media.net/?01AD=3-GocEFdPQxbJ4Ts3yaSF42NpdiqywxJNnd-c0XoxmEV-bnz2_AtFug&01RI=0EB3BF3094C2BEA&01NA= 403
20121015040240 http://a.collective-media.net/?01AD=3-HMEAKbzhSv37fhSvU9ehS5asTecgR0-QSRIY0aZGSEisPz2226KRQ&01RI=7A126CA2F8C9597&01NA=na 403
20120224220720 http://a.collective-media.net/?01AD=3-KCAWPGEljm1DWe2eMKv6Bf7aseWrO6wgXZSkjPc2MrJL1LgjX5YgQ&01RI=C58645286210F60&01NA=na 403
==============================================================================
=== lduhtrp.net
==============================================================================
TLS: <no handshake>|
RDAP: <no JSON from https://rdap.org/domain/lduhtrp.net>
WHOIS:
--- whois lduhtrp.net @ whois.verisign-grs.com
Domain Name: LDUHTRP.NET
Registrar WHOIS Server: whois.markmonitor.com
Registrar URL: http://www.markmonitor.com
Updated Date: 2026-03-05T09:42:04Z
Creation Date: 2004-04-06T01:59:57Z
Registry Expiry Date: 2027-04-06T01:59:57Z
Registrar: MarkMonitor Inc.
Registrar IANA ID: 292
Registrar Abuse Contact Email: abusecomplaints@markmonitor.com
Registrar Abuse Contact Phone: +1.2086851750
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
unsolicited, commercial advertising or solicitations via e-mail, telephone,
Registrars.
--- whois lduhtrp.net @ whois.markmonitor.com
Domain Name: lduhtrp.net
Registrar WHOIS Server: whois.markmonitor.com
Registrar URL: http://www.markmonitor.com
Updated Date: 2026-03-05T09:42:04+0000
Creation Date: 2004-04-06T01:59:57+0000
Registrar Registration Expiration Date: 2027-04-06T00:00:00+0000
Registrar: MarkMonitor, Inc.
Registrar IANA ID: 292
Registrar Abuse Contact: https://corp.markmonitor.com/domain/ui/abuse-report
Registrar Abuse Contact Phone: +1.2086851750
Domain Status: clientUpdateProhibited (https://www.icann.org/epp#clientUpdateProhibited)
Domain Status: clientTransferProhibited (https://www.icann.org/epp#clientTransferProhibited)
Domain Status: clientDeleteProhibited (https://www.icann.org/epp#clientDeleteProhibited)
Registrant Name: Domain Administrator
Registrant Organization: Conversant, Inc.
Registrant Street: 30699 Russell Ranch Rd, Suite 250
Registrant City: Westlake Village
Registrant State/Province: California
Registrant Postal Code: 91362
Registrant Country: US
Registrant Phone: +1.8185323580
REGISTER-ID (live page): <none>
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
<none>
WAYBACK-root (every distinct body of the root page, with status):
<none>
WAYBACK-inventory (distinct URLs ever captured, any status):
<none>
==============================================================================
=== hqseek.com
==============================================================================
TLS: subject=CN = *.hqseek.com|issuer=C = US, O = Let's Encrypt, CN = YE1|
RDAP: <no JSON from https://rdap.org/domain/hqseek.com>
WHOIS:
--- whois hqseek.com @ whois.verisign-grs.com
Domain Name: HQSEEK.COM
Registrar WHOIS Server: whois.directnic.com
Registrar URL: http://www.directnic.com
Updated Date: 2024-09-24T13:43:40Z
Creation Date: 2001-01-01T21:24:50Z
Registry Expiry Date: 2028-01-01T21:24:50Z
Registrar: DNC Holdings, Inc.
Registrar IANA ID: 291
Registrar Abuse Contact Email: abuse@directnic.com
Registrar Abuse Contact Phone: +1.5043550081
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
unsolicited, commercial advertising or solicitations via e-mail, telephone,
Registrars.
--- whois hqseek.com @ whois.directnic.com
Domain Name: HQSEEK.COM
Registrar WHOIS Server: whois.directnic.com
Registrar URL: http://www.directnic.com
Updated Date: 2024-09-24T08:43:40Z
Creation Date: 2001-01-01T15:24:50Z
Registrar Registration Expiration Date: 2028-01-01T15:24:50Z
Registrar: DNC Holdings, Inc
Registrar IANA ID: 291
Registrar Abuse Contact Email: abuse@directnic.com
Registrar Abuse Contact Phone: +1.5043550081
Domain Status: clientDeleteProhibited (https://www.icann.org/epp#clientDeleteProhibited)
Domain Status: clientTransferProhibited (https://www.icann.org/epp#clientTransferProhibited)
Domain Status: clientUpdateProhibited (https://www.icann.org/epp#clientUpdateProhibited)
Registry Registrant ID: Not Available From Registry
Registrant Name: Jewella Privacy - b5985
Registrant Organization: Jewella Privacy LLC Privacy ID# 508547
Registrant Street: 5860 Citrus Blvd, Suite D, #172
Registrant City: Harahan
Registrant State/Province: LA
Registrant Postal Code: 70123
Registrant Country: US
REGISTER-ID (live page): <none>
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
<none>
WAYBACK-root (every distinct body of the root page, with status):
<none>
WAYBACK-inventory (distinct URLs ever captured, any status):
<none>
==============================================================================
=== wishabi.com
==============================================================================
TLS: subject=CN = flipp.com|issuer=C = US, O = Amazon, CN = Amazon RSA 2048 M04|
RDAP: <no JSON from https://rdap.org/domain/wishabi.com>
WHOIS:
--- whois wishabi.com @ whois.verisign-grs.com
Domain Name: WISHABI.COM
Registrar WHOIS Server: whois.registrar.amazon
Registrar URL: http://registrar.amazon.com
Updated Date: 2026-05-14T07:32:41Z
Creation Date: 2006-11-19T20:51:35Z
Registry Expiry Date: 2026-11-19T20:51:35Z
Registrar: Amazon Registrar, Inc.
Registrar IANA ID: 468
Registrar Abuse Contact Email: trustandsafety@support.aws.com
Registrar Abuse Contact Phone: +1.2024422253
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
unsolicited, commercial advertising or solicitations via e-mail, telephone,
Registrars.
--- whois wishabi.com @ whois.registrar.amazon
Domain Name: wishabi.com
Registrar WHOIS Server: whois.registrar.amazon
Registrar URL:
Updated Date: 2026-05-14T07:32:41Z
Creation Date: 2006-11-19T20:51:35Z
Registrar Registration Expiration Date: 2026-11-19T20:51:35Z
Registrar: Amazon Registrar, Inc.
Registrar IANA ID: 468
Registrar Abuse Contact Email: trustandsafety@support.aws.com
Registrar Abuse Contact URL:
Registrar Abuse Contact Phone: +1.2024422253
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Registry Registrant ID: Not Available From Registry
Registrant Name: On behalf of wishabi.com OWNER
Registrant Organization: c/o whoisproxy.com
Registrant Street: 604 Cameron Street
Registrant City: Alexandria
Registrant State/Province: VA
Registrant Postal Code: 22314
Registrant Country: US
Registrant Phone: +64.48319528
Registrant Phone Ext:
Registrant Fax:
REGISTER-ID (live page): <none>
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
<none>
WAYBACK-root (every distinct body of the root page, with status):
<none>
WAYBACK-inventory (distinct URLs ever captured, any status):
<none>
==============================================================================
=== stripst.com
==============================================================================
TLS: subject=CN = stripst.com|issuer=C = US, O = Google Trust Services, CN = WE1|
RDAP: <no JSON from https://rdap.org/domain/stripst.com>
WHOIS:
--- whois stripst.com @ whois.verisign-grs.com
Domain Name: STRIPST.COM
Registrar WHOIS Server: whois.namecheap.com
Registrar URL: http://www.namecheap.com
Updated Date: 2025-10-24T08:55:16Z
Creation Date: 2018-11-23T13:43:19Z
Registry Expiry Date: 2026-11-23T13:43:19Z
Registrar: NameCheap, Inc.
Registrar IANA ID: 1068
Registrar Abuse Contact Email: abuse@namecheap.com
Registrar Abuse Contact Phone: +1.6613102107
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
unsolicited, commercial advertising or solicitations via e-mail, telephone,
Registrars.
--- whois stripst.com @ whois.namecheap.com
Domain name: stripst.com
Registrar WHOIS Server: whois.namecheap.com
Registrar URL: http://www.namecheap.com
Updated Date: 2025-10-24T08:55:16.55Z
Creation Date: 2018-11-23T13:43:19.00Z
Registrar Registration Expiration Date: 2026-11-23T13:43:19.00Z
Registrar: NAMECHEAP INC
Registrar IANA ID: 1068
Registrar Abuse Contact Email: abuse@namecheap.com
Registrar Abuse Contact Phone: +1.9854014545
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Registry Registrant ID:
Registrant Name: Redacted for Privacy Purposes
Registrant Organization: Privacy service provided by WITHHELD FOR PRIVACY LLC
Registrant Street: 16192 Coastal Highway
Registrant City: Lewes
Registrant State/Province: Delaware
Registrant Postal Code: 19958
Registrant Country: US
Registrant Phone: +1.3022061391
Registrant Phone Ext:
Registrant Fax:
Registrant Fax Ext:
REGISTER-ID (live page): <none>
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
<none>
WAYBACK-root (every distinct body of the root page, with status):
<none>
WAYBACK-inventory (distinct URLs ever captured, any status):
<none>
==============================================================================
=== sa-as.com
==============================================================================
TLS: <no handshake>|
RDAP-registrant:
RDAP-registrar: MarkMonitor Inc.
RDAP-events: registration=2006-12-15T07:06:41Z expiration=2026-12-15T07:06:41Z last changed=2025-11-13T09:13:57Z last update of RDAP database=2026-09-11T18:36:44Z
RDAP-status: client delete prohibited,client transfer prohibited,client update prohibited
RDAP-ns: ns1.markmonitor.com,ns2.markmonitor.com,ns3.markmonitor.com,ns4.markmonitor.com,ns5.markmonitor.com,ns6.markmonitor.com,ns7.markmonitor.com
WHOIS:
--- whois sa-as.com @ whois.verisign-grs.com
Domain Name: SA-AS.COM
Registrar WHOIS Server: whois.markmonitor.com
Registrar URL: http://www.markmonitor.com
Updated Date: 2025-11-13T09:13:57Z
Creation Date: 2006-12-15T07:06:41Z
Registry Expiry Date: 2026-12-15T07:06:41Z
Registrar: MarkMonitor Inc.
Registrar IANA ID: 292
Registrar Abuse Contact Email: abusecomplaints@markmonitor.com
Registrar Abuse Contact Phone: +1.2086851750
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
unsolicited, commercial advertising or solicitations via e-mail, telephone,
Registrars.
--- whois sa-as.com @ whois.markmonitor.com
Domain Name: sa-as.com
Registrar WHOIS Server: whois.markmonitor.com
Registrar URL: http://www.markmonitor.com
Updated Date: 2025-12-24T20:30:56+0000
Creation Date: 2006-12-15T07:06:41+0000
Registrar Registration Expiration Date: 2026-12-15T00:00:00+0000
Registrar: MarkMonitor, Inc.
Registrar IANA ID: 292
Registrar Abuse Contact: https://corp.markmonitor.com/domain/ui/abuse-report
Registrar Abuse Contact Phone: +1.2086851750
Domain Status: clientUpdateProhibited (https://www.icann.org/epp#clientUpdateProhibited)
Domain Status: clientTransferProhibited (https://www.icann.org/epp#clientTransferProhibited)
Domain Status: clientDeleteProhibited (https://www.icann.org/epp#clientDeleteProhibited)
Registrant Organization: FoundryCo, Inc.
Registrant Country: US
Registrant Email: Select Request Email Form at https://domains.markmonitor.com/whois/sa-as.com
Tech Email: Select Request Email Form at https://domains.markmonitor.com/whois/sa-as.com
For more information on WHOIS status codes, please visit:
https://www.icann.org/resources/pages/epp-status-codes
If you wish to contact this domain’s Registrant or Technical
contact, and such email address is not visible above, you may do so via our web
REGISTER-ID (live page): <none>
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
20010410184915 http://www.sa-as.com:80/contact.html 200
20010419142217 http://www.sa-as.com:80/contact_l.html 200
20011019092328 http://sa-as.com:80/contact_r.html 200
20050119203635 http://sa-as.com:80/e_contact.html 200
20020222103237 http://sa-as.com:80/e_contact_r.html 200
20020228021931 http://sa-as.com:80/e_policy.html 200
20020508011510 http://sa-as.com:80/gif/contact_b.gif 200
20010624045934 http://www.sa-as.com:80/gif/contact_w.gif 200
20010419161526 http://www.sa-as.com:80/policy.html 200
20180227170927 http://stats.sa-as.com/index.php?DID=249542&MyPage=undefined&MyID=undefined&MySearch=undefined&TitleTag=Freight%20Visibility%20Platform%20for%20Brokers%2C%203PLs%20%26%204PLs%20-%20MacroPoint&Hst=web.archive.org&width=1920&height=1080&ColDep=24&Lang=en-US&Cook=true&Page=%2Fweb%2F20170809051019%2Fhttp%3A%2F%2Fwww.macropoint.com%3A80%2Fbrokers%2F&Reff=https%3A//web.archive.org/web/20170825165434/http%3A//www.macropoint.com%3A80/contact-us&FullPage=https%3A%2F%2Fweb.archive.org%2Fweb%2F20170809051019%2Fhttp%3A%2F%2Fwww.macropoint.com%3A80%2Fbrokers%2F&PMCD=https%3A%2F%2Fweb.archive.org%2Fweb%2F20170809051019%2Fhttp%3A%2F%2Fwww.macropoint.com%3A80%2Fbrokers%2F&r=0.20374824988548967 200
20190717040651 https://stats.sa-as.com/index.php?DID=257434&MyPage=undefined&MyID=undefined&MySearch=undefined&TitleTag=Certifications%20%26%20Awards%20%7C%20Iron%20Mountain&Hst=www.ironmountain.com&width=1600&height=1000&ColDep=24&Lang=en-US&Cook=true&Page=%2Fabout-us%2Fcertifications-and-awards&Reff=&FullPage=https%3A%2F%2Fwww.ironmountain.com%2Fabout-us%2Fcertifications-and-awards&PMCD=https://www.ironmountain.com/about-us/certifications-and-awards&r=0.24485078892687118 200
20200305164233 http://stats.sa-as.com/index.php?DID=22055&MyPage=undefined&MyID=undefined&MySearch=undefined&TitleTag=Radians%20Safety%20-%20Radians%20History%20%26%20Awards&Hst=web.archive.org&width=1920&height=1080&ColDep=24&Lang=en-US&Cook=true&Page=%2Fweb%2F20181003153251%2Fhttps%3A%2F%2Fwww.radians.com%2Fradsite%2Findex.php%2Fabout%2Fcompany-information%2Fradians-history-awards&Reff=https%3A//web.archive.org/web/20190205010238/https%3A//www.radians.com/radsite/index.php/industrial/industrial-safety-products/lens-cleaning&FullPage=https%3A%2F%2Fweb.archive.org%2Fweb%2F20181003153251%2Fhttps%3A%2F%2Fwww.radians.com%2Fradsite%2Findex.php%2Fabout%2Fcompany-information%2Fradians-history-awards&PMCD=https%3A%2F%2Fweb.archive.org%2Fweb%2F20181003153251%2Fhttps%3A%2F%2Fwww.radians.com%2Fradsite%2Findex.php%2Fabout%2Fcompany-information%2Fradians-history-awards&r=0.09305791879655656 200
WAYBACK-root (every distinct body of the root page, with status):
<html><head><meta charset="UTF-8"><title>Internet Archive: Temporarily Offline</title><style>p{font-size:24px;}img{margin-bottom:2rem;}</style></head>
<body style="padding:30px 0;">
<div style="float:left;width:260px;text-align:center;">
<img xsrc="logo_ia.jpg" src="data:image/jpeg;base64,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">
<img xsrc="logo_wm.png" src="data:image/png;base64,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">
<img xsrc="logo_ol.png" src="data:image/png;base64,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">
<img xsrc="logo_ait.png" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJYAAACCBAMAAABWaCxcAAAAMFBMVEUAdcj////N4/RKndc4k9SizOsjh8+y1e7d7Pfy+PwNe8qDvOSSxOdzs+Bmq95cptuwcM7yAAADDUlEQVR42u2Zz27TQBDGZ0makPBHniS0OE1osATnVubEiYoXCG+QgsS5QeKePgBSw6239A3SK3AonJForyChwgu0j8Ds2saJ7dje9ajqwZ+sZD3Z/cmfPTteO1CqlJH+fgAuTREReHSOyAWro9IhMOjcY7WAQehrAoUlApYFhbUTsDagsPC/ZsBlkcEkJ8vncKRrbZE1Z7NY2CQin0lGFllkM3m8zGrzWSxksonIZlIwsqbIZxJjGrFZJJOMLOSzaMyqJrGGfBaxy2cRkZN1wWbRMCv2kll9PotGJ6yByGZSMLIiE7qQyciBVML9bXOLthcYh2zzu8bAC9w3Nxkfacy6HR8pTE2GAzvx0Lr5VYwnHCfr0HQ1WHSFuJvO6hlOoIdJE3RmOK+D4KvF+V2QtRjbMiyDVlINMl0qJZXZC32L4YPQiWFBnMZWN82xadXHHCp21zAyKfKwOnwWA5PZZZDNpGBkHSCfyVVjdiPxWW6L2SyLkWXrWwxZ2ieslp81z7SYn2VlWszPQk7WJMNiGkvT5LEOa0vXYsjSnEaNVJaeSZGblb14Gqey9EwiH6upyzpLOV26LKtk3USWdk5cXU+uss5HzZozSl+q6rD2IUOPM1iM7+BLlboZcl36qP36qXbuvZ9V3W1wn0PFfUEbvHHhpUtdVM9nQE36TJna/vz2/iu01qja4TqVj31BrSnKBbvt9Wypfq0crAF9xViow7rrQawGDaRS9vYsZFVkq0+sy8uAdTRF++PqUqgquBzVoza9Lg5ZFJXbAR14wFJdVrPsgNWih2KIsJp6rPbYZ7UBo6xuXYv1x9ppS1ZVIjYU69HvgLUpcE6sz5/ysCRFYJAT6s+gNWp6LPJMv8nr2NFkdeMsEbK+f/mheVx9xbKPllleAj7IwSJ5xGF47rVZ4Q3tFFS6R1nU3OtB/utYV8sNP5O+LrNo9ImlwRLKoL8Jyv3REgsNWZvqsWESZ1FUl4XROiFv6EMN1jcHwBnI7bWjXupd3ZG7T+GWcwr0QbF3jiO/qN8TGZlDqVLXpH9l9QF1iGaCHAAAAABJRU5ErkJggg==">
</div>
<div style="overflow:hidden;width:500px;padding:0 30px">
<h1 style="margin-top:0">Temporarily Offline</h1>
<p>Internet Archive services are temporarily offline.</p>
<p>Please check our official accounts, including <a href="https://twitter.com/internetarchive/">Twitter/X</a>, <a href="https://bsky.app/profile/did:plc:73dpznbu4wqwtcyurwbiulov">Bluesky</a> or <a href="https://mastodon.archive.org/deck/@internetarchive">Mastodon</a> for the latest information.</p>
<p>We apologize for the inconvenience.</p>
</div></body></html>
WAYBACK-inventory (distinct URLs ever captured, any status):
20010202020100 http://www.sa-as.com:80/ 200
20240514050615 https://sa-as.com/.well-known/ai-plugin.json 404
20240514070017 https://sa-as.com/.well-known/assetlinks.json 404
20240514033847 https://sa-as.com/.well-known/dnt-policy.txt 404
20240514034955 https://sa-as.com/.well-known/gpc.json 404
20240514090411 https://sa-as.com/.well-known/nodeinfo 404
20240514032709 https://sa-as.com/.well-known/openid-configuration 404
20240514043853 https://sa-as.com/.well-known/security.txt 404
20240514075942 https://sa-as.com/.well-known/trust.txt 404
20240514044351 https://sa-as.com/ads.txt 404
20240514054024 https://sa-as.com/app-ads.txt 404
20210125181320 https://sa-as.com/autoengage-login.php 200
20010506221945 http://www.sa-as.com:80/books.html 200
20020708055634 http://sa-as.com:80/callcenter.html 200
20010410170232 http://www.sa-as.com:80/column.html 200
20010421092917 http://www.sa-as.com:80/column_l.html 200
20010422032532 http://www.sa-as.com:80/column_r.html 200
20010205061900 http://www.sa-as.com:80/Contact.html 200
20010419142217 http://www.sa-as.com:80/contact_l.html 200
20011019092328 http://sa-as.com:80/contact_r.html 200
==============================================================================
=== cratecamera.com
==============================================================================
TLS: subject=CN = cratecamera.com|issuer=C = US, O = Let's Encrypt, CN = YE1|
RDAP-registrant:
RDAP-registrar: NameCheap, Inc.
RDAP-events: registration=2020-08-31T15:57:20Z expiration=2027-08-31T15:57:20Z last changed=2026-08-02T21:06:40Z last update of RDAP database=2026-09-11T18:36:29Z
RDAP-status: client transfer prohibited
RDAP-ns: ns-1118.awsdns-11.org,ns-1972.awsdns-54.co.uk,ns-284.awsdns-35.com,ns-615.awsdns-12.net
WHOIS:
--- whois cratecamera.com @ whois.verisign-grs.com
Domain Name: CRATECAMERA.COM
Registrar WHOIS Server: whois.namecheap.com
Registrar URL: http://www.namecheap.com
Updated Date: 2026-08-02T21:06:40Z
Creation Date: 2020-08-31T15:57:20Z
Registry Expiry Date: 2027-08-31T15:57:20Z
Registrar: NameCheap, Inc.
Registrar IANA ID: 1068
Registrar Abuse Contact Email: abuse@namecheap.com
Registrar Abuse Contact Phone: +1.6613102107
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
unsolicited, commercial advertising or solicitations via e-mail, telephone,
Registrars.
--- whois cratecamera.com @ whois.namecheap.com
Domain name: cratecamera.com
Registrar WHOIS Server: whois.namecheap.com
Registrar URL: http://www.namecheap.com
Updated Date: 2026-08-02T21:06:40.27Z
Creation Date: 2020-08-31T15:57:20.00Z
Registrar Registration Expiration Date: 2027-08-31T15:57:20.00Z
Registrar: NAMECHEAP INC
Registrar IANA ID: 1068
Registrar Abuse Contact Email: abuse@namecheap.com
Registrar Abuse Contact Phone: +1.9854014545
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Registry Registrant ID:
Registrant Name: Leven Labs Inc
Registrant Organization: Leven Labs, Inc.
Registrant Street: P.O. Box 12445
Registrant City: Gainesville
Registrant State/Province: FL
Registrant Postal Code: 32604
Registrant Country: US
Registrant Phone: +1.8772428884
Registrant Phone Ext:
Registrant Fax:
Registrant Fax Ext:
REGISTER-ID (live page): <none>
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
<none>
WAYBACK-root (every distinct body of the root page, with status):
<none>
WAYBACK-inventory (distinct URLs ever captured, any status):
<none>
==============================================================================
=== globo.com
==============================================================================
TLS: subject=CN = globo.com|issuer=C = US, O = Let's Encrypt, CN = YR1|
RDAP-registrant:
RDAP-registrar: 1API GmbH
RDAP-events: registration=1998-12-21T05:00:00Z expiration=2026-12-21T05:00:00Z last changed=2025-12-22T08:01:44Z last update of RDAP database=2026-09-11T18:36:29Z
RDAP-status: client delete prohibited,client transfer prohibited
RDAP-ns: ns01.globo.com,ns02.globo.com,ns03.globo.com,ns04.globo.com
WHOIS:
--- whois globo.com @ whois.verisign-grs.com
Domain Name: GLOBO.COM
Registrar WHOIS Server: whois.1api.net
Registrar URL: http://www.1api.net
Updated Date: 2025-12-22T08:01:44Z
Creation Date: 1998-12-21T05:00:00Z
Registry Expiry Date: 2026-12-21T05:00:00Z
Registrar: 1API GmbH
Registrar IANA ID: 1387
Registrar Abuse Contact Email: abuse@1api.net
Registrar Abuse Contact Phone: +49.68949396850
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
unsolicited, commercial advertising or solicitations via e-mail, telephone,
Registrars.
--- whois globo.com @ whois.1api.net
Domain Name: globo.com
Registrar WHOIS Server: whois.1api.net
Registrar URL:
Updated Date: 2025-12-22T08:01:44Z
Creation Date: 1998-12-21T05:00:00Z
Registrar Registration Expiration Date: 2026-12-21T05:00:00Z
Registrar: 1API GmbH
Registrar IANA ID: 1387
Registrar Abuse Contact Email: abuse@1api.net
Registrar Abuse Contact URL:
Registrar Abuse Contact Phone: +49.68949396850
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Registry Registrant ID: REDACTED FOR PRIVACY
Registrant Name: REDACTED FOR PRIVACY
Registrant Organization: REDACTED FOR PRIVACY
Registrant Street: REDACTED FOR PRIVACY
Registrant Street: REDACTED FOR PRIVACY
Registrant Street: REDACTED FOR PRIVACY
Registrant City: REDACTED FOR PRIVACY
Registrant State/Province: RJ
Registrant Postal Code: REDACTED FOR PRIVACY
REGISTER-ID (live page): vatar--pointer
vatar-container
vatar-container .edit-ic
vativeDestroy
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
<none>
WAYBACK-root (every distinct body of the root page, with status):
<none>
WAYBACK-inventory (distinct URLs ever captured, any status):
<none>
==============================================================================
=== offshoregeology.com
==============================================================================
TLS: subject=CN = offshoregeology.com|issuer=C = US, O = Let's Encrypt, CN = YE2|
RDAP-registrant:
RDAP-registrar: NameCheap, Inc.
RDAP-events: registration=2015-12-01T11:03:13Z expiration=2026-12-01T11:03:13Z last changed=2025-11-02T15:18:23Z last update of RDAP database=2026-09-11T18:36:29Z
RDAP-status: client transfer prohibited
RDAP-ns: ns-1311.awsdns-35.org,ns-164.awsdns-20.com,ns-1907.awsdns-46.co.uk,ns-985.awsdns-59.net
WHOIS:
--- whois offshoregeology.com @ whois.verisign-grs.com
Domain Name: OFFSHOREGEOLOGY.COM
Registrar WHOIS Server: whois.namecheap.com
Registrar URL: http://www.namecheap.com
Updated Date: 2025-11-02T15:18:23Z
Creation Date: 2015-12-01T11:03:13Z
Registry Expiry Date: 2026-12-01T11:03:13Z
Registrar: NameCheap, Inc.
Registrar IANA ID: 1068
Registrar Abuse Contact Email: abuse@namecheap.com
Registrar Abuse Contact Phone: +1.6613102107
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
unsolicited, commercial advertising or solicitations via e-mail, telephone,
Registrars.
--- whois offshoregeology.com @ whois.namecheap.com
Domain name: offshoregeology.com
Registrar WHOIS Server: whois.namecheap.com
Registrar URL: http://www.namecheap.com
Updated Date: 2025-11-02T15:18:24.04Z
Creation Date: 2015-12-01T11:03:13.00Z
Registrar Registration Expiration Date: 2026-12-01T11:03:13.00Z
Registrar: NAMECHEAP INC
Registrar IANA ID: 1068
Registrar Abuse Contact Email: abuse@namecheap.com
Registrar Abuse Contact Phone: +1.9854014545
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Registry Registrant ID:
Registrant Name: Leven Labs Inc
Registrant Organization: Leven Labs, Inc.
Registrant Street: P.O. Box 12445
Registrant City: Gainesville
Registrant State/Province: FL
Registrant Postal Code: 32604
Registrant Country: US
Registrant Phone: +1.8772428884
Registrant Phone Ext:
Registrant Fax:
Registrant Fax Ext:
REGISTER-ID (live page): <none>
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
<none>
WAYBACK-root (every distinct body of the root page, with status):
<none>
WAYBACK-inventory (distinct URLs ever captured, any status):
<none>
==============================================================================
=== km0trk.com
==============================================================================
TLS: <no handshake>|
RDAP-registrant:
RDAP-registrar: Squarespace Domains II LLC
RDAP-events: registration=2021-02-03T19:31:33Z expiration=2027-02-03T19:31:33Z last changed=2026-07-23T18:35:50Z last update of RDAP database=2026-09-11T18:36:29Z
RDAP-status: client delete prohibited,client transfer prohibited
RDAP-ns: ns-cloud-e1.googledomains.com,ns-cloud-e2.googledomains.com,ns-cloud-e3.googledomains.com,ns-cloud-e4.googledomains.com
WHOIS:
--- whois km0trk.com @ whois.verisign-grs.com
Domain Name: KM0TRK.COM
Registrar WHOIS Server: whois.squarespace.domains
Registrar URL: http://domains2.squarespace.com
Updated Date: 2026-07-23T18:35:50Z
Creation Date: 2021-02-03T19:31:33Z
Registry Expiry Date: 2027-02-03T19:31:33Z
Registrar: Squarespace Domains II LLC
Registrar IANA ID: 895
Registrar Abuse Contact Email: abuse-complaints@squarespace.com
Registrar Abuse Contact Phone: +1.6466935324
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
unsolicited, commercial advertising or solicitations via e-mail, telephone,
Registrars.
--- whois km0trk.com @ whois.squarespace.domains
Domain Name: km0trk.com
Registrar WHOIS Server: whois.squarespace.domains
Registrar URL: https://domains2.squarespace.com
Registrar: Squarespace Domains II LLC
Registrar IANA ID: 895
Registrar Abuse Contact Email: abuse-complaints@squarespace.com
Registrar Abuse Contact Phone: +1.646-693-5324
Updated Date: 2026-07-23T18:35:50.543619Z
Creation Date: 2021-02-03T19:31:33Z
Registrar Registration Expiration Date: 2027-02-03T19:31:33Z
Domain Status: client transfer prohibited http://www.icann.org/epp#client transfer prohibited
Domain Status: client delete prohibited http://www.icann.org/epp#client delete prohibited
Registry Registrant ID:
Registrant Name: REDACTED FOR PRIVACY
Registrant Organization:
Registrant Street: REDACTED FOR PRIVACY
Registrant City: REDACTED FOR PRIVACY
Registrant State/Province: NSW
Registrant Postal Code: REDACTED FOR PRIVACY
Registrant Country: AU
Registrant Phone: REDACTED FOR PRIVACY
Registrant Phone Ext:
REGISTER-ID (live page): <none>
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
<none>
WAYBACK-root (every distinct body of the root page, with status):
<none>
WAYBACK-inventory (distinct URLs ever captured, any status):
<none>
==============================================================================
=== cjponyparts.com
==============================================================================
TLS: subject=CN = cjponyparts.com|issuer=C = US, O = Let's Encrypt, CN = YE1|
RDAP-registrant:
RDAP-registrar: Network Solutions, LLC
RDAP-events: registration=1997-05-12T04:00:00Z expiration=2029-05-13T04:00:00Z last changed=2024-04-12T13:47:32Z last update of RDAP database=2026-09-11T18:36:29Z
RDAP-status: client transfer prohibited
RDAP-ns: pdns103.ultradns.biz,pdns103.ultradns.com,pdns103.ultradns.net,pdns103.ultradns.org
WHOIS:
--- whois cjponyparts.com @ whois.verisign-grs.com
Domain Name: CJPONYPARTS.COM
Registrar WHOIS Server: whois.networksolutions.com
Registrar URL: http://networksolutions.com
Updated Date: 2024-04-12T13:47:32Z
Creation Date: 1997-05-12T04:00:00Z
Registry Expiry Date: 2029-05-13T04:00:00Z
Registrar: Network Solutions, LLC
Registrar IANA ID: 2
Registrar Abuse Contact Email: domain.operations@web.com
Registrar Abuse Contact Phone: +1.8777228662
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
unsolicited, commercial advertising or solicitations via e-mail, telephone,
Registrars.
--- whois cjponyparts.com @ whois.networksolutions.com
Domain Name: CJPONYPARTS.COM
Registrar WHOIS Server: whois.networksolutions.com
Registrar URL: http://networksolutions.com
Updated Date: 2025-06-03T18:16:39Z
Creation Date: 1997-05-12T04:00:00Z
Registrar Registration Expiration Date: 2029-05-13T04:00:00Z
Registrar: Network Solutions, LLC
Registrar IANA ID: 2
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Registry Registrant ID:
Registrant Name:
Registrant Organization:
Registrant Street: 7461 ALLENTOWN BLVD
Registrant City: HARRISBURG
Registrant State/Province: PA
Registrant Postal Code: 17112-3609
Registrant Country: US
Registrant Phone: +1.7177248780
Registrant Phone Ext:
Registrant Fax:
Registrant Fax Ext:
Registrant Email: hostmaster@cjponyparts.com
Registry Admin ID:
REGISTER-ID (live page): <none>
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
<none>
WAYBACK-root (every distinct body of the root page, with status):
<none>
WAYBACK-inventory (distinct URLs ever captured, any status):
<none>
==============================================================================
=== cedscdn.it
==============================================================================
TLS: subject=C = IT, ST = Firenze, O = Register spa, CN = *.dadapro.com|issuer=C = GB, O = Sectigo Limited, CN = Sectigo Public Server Authentication CA OV R36|
RDAP-registrant:
RDAP-registrar:
RDAP-events:
RDAP-status:
RDAP-ns:
WHOIS:
--- whois cedscdn.it @ whois.nic.it
Status: ok
Created: 2014-09-12 10:44:48
Expire Date: 2026-09-12
Registrant
Organization: CED DIGITAL & SERVIZI Srl
Address: Via Barberini, 28
Created: 2014-09-12 10:44:47
Admin Contact
Name: Panunzi Claudio
Address: via del Tritone 152
Created: 2014-09-12 10:44:47
Technical Contacts
Name: Technical Support
Organization: Register SpA
Address: Viale Giulio Cesare, 29
Created: 2009-09-28 11:01:09
Registrar
Organization: Register S.p.a.
Name: REGISTER-REG
REGISTER-ID (live page): <none>
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
<none>
WAYBACK-root (every distinct body of the root page, with status):
<none>
WAYBACK-inventory (distinct URLs ever captured, any status):
<none>
==============================================================================
=== i.ua
==============================================================================
TLS: subject=CN = i.ua|issuer=C = US, O = Google Trust Services, CN = WE1|
RDAP: <no endpoint for this TLD; WHOIS below is the published interface>
WHOIS:
--- whois i.ua @ whois.ua
status: clientTransferProhibited
created: 2006-03-24 16:18:47+02
expires: 2029-03-24 16:18:47+02
registrar: ua.imena
organization: Internet Invest LLC
organization-loc: ТОВ "Інтернет Інвест"
country: UA
abuse-email: abuse@imena.ua
organization: Digital Ventures LLC
e-mail: hostmaster@digital-ventures.net
address: Gaidara str. 50
address: KYIV
country: UA
country-loc: UA
status: ok
status: linked
created: 2019-07-21 14:24:01+03
REGISTER-ID (live page): <none>
WAYBACK-legal (any subdomain, 200 only, one row per distinct body):
<none>
WAYBACK-root (every distinct body of the root page, with status):
<none>
WAYBACK-inventory (distinct URLs ever captured, any status):
<none>
L. Unedited output: scripts/owner_tail_merge.py
Run as python3 scripts/owner_tail_merge.py –sample out/owner_sample.json –base out/adj_rows_scored.json –tail out/tail40.json –dir out/tail_adj –out out/adj_rows_tail.json.
second-pass batches: 5, rows: 40 residue size: 40; missing: 0; unsampled: 0 rows moved unresolved -> resolved: 28 of 40 acint.net, adgrx.com, app-us1.com, at-o.net, awltovhc.com, blogblog.com, cedscdn.it, cjponyparts.com, cnevids.com, company-target.com, cratecamera.com, globo.com, govx.com, gssprt.jp, i.ua, kameleoon.io, km0trk.com, ksearchnet.com, lduhtrp.net, offshoregeology.com, opti-digital.com, pages02.net, sa-as.com, spot.im, travelpayouts.com, trustpilot.net, wishabi.com, yceml.net still unresolved: 12 source kinds of the newly resolved rows (the three marked NEW are a bar the 2026-09-05 pass did not use): domain-register 9 NEW legal-doc 8 parent-site 4 register 3 archived-legal-doc 2 NEW filing 1 newsroom 1 route that settled each newly resolved row: live-source 12 rdap-history 10 register-by-number 4 archived-legal 2 wrote /tmp/discard_rows.json (175 rows)
M. Unedited output: scripts/owner_verify_sources.py on the second pass's rows
Run as python3 scripts/owner_verify_sources.py –rows out/tail_rows_only.json –cache out/tail_verify_cache –out out/tail_verify.json.
OK acint.net whois://whois.publicdomainregistry.com/acint.net OK app-us1.com whois://whois.markmonitor.com/app-us1.com OK at-o.net https://recherche-entreprises.api.gouv.fr/search?q=Applied%20Technologies%20Internet OK awltovhc.com https://www.epsilon.com/us/about-us/pressroom/epsilon-peoplecloud-digital-media-solution OK blogblog.com whois://whois.markmonitor.com/blogblog.com OK cedscdn.it whois://whois.nic.it/cedscdn.it OK cjponyparts.com https://web.archive.org/web/20150405015158id_/http://www.cjponyparts.com/terms-of-use/a/ OK cnevids.com https://player.cnevids.com/ OK company-target.com https://web.archive.org/web/20250908011403id_/https://support.demandbase.com/hc/en-us/ar OK cratecamera.com whois://whois.namecheap.com/cratecamera.com OK globo.com https://privacidade.globo.com/privacy-policy/ OK govx.com https://www.sec.gov/Archives/edgar/data/1623323/000162332316000003/xslFormDX01/primary_d OK gssprt.jp whois://whois.jprs.jp/gssprt.jp OK i.ua https://help.i.ua/agreement/ OK kameleoon.io https://www.kameleoon.com/legal-notice OK km0trk.com https://goodonyou.eco/privacy-policy/ OK ksearchnet.com tls://eucs23v2.ksearchnet.com:443 OK lduhtrp.net whois://whois.markmonitor.com/lduhtrp.net OK offshoregeology.com https://levenlabs.com/ OK opti-digital.com https://optidigital.com/legal-notice/ OK pages02.net whois://whois.markmonitor.com/pages02.net OK sa-as.com whois://whois.markmonitor.com/sa-as.com OK spot.im https://www.openweb.com/newsroom OK travelpayouts.com https://web.archive.org/web/20260217212541id_/https://support.travelpayouts.com/hc/en-us OK trustpilot.net https://corporate.trustpilot.com/legal/for-reviewers/privacy-policy-end-user OK wishabi.com https://flipp.com/en-us/privacy-policy OK yceml.net whois://whois.markmonitor.com/yceml.net Verification of cited primary sources: FETCHFAIL=1, NOSOURCE=12, OK=27
N. Unedited output: scripts/owner_tail_corrections.py
Run as python3 scripts/owner_tail_corrections.py –rows out/adj_rows_tail.json –out out/adj_rows_tail_final.json.
==============================================================================
Hand corrections to the 2026-09-11 second pass
==============================================================================
--- app-us1.com [resource]
source: 'https://marketing.app-us1.com/apps/workable-integration'
-> 'whois://whois.markmonitor.com/app-us1.com'
source_kind: 'legal-doc'
-> 'domain-register'
quote: '<link rel="canonical" href="https://www.activecampaign.com/apps/workable-integration" />'
-> 'Registrant Organization: ActiveCampaign, LLC'
corroboration: "Registrar WHOIS for app-us1.com (whois.markmonitor.com, two-hop port-43 lookup in the mechanical probe run 2026-09-11) shows an un-redacted 'Registrant Organization: ActiveCampaign, LLC'; I could not re-issue that port-43 query myself this session -- this curl build has no whois:// protocol support (checked via curl --version) and bash here has no /dev/tcp raw-socket fallback -- so this corroboration relies on the probe's own already-fetched text rather than a fresh fetch."
-> 'https://marketing.app-us1.com/apps/workable-integration -- serves ActiveCampaign\'s own integration-marketing page and carries <link rel="canonical" href="https://www.activecampaign.com/apps/workable-integration" />, confirmed in the raw bytes on 2026-09-11. Demoted from source to corroboration because that URL now returns HTTP 404: a 404 body is not a legal document.'
why: The cited page is a 404 whose only evidence is a <link> tag, which the quote checker normalises to the empty string and reports as NOQUOTE -- so the row's only citation was one the checker cannot see, on a page that does not exist. Re-issued the registrar WHOIS query live (whois.markmonitor.com, port 43): the registrant organisation is un-redacted and names ActiveCampaign, LLC. The verdict does not change; the evidence under it does, from a 404 page to the registry record. Rate effect: none.
--- blogblog.com [resource]
source: 'whois://blogblog.com (registrar WHOIS, whois.markmonitor.com)'
-> 'whois://whois.markmonitor.com/blogblog.com'
why: The row's source URL was prose -- 'whois://blogblog.com (registrar WHOIS, whois.markmonitor.com)' -- which no client can dereference, so it FETCHFAILed. Rewritten in the whois://<server>/<domain> form the checker parses and re-queried live: 'Registrant Organization: Google LLC'. Same record, same quote, a URL that resolves. Rate effect: none.
--- ksearchnet.com [resource]
source: 'https://eucs23v2.ksearchnet.com/'
-> 'tls://eucs23v2.ksearchnet.com:443'
why: The row cites an OV certificate's validated O= field -- which the brief accepts as register-grade -- but gave the https:// URL of the host, which now returns HTTP 404, so the checker fetched a 404 body and looked for a certificate subject in it. Repointed to the tls:// form the checker handles. Handshake redone 2026-09-11: subject=C=FI, ST=Uusimaa, O=Klevu Oy, CN=*.ksearchnet.com, issuer Sectigo Public Server Authentication CA OV R36. Rate effect: none.
--- i.ua [rescore]
owner_today: 'Digital Ventures LLC (Gaidara str. 50, Kyiv, Ukraine) -- registrant of record'
-> 'ТОВ «КЕПРЕЙТ ПАРТНЕРС» (LLC Keprait Partners), Ukrainian register code 33500955'
source: 'whois://whois.ua/i.ua'
-> 'https://help.i.ua/agreement/'
source_kind: 'domain-register'
-> 'legal-doc'
quote: 'person: Digital Ventures LLC\norganization: Digital Ventures LLC\ne-mail: hostmaster@digital-ventures.net'
-> 'ТОВ «КЕПРЕЙТ ПАРТНЕРС», далі- «Адміністрація») порталу I.UA'
corroboration: None
-> "https://help.i.ua/privacy-policy/ -- the same entity and register code: 'Керування цим Сайтом здійснюється ТОВ «КЕПРЕЙТ ПАРТНЕРС», реєстраційний код: 33500955'. The port-43 registry record (whois://whois.ua/i.ua) names a DIFFERENT organisation, 'Digital Ventures LLC', which is why this row is the pass's own counter-example to the domain-register source kind."
disconnect: 'error'
-> 'current'
route: 'rdap-history'
-> 'live-source'
why: Two things were wrong. (1) The row rested on the WHOIS registrant, 'Digital Ventures LLC'. The portal's own user agreement names a different company as its administration -- ТОВ «КЕПРЕЙТ ПАРТНЕРС», register code 33500955 -- so on this domain the registrant of record is NOT the operator. That is the single most important finding about the domain-register source kind this pass added, and it is kept in the residue notes rather than smoothed away. (2) The adjudicator scored Disconnect's entry 'I.UA' as error because the registrant's name differs from it. But the brief scores a trading brand for the same business as current, and the operator's own agreement calls the property 'порталу I.UA' -- the portal I.UA. error means 'never the owner at any time', which this is not. Rescored current. Rate effect: moves Disconnect UP, which is the self-serving direction, so the alternative reading is published beside it and the sensitivity run reports what happens without it.
--- adgrx.com [keep]
(no field changed)
why: FETCHFAIL 'HTTP 000' is the TLS layer, not the citation: samsungads.ca serves an expired certificate, so curl refuses it and the checker never sees a body. Re-fetched by hand with --insecure on 2026-09-11: HTTP 200, 46,160 bytes, and the quoted row 'adgrx.com</span></td><td><span style="font-weight: 400;">ADGRX_UID</span>' is byte-verbatim in it. The checker is deliberately NOT given an --insecure retry: an ownership citation whose host identity cannot be validated should surface, not be swallowed. Same call the 2026-09-11 inter-rater pass made on its own expired-cert row.
--- sa-as.com [keep]
(no field changed)
why: NOTFOUND was a cached rate-limit stub, not a bad citation. whois.markmonitor.com answers the fourth rapid query with a record that has no registrant block, and the checker cached it. Re-queried 25 seconds later: 3,357 bytes, 'Registrant Organization: FoundryCo, Inc.' present. owner_verify_sources.py now refuses to cache a whois answer under 400 bytes or one that does not name the queried domain, and blogblog.com hit the same stub. The row still rests on an UNCORROBORATED registrant organisation and is counted as such.
------------------------------------------------------------------------------
actions: keep=2, rescore=1, resource=3
rows whose VERDICT changed: 1 (i.ua)
wrote /tmp/discard2.json (175 rows)
O. Unedited output: scripts/owner_random_sample.py re-run after the second pass
Run as python3 scripts/owner_random_sample.py –sample out/owner_sample.json –rows out/adj_rows_tail_final.json –table –wiki.
==============================================================================
Per-list ownership accuracy from a stratified random sample
==============================================================================
Frame: 32,337 registrable domains (Tracker Radar domain_summary.json,
ICANN-section PSL fold, parent-label lookup). Seed 20260905, 60 draws per list, allocation (24, 12, 12, 12)
over prevalence quartiles of each list's own coverage. Adjudicated 2026-09-05.
Input snapshots: disconnect_entities=93e4f54036de1b39, public_suffix_list=aef8fb81d63232da, tr_domain_map=a11bc2580f664544, tr_domain_summary=19f7a5a6a839ec87, tr_entity_map=c4c3f97dbea6cb1e, webxray=e53760188e6dc9aa
--- A. What the sample could and could not settle ---------------------
Rows are excluded from every accuracy rate below when the primary-source bar
was not met. In a random sample that is a large share, and it rises toward
the tail, so it is reported first and per quartile rather than buried.
List drawn unresolved eligible per quartile (eligible/drawn)
webXray 60 4 56 Q1 22/24 Q2 12/12 Q3 10/12 Q4 12/12
Tracker Radar 60 4 56 Q1 22/24 Q2 10/12 Q3 12/12 Q4 12/12
Disconnect 60 6 54 Q1 22/24 Q2 11/12 Q3 9/12 Q4 12/12
--- B. Per-list verdict rates, with 95% bootstrap intervals -----------
Denominator: the entries of that list which the sample could settle and which
make an ownership claim (the 'eligible' column above), scaled to the list's
whole coverage by stratum weights. 'domain-level' weights every domain the
list covers equally; 'encounter-weighted' weights by Tracker Radar prevalence,
i.e. how often a crawl actually meets the domain.
webXray (covers 664 of 32,337 frame domains = 2.1%; n eligible = 56)
verdict domain-level 95% CI encounter-wtd 95% CI
current 69.2% [ 56.1%, 81.4%] 93.8% [ 80.9%, 98.6%]
granularity 8.8% [ 2.1%, 17.5%] 0.2% [ 0.0%, 0.7%]
stale 22.0% [ 11.4%, 33.8%] 5.9% [ 1.1%, 18.7%]
error 0.0% [ 0.0%, 0.0%] 0.0% [ 0.0%, 0.0%]
zero cells (error): the bootstrap interval on a cell with no observations is [0,0] and asserts nothing.
The usable statement is the rule-of-three upper bound: with 56 eligible rows and 0 seen, the true rate is below 5.4% at 95% confidence.
current+gran. 78.0% [ 65.8%, 88.8%] 94.1% [ 81.4%, 98.8%]
stale+error 22.0% [ 11.0%, 33.8%] 5.9% [ 1.1%, 18.9%]
Tracker Radar (covers 5,566 of 32,337 frame domains = 17.2%; n eligible = 56)
verdict domain-level 95% CI encounter-wtd 95% CI
current 73.9% [ 61.6%, 85.3%] 74.3% [ 41.1%, 97.8%]
granularity 2.5% [ 0.0%, 7.5%] 0.1% [ 0.0%, 0.3%]
stale 19.2% [ 9.1%, 30.5%] 21.6% [ 0.3%, 53.1%]
error 4.4% [ 0.0%, 9.8%] 4.0% [ 0.0%, 15.7%]
current+gran. 76.4% [ 64.6%, 87.5%] 74.4% [ 41.6%, 97.8%]
stale+error 23.6% [ 12.5%, 35.6%] 25.6% [ 2.2%, 58.5%]
Disconnect (covers 2,264 of 32,337 frame domains = 7.0%; n eligible = 54)
verdict domain-level 95% CI encounter-wtd 95% CI
current 89.2% [ 80.5%, 96.8%] 82.8% [ 53.8%,100.0%]
granularity 7.6% [ 1.1%, 15.2%] 16.8% [ 0.0%, 45.6%]
stale 1.1% [ 0.0%, 3.4%] 0.4% [ 0.0%, 1.5%]
error 2.1% [ 0.0%, 6.2%] 0.0% [ 0.0%, 0.0%]
current+gran. 96.8% [ 91.5%,100.0%] 99.6% [ 98.5%,100.0%]
stale+error 3.2% [ 0.0%, 8.5%] 0.4% [ 0.0%, 1.5%]
--- C. Coverage is not estimated: it is counted --------------------
'absent' needs no sample. Each list either has an entry for a frame domain or
it does not, and both can be counted over all 32,337 of them.
List domains named of frame prevalence-weighted
webXray 664 2.1% 57.9%
Tracker Radar 5,566 17.2% 83.9%
Disconnect 2,264 7.0% 79.9%
--- C2. Concentration: how much of the encounter-weighted estimate is one row ---
Share of the encounter-weighted estimate contributed by each list's single
heaviest eligible row, and what the 'current' rate becomes if that one row's
verdict is flipped to stale. This is a sensitivity check, not a result: the
flipped figure is what the estimate WOULD be, not a claim that it is.
webXray heaviest row gstatic.com verdict current carries 38.8% of the estimate
encounter-weighted 'current' 93.8% -> 55.0% if that one row were stale
top three rows together carry 52.2%
Tracker Radar heaviest row omtrdc.net verdict current carries 20.0% of the estimate
encounter-weighted 'current' 74.3% -> 54.3% if that one row were stale
top three rows together carry 52.4%
Disconnect heaviest row id5-sync.com verdict current carries 16.6% of the estimate
encounter-weighted 'current' 82.8% -> 66.2% if that one row were stale
top three rows together carry 45.6%
--- D. Verdicts on domains drawn for another list (NOT in any estimate) ---
Each drawn domain was adjudicated once and the verdict recorded for all three
lists. Only a list's own sample enters its estimate above; these are the rest,
printed so the discarded observations are visible rather than silently dropped.
webXray absent=96 current=13 granularity=1 stale=5
Tracker Radar absent=18 current=68 error=1 granularity=6 stale=18 unknown=4
Disconnect absent=49 current=50 granularity=12 unknown=4
--- E. Residue: every row excluded from an estimate --------------------
webXray Q1 1rx.io unknown unresolved register-by-number: no company/VAT number available anywhere for 'Blinkx'/'Rhy
webXray Q1 agkn.com unknown unresolved Register-by-number: SEC EDGAR full-text search for the exact phrase "agkn.com"
webXray Q3 mmstat.com unknown unresolved Register-by-number: tried China's official ICP/beian registry at beian.miit.go
webXray Q3 collective-media.net unknown unresolved Tried all three routes. Register-by-number: SEC EDGAR full-text search for '"C
Tracker Radar Q1 cdnbasket.net unknown unresolved All three routes came back empty. Register-by-number: no identifying company/V
Tracker Radar Q1 marphezis.com unknown unresolved register-by-number: no identifier available for 'Online Media Solutions Ltd. d
Tracker Radar Q2 hqseek.com unknown unresolved All three routes tried. register-by-number: no imprint or identifiable number
Tracker Radar Q2 contentabc.com unknown unresolved Register-by-number: no imprint, VAT, or company number for either candidate ('
Disconnect Q1 cdnbasket.net unknown unresolved All three routes came back empty. Register-by-number: no identifying company/V
Disconnect Q1 agkn.com unknown unresolved Register-by-number: SEC EDGAR full-text search for the exact phrase "agkn.com"
Disconnect Q2 mapixl.com unknown unresolved All three routes tried and none produced an identifier for the actual operator
Disconnect Q3 stat-track.com unknown unresolved All three routes were tried. Register-by-number: Disconnect's 'StackTrack' is
Disconnect Q3 stripst.com unknown unresolved Register-by-number: no imprint or company number is available anywhere for str
Disconnect Q3 htplayground.com unknown unresolved register-by-number: Disconnect's own entry is just the domain string, so there
--- F. The adjudication table ---------------------------------------
^ Domain ^ Prev. ^ Owner today ^ When it changed ^ webXray ^ Tracker Radar ^ Disconnect ^ Primary source ^
| ''gstatic.com'' | 0.40160 | Google LLC | n/a -- independent, Google-operated since inception | current | current | current | [[https://docs.cloud.google.com/docs/get-started/required-domains|parent-site]] |
| ''id5-sync.com'' | 0.09586 | ID5 Technology Ltd | n/a -- independent | current | current | current | [[https://id5.io/trust/privacy-policy|legal-doc]] |
| ''crwdcntrl.net'' | 0.09475 | Epsilon Data Management, LLC (operating under the Lotame name; a Publicis Groupe company) | merged 2025-10-01 -- Lotame Solutions, Inc. merged into Epsilon Data Management, LLC; Publicis Groupe announced its agreement to acquire Lotame on 2025-03-06 | current | stale | granularity | [[https://www.lotame.com/privacy/services-privacy-notice/|legal-doc]] |
| ''liadm.com'' | 0.08019 | LiveIntent, Inc. (a Zeta Global company) | closed 2024-10-21 -- Zeta Global completed its acquisition of LiveIntent (announced 2024-10-08) | current | current | granularity | [[https://privacy.liadm.com/api-guide|legal-doc]] |
| ''smartadserver.com'' | 0.07333 | Equativ SAS (RCS Paris 487 613 481) | renamed 2023 -- Smart Adserver / Smartadserver S.A.S. became Equativ after its merger with DAX | stale | stale | current | [[https://www.equativ.com/legal-mentions|legal-doc]] |
| ''lijit.com'' | 0.06419 | Sovrn Holdings, Inc. | n/a -- Sovrn Holdings, Inc. operates lijit.com today | current | current | current | [[https://lijit.com/|legal-doc]] |
| ''bidr.io'' | 0.05861 | Beeswax Inc. (a FreeWheel / Comcast company) | closed ~2021-01 -- FreeWheel (Comcast) agreed 2020-12-17 to acquire Beeswax | current | current | granularity | [[https://www.beeswax.com/privacy/|legal-doc]] |
| ''1rx.io'' | 0.05313 | UNKNOWN | UNRESOLVED -- no primary source located | unknown | unknown | unknown | [[NONE -- no primary source reached|none]] |
| ''simpli.fi'' | 0.05248 | Simplifi Holdings, LLC (GTCR-backed, privately held) | n/a -- privately held, longstanding GTCR portfolio company | current | granularity | current | [[https://simpli.fi/website-privacy-policy|legal-doc]] |
| ''gumgum.com'' | 0.05151 | GumGum, Inc. | n/a -- independent | current | current | current | [[https://gumgum.com/terms-and-policies/privacy-policy|legal-doc]] |
| ''quantserve.com'' | 0.04428 | Quantcast Corporation (Quantcast) | n/a -- independent | current | current | current | [[https://legal.quantcast.com/|legal-doc]] |
| ''criteo.net'' | 0.04208 | Criteo Corp. (Criteo) | n/a -- independent | current | current | current | [[https://www.criteo.com/privacy/|legal-doc]] |
| ''klaviyo.com'' | 0.04172 | Klaviyo, Inc. | n/a -- independent | absent | current | current | [[https://www.klaviyo.com/de/|legal-doc]] |
| ''loopme.me'' | 0.04039 | LoopMe Ltd (LoopMe) | n/a -- independent | current | error | current | [[https://legal.loopme.com/privacy-center|legal-doc]] |
| ''fontawesome.com'' | 0.03873 | Fonticons, Inc. | n/a -- independent | current | current | absent | [[https://fontawesome.com/tos|legal-doc]] |
| ''agkn.com'' | 0.03580 | UNRESOLVED | UNRESOLVED -- registry WHOIS registrant is privacy-proxied (Brandsight/GoDaddy Corporate Domains) with no organization disclosed, and TransUnion's own pages that would plausibly name AdAdvisor/agkn.com are bot-walled | unknown | unknown | unknown | //none// |
| ''wp.com'' | 0.02694 | Automattic, Inc. (WordPress.com) | n/a -- independent, operated by Automattic since founding (2005) | current | current | current | [[https://automattic.com/|parent-site]] |
| ''eyeota.net'' | 0.02519 | Eyeota, a Dun & Bradstreet company | acquired by Dun & Bradstreet, announced 2021-11-04 (Eyeota retains its own brand as a D&B subsidiary) | current | current | granularity | [[https://www.eyeota.com/blog/eyeota-is-now-a-dun-bradstreet-company|newsroom]] |
| ''newrelic.com'' | 0.02217 | New Relic, Inc. | n/a -- independent, unchanged | current | current | current | [[https://newrelic.com/termsandconditions/terms|legal-doc]] |
| ''emxdgt.com'' | 0.01923 | Cadent, LLC | 2023-05 -- Cadent acquired EMX's SSP technology in a bankruptcy auction after EMX's parent Big Village collapsed | stale | stale | current | [[https://www.cadent.com/terms-of-use|legal-doc]] |
| ''go-mpulse.net'' | 0.01818 | Akamai Technologies, Inc. | 2017-04-07 -- Akamai completed its acquisition of SOASTA | stale | current | current | [[https://www.prnewswire.com/news-releases/akamai-completes-acquisition-of-soasta-300436365.html|newsroom]] |
| ''hs-analytics.net'' | 0.01764 | HubSpot, Inc. | n/a -- independent, unchanged | current | current | current | [[https://knowledge.hubspot.com/reports/how-do-i-know-if-my-hubspot-tracking-code-is-working|parent-site]] |
| ''hs-scripts.com'' | 0.01716 | HubSpot, Inc. | n/a -- independent, unchanged | current | current | current | [[https://developers.hubspot.com/docs/api-reference/latest/account/settings/tracking-code/overview|parent-site]] |
| ''omtrdc.net'' | 0.01662 | Adobe Inc. | n/a -- Adobe acquired Omniture in 2009; domain retained since | current | current | current | [[https://experienceleague.adobe.com/en/docs/analytics-learn/tutorials/implementation/implementation-basics/how-to-identify-your-analytics-tracking-server-and-report-suites|parent-site]] |
| ''primis.tech'' | 0.01623 | McCann Disciplines Ltd. (trading as Primis; part of Universal McCann / IPG) | n/a -- same operating entity since Sekindo's 2018 rebrand as Primis (McCann acquired Sekindo in 2012) | absent | current | current | [[https://www.primis.tech/wp-content/uploads/2020/01/Primis-Privacy-Policy.pdf|legal-doc]] |
| ''flashtalking.com'' | 0.01412 | Mediaocean LLC (brand unified as Innovid since March 2025; domain now redirects to innovid.com) | 2021-07 Mediaocean acquired Flashtalking; 2025-03-17 brand merged into unified 'Innovid' name | stale | current | current | [[https://www.mediaocean.com/press-releases/2025/03/17/innovid-unified-brand-global-ad-tech|newsroom]] |
| ''ctnsnet.com'' | 0.01392 | Crimtan Holdings Limited | n/a -- independent, unchanged | current | current | current | [[https://find-and-update.company-information.service.gov.uk/company/07810698|register]] |
| ''sharethis.com'' | 0.01349 | Predactiv, Inc. (ShareThis) | n/a -- ShareThis currently operates as a division of Predactiv, Inc.; the date this structure began was not sourced | granularity | granularity | current | [[https://sharethis.com/privacy/|legal-doc]] |
| ''mountain.com'' | 0.01288 | MNTN, Inc. | renamed 2022-06-14 (MNTN Digital, Inc. -> MNTN, Inc.), per SEC EDGAR | absent | stale | current | [[https://data.sec.gov/submissions/CIK0001891027.json|filing]] |
| ''spot.im'' | 0.01101 | Open Web Technologies Ltd. (OpenWeb) | renamed 2020 (Spot.IM -> OpenWeb) | absent | current | current | [[https://www.openweb.com/newsroom|parent-site]] |
| ''cloudfront.net'' | 0.01081 | Amazon Web Services, Inc. (Amazon) | n/a -- Amazon since inception | current | granularity | current | [[https://aws.amazon.com/privacy/|legal-doc]] |
| ''hotjar.io'' | 0.01015 | Contentsquare | UNRESOLVED -- exact Hotjar acquisition date not sourced this session; current state confirmed via redirect + copyright | stale | stale | current | [[https://contentsquare.com/hotjar/?utm_campaign=exp__hj_hp_redirection|parent-site]] |
| ''stripe.com'' | 0.00967 | Stripe, LLC | UNRESOLVED -- exact date of the Stripe, Inc. -> Stripe, LLC change not sourced; current name confirmed via site footer + EV TLS cert | absent | stale | current | [[https://stripe.com/de-ch/legal/consumer|legal-doc]] |
| ''azure.com'' | 0.00960 | Microsoft Corporation | n/a -- Microsoft since inception | absent | current | current | [[tls://azure.microsoft.com:443|register]] |
| ''company-target.com'' | 0.00897 | Demandbase, Inc. | n/a -- registered 2012-08-06, no evidence of any transfer; Demandbase's own documentation still calls it their domain as of 2025 | current | current | current | [[https://web.archive.org/web/20250908011403id_/https://support.demandbase.com/hc/en-us/articles/360019872411-Data-Collection-Overview|parent-site]] |
| ''paypal.com'' | 0.00751 | PayPal, Inc. | n/a -- independent, no ownership change found | absent | current | current | [[https://www.paypal.com/us/legalhub/paypal/privacy-full|legal-doc]] |
| ''adgrx.com'' | 0.00681 | AdGear Technologies, Inc. ("AdGear", trading as Samsung Ads; wholly-owned subsidiary of Samsung Electronics Canada, Inc.) | n/a -- current since Samsung's 2018 acquisition of AdGear | current | current | granularity | [[https://samsungads.ca/en/cookie-policy/|legal-doc]] |
| ''marphezis.com'' | 0.00666 | UNKNOWN | UNRESOLVED -- no primary source located | absent | unknown | absent | [[NONE -- no primary source reached|none]] |
| ''iqzone.com'' | 0.00663 | IQzone Inc. | n/a -- independent, live and self-operated; no ownership change found | absent | current | current | [[https://iqzone.com/|legal-doc]] |
| ''histats.com'' | 0.00650 | Wisecode S.r.l. Unipersonale (Histats) | n/a -- Wisecode operates Histats.com directly; no ownership change found | current | current | current | [[https://www.histats.com/|legal-doc]] |
| ''adition.com'' | 0.00612 | Virtual Minds GmbH (Adition) | ADITION technologies AG merged into the Virtual Minds group (~2013); Virtual Minds AG converted its legal form to Virtual Minds GmbH (name/legal-form change, ~2021); Adition is now marketed as a Virtual Minds GmbH product | stale | stale | current | [[https://virtualminds.com/adition/|parent-site]] |
| ''trustarc.com'' | 0.00555 | TrustArc Inc. | n/a -- independent, live and self-operated; no ownership change found | current | current | current | [[https://trustarc.com/|legal-doc]] |
| ''spotxchange.com'' | 0.00538 | Magnite, Inc. (Magnite Streaming, formerly SpotX/SpotXchange) | Magnite acquired SpotX from RTL Group, deal announced 2021-02-04 and closed 2021-04-30; the SpotX brand was itself retired into 'Magnite Streaming' effective 2023-10-02 | stale | stale | current | [[https://www.sec.gov/Archives/edgar/data/1595974/000138713121001803/ex99-1.htm|filing]] |
| ''akamaihd.net'' | 0.00460 | Akamai Technologies, Inc. | n/a -- Akamai's own shared CDN domain since inception; no ownership change found | current | current | absent | [[https://publicsuffix.org/list/public_suffix_list.dat|newsroom]] |
| ''forter.com'' | 0.00419 | Forter Ltd. (Israel; affiliates include Forter, Inc. — US, Forter Solutions UK Ltd., Forter Pte Ltd.) | n/a -- independent | absent | current | current | [[https://www.forter.com/privacy-policy/|legal-doc]] |
| ''zoominfo.com'' | 0.00405 | ZoomInfo Technologies LLC (ZoomInfo) | n/a -- current operating entity per live privacy policy; 'Zoom Information, Inc.' was a company ZoomInfo acquired in Feb 2019, since folded into the ZoomInfo corporate structure | absent | stale | current | [[https://www.zoominfo.com/privacy-policy|legal-doc]] |
| ''braze.com'' | 0.00353 | Braze, Inc. | n/a -- independent, publicly traded (NASDAQ: BRZE) | current | current | current | [[https://www.braze.com/privacy|legal-doc]] |
| ''app-us1.com'' | 0.00351 | ActiveCampaign, LLC (ActiveCampaign) | n/a -- independent, registered 2013, no ownership change found | absent | current | current | [[whois://whois.markmonitor.com/app-us1.com|domain-register]] |
| ''govx.com'' | 0.00330 | GovX, Inc. | n/a -- independent, no ownership change found | absent | current | current | [[https://www.sec.gov/Archives/edgar/data/1623323/000162332316000003/xslFormDX01/primary_doc.xml|filing]] |
| ''visualstudio.com'' | 0.00325 | Microsoft Corporation | n/a -- Microsoft has always operated this domain (Visual Studio product site) | absent | current | current | [[tls://visualstudio.com:443|register]] |
| ''cdnbasket.net'' | 0.00305 | UNRESOLVED | UNRESOLVED -- no primary source ties cdnbasket.net to any named entity | absent | unknown | unknown | [[https://www.wunderkind.co/privacy-policy|legal-doc]] |
| ''elfsight.com'' | 0.00303 | Elfsight, SL | n/a -- current operator per live Terms of Service and About page | absent | error | current | [[https://elfsight.com/terms-of-service/|legal-doc]] |
| ''ispot.tv'' | 0.00293 | iSpot.tv, Inc. | n/a -- independent | absent | current | current | [[https://www.ispot.tv/privacy|legal-doc]] |
| ''reson8.com'' | 0.00239 | Resonate Networks, Inc. (Resonate) | n/a -- current, per live privacy policy naming reson8.com URLs as its own opt-out/tracking infrastructure | current | current | current | [[https://www.resonate.com/privacy-policy/|legal-doc]] |
| ''opti-digital.com'' | 0.00211 | Opti Digital SAS (2 Rue des Cortalets, 66400 Céret, France) | n/a -- independent, live company | absent | current | current | [[https://optidigital.com/legal-notice/|legal-doc]] |
| ''nofraud.com'' | 0.00205 | Wyllo LLC (rebranded from NoFraud) | rebranded NoFraud -> Wyllo; exact rebrand date UNRESOLVED (current privacy policy dated 2026-03-19) | absent | stale | stale | [[https://wyllo.ai/privacy/|legal-doc]] |
| ''zopim.com'' | 0.00200 | Zendesk, Inc. | acquired by Zendesk 2014-04-10 | current | current | current | [[https://www.zendesk.com/company/press/zendesk-acquires-live-chat-leader-zopim/|newsroom]] |
| ''mparticle.com'' | 0.00192 | mParticle, Inc. (a Rokt company, post-merger) | merged into Rokt, announced 2025-01-16 (~US$300M deal) | absent | current | granularity | [[https://www.mparticle.com/news/rokt-and-mparticle-merge/|newsroom]] |
| ''disquscdn.com'' | 0.00185 | Disqus, Inc. (a Zeta Global affiliate) | Disqus acquired by Zeta Global 2017-12-05 | current | current | current | [[https://help.disqus.com/en/articles/1717103-disqus-privacy-policy|legal-doc]] |
| ''brightcove.net'' | 0.00175 | Brightcove, Inc. | n/a -- independent, publicly traded (NASDAQ: BCOV) | current | current | current | [[https://www.brightcove.com/en/legal/privacy-policy/|legal-doc]] |
| ''squarecdn.com'' | 0.00153 | Block, Inc. | Square, Inc. renamed to Block, Inc. 2021-12-10 | absent | current | absent | [[https://squareup.com/us/en/legal/general/privacy|legal-doc]] |
| ''sendtonews.com'' | 0.00144 | Minute Media (via its STN Video subsidiary/brand, formerly SendtoNews) | acquired by Minute Media, announced 2024-01 (~US$150M, per STN Video's own archived press release) | absent | absent | current | [[https://web.archive.org/web/20240718175821/https://www.stnvideo.com/press/minute-media-acquires-stn-video/|newsroom]] |
| ''amung.us'' | 0.00143 | whos.amung.us Inc. | n/a -- independent | current | current | current | [[https://whos.amung.us/legal/terms/|legal-doc]] |
| ''ksearchnet.com'' | 0.00129 | Klevu Oy (operating subsidiary of Athos Commerce) | n/a -- Klevu (and Klevu Oy, its Finnish operating entity) merged with Searchspring in 2024/2025 to form Athos Commerce; ksearchnet.com is still run under the Klevu Oy legal name today | absent | absent | granularity | [[tls://eucs23v2.ksearchnet.com:443|register]] |
| ''everestjs.net'' | 0.00121 | Adobe Inc. | n/a -- long-standing Adobe Advertising infrastructure domain | current | current | current | [[https://experienceleague.adobe.com/en/docs/id-service/using/reference/csp|parent-site]] |
| ''kameleoon.io'' | 0.00108 | Kameleoon SAS (Kameleoon) | n/a -- independent, no ownership change found | absent | absent | current | [[https://www.kameleoon.com/legal-notice|legal-doc]] |
| ''aralego.com'' | 0.00105 | ucfunnel | n/a -- ucfunnel operates aralego.com as its publisher/buyer dashboard domain | absent | current | current | [[https://dashboard.aralego.com/|legal-doc]] |
| ''govdelivery.com'' | 0.00105 | Granicus, LLC | merged 2016-10-25 (GovDelivery merged with Granicus, majority-backed by Vista Equity Partners) | granularity | current | absent | [[https://granicus.com/blog/granicus-govdelivery-announce-merger/|newsroom]] |
| ''cookiefirst.com'' | 0.00104 | Digital Data Solutions B.V. | n/a -- long-standing operator | absent | current | absent | [[https://cookiefirst.com/privacy-policy/|legal-doc]] |
| ''gssprt.jp'' | 0.00101 | Geniee, Inc. | n/a -- independent since domain creation (2013) | current | current | current | [[whois://whois.jprs.jp/gssprt.jp|domain-register]] |
| ''researchnow.com'' | 0.00097 | Dynata, LLC | renamed 2019-01-15 (Research Now SSI rebranded as Dynata); ownership itself changed again 2024-07-02 when lienholders took 100% equity in a court-approved restructuring | current | stale | current | [[https://www.dynata.com/why-dynata/about-dynata/press/research-now-and-ssi-merger-successfully-completed/|newsroom]] |
| ''vidazoo.com'' | 0.00078 | Perion Network Ltd. | acquired 2021-10-04 | absent | stale | current | [[https://www.sec.gov/Archives/edgar/data/1338940/000117891321003077/exhibit_99-1.htm|filing]] |
| ''tmdb.org'' | 0.00075 | TiVo Platform Technologies LLC (a subsidiary of Xperi Inc.) | changed -- Fanhattan LLC acquired TMDB circa 2016; exact date of the subsequent transition to TiVo Platform Technologies LLC / Xperi Inc. not verified this session | absent | stale | absent | [[https://www.themoviedb.org/terms-of-use|legal-doc]] |
| ''tns-counter.ru'' | 0.00071 | AO ADFACT / JSC ADFACT (Cyrillic АО «ЭДФАКТ»), a subsidiary of AO Mediascope | n/a -- ADFACT has run under the Mediascope brand since Mediascope's 2017 rebrand from TNS Russia | current | current | granularity | [[https://www.mediascope.net/about/|parent-site]] |
| ''owneriq.net'' | 0.00067 | Inmar, Inc. | acquired 2019-10-22 | stale | current | current | [[https://www.globenewswire.com/news-release/2019/10/22/1933083/0/en/Inmar-Acquires-ownerIQ-Adding-A-Critical-Data-and-Media-Solution-to-Inmar-s-Newly-Launched-Innovator-Ecosystem.html|newsroom]] |
| ''acint.net'' | 0.00065 | Poshibalov Evgeny Vasilyevich, operating the self-titled project 'Acint (Artificial Computation Intelligence)' | n/a -- same registrant since domain creation 2014-02-06 per registrar WHOIS | absent | current | current | [[whois://whois.publicdomainregistry.com/acint.net|domain-register]] |
| ''force.com'' | 0.00064 | Salesforce, Inc. | n/a -- current; salesforce.com, inc. formally renamed to Salesforce, Inc. effective 2022-04-04 | absent | stale | current | [[https://investor.salesforce.com/news/news-details/2022/Salesforce-Changes-Legal-Name-to-Salesforce-Inc/default.aspx|newsroom]] |
| ''yceml.net'' | 0.00062 | Conversant, Inc. (operating brand Epsilon; ultimate parent Publicis Groupe) | granularity: Conversant folded into Epsilon after Publicis Groupe's 2019 acquisition of Epsilon; 'Here, There & Everywhere' (webXray's parent field, an Alliance Data-era name) is superseded/stale | stale | current | granularity | [[whois://whois.markmonitor.com/yceml.net|domain-register]] |
| ''conviva.com'' | 0.00049 | Conviva | n/a -- independent, current | current | current | current | [[https://www.conviva.ai/|legal-doc]] |
| ''travelpayouts.com'' | 0.00049 | Go Travel Un Limited (Hong Kong; trading as Travelpayouts) | n/a -- current per the domain's own Terms of Service, archived 2026-02-17 (~7 months old); Hong Kong entity registered 18.08.2011, Registration number 1658681 | absent | current | absent | [[https://web.archive.org/web/20260217212541id_/https://support.travelpayouts.com/hc/en-us/articles/360004162111-Terms-of-the-Travelpayouts-Travel-Affiliate-Network?tp_place=footer_wp_wa|archived-legal-doc]] |
| ''newsmemory.com'' | 0.00044 | Tecnavia | n/a -- independent, current | absent | current | absent | [[https://www.tecnavia.com/about-us|newsroom]] |
| ''solarwinds.com'' | 0.00043 | SolarWinds Worldwide, LLC (operating entity); ultimate parent Turn/River Capital | 2025-04-16 -- Turn/River Capital completed take-private acquisition | stale | current | current | [[https://www.solarwinds.com/company/newsroom/press-releases/turnriver-completes-acquisition-of-solarwinds|newsroom]] |
| ''blogblog.com'' | 0.00041 | Google LLC (Blogger) | n/a -- registered 2000-09-15, currently Google-operated (Blogger), no change evidenced | current | current | absent | [[whois://whois.markmonitor.com/blogblog.com|domain-register]] |
| ''blogspot.com'' | 0.00034 | Google LLC (Blogger; EEA/Switzerland: Google Ireland Limited) | n/a -- long-standing Google/Blogger property | current | current | current | [[https://policies.google.com/privacy|legal-doc]] |
| ''snapengage.com'' | 0.00034 | SnapEngage, LLC (subsidiary of TeamSupport LLC) | 2021-05-20 -- TeamSupport acquired SnapEngage (per public reporting); ownership confirmed current via SnapEngage's own privacy policy | absent | stale | current | [[https://snapengage.com/privacy-policy|legal-doc]] |
| ''yieldlove-ad-serving.net'' | 0.00034 | Yieldlove GmbH (majority-owned by Ströer SE & Co. KGaA) | 2017-10-04 -- Ströer acquired a majority shareholding in Yieldlove GmbH | absent | current | current | [[https://www.stroeer.de/en/newsroom/press/expansion-of-technological-platform-marketing-stroeer-acquires-programmatic-platform-and-header-bidding-specialists-yieldlove/|newsroom]] |
| ''ibb.co'' | 0.00029 | ImgBB | n/a -- independent, brand-operated service | absent | current | absent | [[https://imgbb.com/tos|legal-doc]] |
| ''at-o.net'' | 0.00027 | Applied Technologies Internet SAS (AT Internet), controlled by Piano Software, Inc. | acquired by Piano -- exact date not confirmed by a primary source fetched this session | absent | absent | current | [[https://recherche-entreprises.api.gouv.fr/search?q=Applied%20Technologies%20Internet|register]] |
| ''cnevids.com'' | 0.00026 | Condé Nast Entertainment (Advance Publications) | n/a -- Sabin, Bermant & Gould LLP was never the operator, only the registrant's outside-counsel contact | absent | error | absent | [[https://player.cnevids.com/|legal-doc]] |
| ''pushnami.com'' | 0.00024 | Pushnami, LLC | n/a -- independent, no ownership change found | absent | current | current | [[https://pushnami.com/privacy-policy/|legal-doc]] |
| ''mapixl.com'' | 0.00022 | UNRESOLVED -- Cloudflare-walled site, no legal page ever archived, registrant is a privacy proxy | UNRESOLVED -- no dated evidence either way | absent | absent | unknown | [[whois://whois.godaddy.com/mapixl.com|domain-register]] |
| ''responsiveads.com'' | 0.00018 | ResponsiveAds, Inc. | n/a -- independent, no ownership change known | absent | current | absent | [[https://responsiveads.com/|legal-doc]] |
| ''crsspxl.com'' | 0.00016 | Cross Pixel Media, Inc. | n/a -- independent, no ownership change known | current | current | current | [[https://crosspixel.net/privacy-policy/|legal-doc]] |
| ''cudasvc.com'' | 0.00016 | Barracuda Networks, Inc. | n/a -- independent, no ownership change known | absent | current | current | [[https://campus.barracuda.com/product/campus/doc/89096320/required-outbound-connections-for-barracuda-networks-appliances/|parent-site]] |
| ''htplayground.com'' | 0.00016 | UNKNOWN | UNRESOLVED -- no primary source located | absent | absent | unknown | [[NONE -- no primary source reached|none]] |
| ''userzoom.com'' | 0.00016 | UserTesting, Inc. (brand: UserTesting; formerly independent UserZoom, Inc.) | merged 2023-04-03 (Thoma Bravo portfolio companies UserTesting and UserZoom merged and now operate under the UserTesting name) | absent | stale | absent | [[https://www.thomabravo.com/press-releases/usertesting-and-userzoom-merge-to-help-organizations-build-human-centered-experiences-for-all|newsroom]] |
| ''cnzz.com'' | 0.00014 | Alibaba (China) Technology Co., Ltd. (Alibaba Group; operates as part of the Umeng+ / CNZZ analytics brand) | n/a -- CNZZ merged with Umeng and Diyuanxin into Umeng+ in 2016 under Alibaba; ownership unchanged since | current | granularity | granularity | [[tls://cnzz.com:443|register]] |
| ''yahooapis.com'' | 0.00014 | Yahoo Inc. (majority owned by Apollo Funds/Apollo Global Management; Verizon retains a 10% stake) | changed 2021-09-01 (Apollo Funds completed acquisition of Yahoo, formerly Verizon Media) | stale | current | current | [[https://www.apollo.com/insights-news/pressreleases/2021/09/apollo-funds-complete-acquisition-of-yahoo-161530593|newsroom]] |
| ''cnn.com'' | 0.00012 | Warner Bros. Discovery, Inc. | changed 2022-04-08 (WarnerMedia-Discovery merger formed Warner Bros. Discovery, Inc.) | absent | current | current | [[tls://cnn.com:443|register]] |
| ''contentabc.com'' | 0.00012 | UNRESOLVED | UNRESOLVED -- no live page, fully privacy-proxied registrant, zero Wayback captures, no primary source ties either TR's 'Aylo' or Disconnect's 'ContentABC' to the domain | absent | unknown | unknown | //none// |
| ''glomex.com'' | 0.00012 | glomex GmbH | n/a -- current, confirmed via own Impressum fetched 2026-09-05 | absent | absent | current | [[https://www.glomex.com/de/impressum|legal-doc]] |
| ''pages02.net'' | 0.00012 | Acoustic, L.P. | sold 2019 (IBM divested Watson Marketing/Commerce to Centerbridge Partners, relaunched as Acoustic) | absent | stale | current | [[whois://whois.markmonitor.com/pages02.net|domain-register]] |
| ''tqlkg.com'' | 0.00012 | Conversant, LLC (Epsilon Data Management, LLC; ultimate parent Publicis Groupe S.A.) | 2019-07 -- Publicis Groupe completed acquisition of Epsilon (including its Conversant business) from Alliance Data Systems | stale | current | granularity | [[https://www.publicisgroupe.com/en/news/press-releases/publicis-groupe-to-acquire-epsilon|newsroom]] |
| ''appspot.com'' | 0.00011 | Google LLC (Alphabet Inc.) | n/a -- Google since appspot.com's 2008 launch as Google App Engine | current | current | absent | [[https://policies.google.com/terms|legal-doc]] |
| ''stat-track.com'' | 0.00011 | UNRESOLVED | UNRESOLVED -- domain shows no activity since a 2002-2011 self-hosted install that predates the current 2016 registration | absent | absent | unknown | [[https://rdap.verisign.com/com/v1/domain/stat-track.com|domain-register]] |
| ''trustpilot.net'' | 0.00010 | Trustpilot A/S (Pilestraede 58, 5th floor, DK-1112 Copenhagen K, Denmark) | n/a -- defensive/redirect domain of the same live company, not a separate acquisition | absent | current | absent | [[https://corporate.trustpilot.com/legal/for-reviewers/privacy-policy-end-user|legal-doc]] |
| ''atgsvcs.com'' | 0.00008 | Oracle Corporation (successor to Art Technology Group, Inc.) | 2011-01-05 -- Oracle completed its acquisition; Art Technology Group, Inc. became a wholly owned subsidiary of Oracle | absent | current | current | [[https://www.sec.gov/Archives/edgar/data/1086195/000095012311000543/b83864e8vk.htm|filing]] |
| ''juicer.cc'' | 0.00008 | Logly, Inc. | n/a -- current; product rebranded from 'Juicer' to 'LOGLY Audience Analytics' but still Logly-operated | absent | current | absent | [[https://juicer.cc/|legal-doc]] |
| ''richrelevance.com'' | 0.00008 | RichRelevance, Inc. (brand of Algonomy, which is now part of ADA) | changed 2021-01-19 (RichRelevance merged with Manthan Software to form Algonomy); Algonomy itself now shown as part of ADA per algonomy.com (exact date unconfirmed) | current | current | granularity | [[tls://richrelevance.com:443|register]] |
| ''medallia.com.au'' | 0.00008 | Medallia, Inc. | n/a -- independent | absent | absent | current | [[https://medallia.com.au/|legal-doc]] |
| ''medchatapp.com'' | 0.00008 | Medchat, LLC | n/a -- independent | current | absent | absent | [[https://medchatapp.com/site/|legal-doc]] |
| ''awltovhc.com'' | 0.00007 | Epsilon (d/b/a 'Epsilon PeopleCloud Digital Media Solutions', formerly Conversant); ultimate parent Publicis Groupe SA | Conversant retired as the public-facing brand by 2021 per Epsilon's own press release; Epsilon itself was acquired by Publicis Groupe in 2019 | stale | stale | granularity | [[https://www.epsilon.com/us/about-us/pressroom/epsilon-peoplecloud-digital-media-solutions-receives-accreditation-from-the-media-rating-council-for-correlated-outcomes|newsroom]] |
| ''collective-media.net'' | 0.00007 | UNKNOWN | UNRESOLVED -- dead domain, redacted WHOIS, no usable archived legal page | unknown | unknown | unknown | [[n/a|n/a]] |
| ''mmstat.com'' | 0.00007 | UNRESOLVED | UNRESOLVED -- registrar is Alibaba Cloud Computing (Beijing) but no Registrant Organization is disclosed in WHOIS, the official Chinese ICP registry is behind a JS challenge, and Alibaba's own live privacy pages do not mention this domain | unknown | unknown | unknown | //none// |
| ''compass-fit.jp'' | 0.00006 | MicroAd, Inc. | n/a -- no ownership change found; product appears discontinued (domain unreachable, product page now 404) but no other owner was ever named | absent | current | current | [[https://www.microad.co.jp/news/detail/1185/|newsroom]] |
| ''lduhtrp.net'' | 0.00006 | Conversant, Inc. (Epsilon / Publicis Groupe) | n/a -- registrant unchanged; Conversant's parent Epsilon was acquired by Publicis Groupe, closed 2019-07-02 | current | current | granularity | [[whois://whois.markmonitor.com/lduhtrp.net|domain-register]] |
| ''cedexis.com'' | 0.00005 | Cloud Software Group, Inc. | changed 2018-02-12 (Citrix Systems acquired Cedexis); changed again 2022 (Citrix combined with TIBCO into Cloud Software Group) | stale | stale | current | [[tls://cedexis.com:443|register]] |
| ''hqseek.com'' | 0.00005 | UNRESOLVED -- privacy-proxied registrant, and the one named operator found predates the current registration state by two decades | UNRESOLVED -- no continuity evidence across the gap | absent | unknown | absent | [[https://web.archive.org/web/20040404075437id_/http://www.hqseek.com/|archived-legal-doc]] |
| ''sparkasse.de'' | 0.00005 | S-Communication Services GmbH (S-Com) | renamed 2022-09, effective 2023-01-01 -- formerly Sparkassen-Finanzportal GmbH | absent | stale | absent | [[https://www.sparkasse.de/impressum.html|legal-doc]] |
| ''stripst.com'' | 0.00005 | UNRESOLVED | UNRESOLVED -- fully privacy-proxied registrant, DV-only TLS cert, zero Wayback captures, and Stripchat's own live legal pages are bot-blocked | absent | absent | unknown | //none// |
| ''wishabi.com'' | 0.00005 | Flipp Corp. | n/a -- current | current | current | current | [[https://flipp.com/en-us/privacy-policy|legal-doc]] |
| ''twiago.com'' | 0.00004 | twiago GmbH | n/a -- independent, no ownership change found | absent | current | absent | [[https://www.twiago.com/impressum|legal-doc]] |
| ''wrbm.com'' | 0.00004 | William Reed Ltd | renamed 2022-02-09 -- formerly William Reed Business Media Ltd | absent | stale | absent | [[https://find-and-update.company-information.service.gov.uk/company/02883992|register]] |
| ''hitslink.com'' | 0.00003 | Net Applications, Inc. | n/a -- no ownership change found | absent | absent | current | [[https://hitslink.com/|legal-doc]] |
| ''klarna.app'' | 0.00003 | Klarna Bank AB (publ) | n/a -- no ownership change found | absent | current | absent | [[https://www.klarna.com/international/|legal-doc]] |
| ''onecount.net'' | 0.00003 | GCN Publishing, Inc. (d/b/a GCN Media Services; product: ONEcount) | n/a -- domain defunct (TLS cert expired 2022, no longer resolving); product now served from one-count.com by the same operator | granularity | current | current | [[https://www.one-count.com/privacy-policy/|parent-site]] |
| ''sa-as.com'' | 0.00003 | FoundryCo, Inc. | n/a -- independent per current WHOIS, no ownership-change evidence found | absent | absent | current | [[whois://whois.markmonitor.com/sa-as.com|domain-register]] |
| ''chango.com'' | 0.00003 | Chango & Co. LLC | UNRESOLVED exact date -- domain has been resold/repurposed to an unrelated interior design business; the ad-tech company 'Chango' (acquired by Rubicon Project, later renamed Magnite) no longer operates here | stale | stale | absent | [[https://www.chango.com/|legal-doc]] |
| ''google.nl'' | 0.00003 | Google LLC (subsidiary of Alphabet Inc.) | n/a -- longstanding | granularity | current | current | [[https://policies.google.com/privacy|legal-doc]] |
| ''americanexpress.com'' | 0.00002 | American Express Company | n/a -- longstanding | absent | current | current | [[tls://americanexpress.com:443|register]] |
| ''amperwave.net'' | 0.00002 | Audacy, Inc. | 2021-10-20 -- Audacy acquired WideOrbit's WO Streaming technology/operations and rebranded the platform AmperWave | absent | current | absent | [[https://audacyinc.com/press/audacy-announces-acquisition-of-wideorbit-digital-audio-streaming-technology-and-operations/|newsroom]] |
| ''cartfulsolutions.com'' | 0.00002 | Cartful Solutions, Inc. (Cartful) | n/a -- independent, same company | absent | current | current | [[https://cartful.com/privacy-policy|legal-doc]] |
| ''comcast.com'' | 0.00002 | Comcast Corporation | n/a -- longstanding | current | current | current | [[https://corporate.comcast.com/|newsroom]] |
| ''hearst.com'' | 0.00002 | Hearst Communications, Inc. (Hearst) | n/a -- longstanding | current | current | current | [[https://www.hearst.com/|filing]] |
| ''heraldcorp.com'' | 0.00002 | Herald Corporation Inc. (헤럴드 / Herald Corporation) | n/a -- longstanding | absent | current | absent | [[https://company.heraldcorp.com/content.php?lang=eng|legal-doc]] |
| ''makaira.io'' | 0.00002 | Makaira GmbH | marmalade GmbH merged into Makaira GmbH, effective 2026-08-25 | absent | stale | absent | [[https://www.makaira.io/de/impressum|legal-doc]] |
| ''20min.ch'' | 0.00001 | TX Group AG | Tamedia AG renamed TX Group AG, 2019/2020 | absent | stale | absent | [[https://www.20min.ch/impressum|legal-doc]] |
| ''accessibe.com'' | 0.00001 | accessiBe Inc. | n/a -- independent | absent | current | current | [[https://accessibe.com/|legal-doc]] |
| ''addthiscdn.com'' | 0.00001 | Oracle Corporation | Oracle terminated all AddThis services 2023-05-31; addthis.com now redirects to oracle.com | granularity | current | current | [[http://web.archive.org/web/20241003135046/https://www.addthis.com/|legal-doc]] |
| ''admarketplace.net'' | 0.00001 | adMarketplace, Inc. | n/a -- independent | absent | current | current | [[https://www.admarketplace.com/privacy-policy|legal-doc]] |
| ''amazon.de'' | 0.00001 | Amazon Europe Core S.à r.l. / Amazon EU S.à r.l. (Amazon.com, Inc. group) | n/a -- longstanding Amazon EU operating structure | absent | granularity | current | [[http://web.archive.org/web/20240317112829/https://www.amazon.de/gp/help/customer/display.html?nodeId=505048|legal-doc]] |
| ''atwola.com'' | 0.00001 | Yahoo Inc. | Verizon sold AOL/Yahoo (as Verizon Media/Oath) to Apollo Global Management, renamed Yahoo Inc., 2021 | stale | current | current | [[https://legal.aol.com/privacy/index.html|legal-doc]] |
| ''bestbuy.com'' | 0.00001 | Best Buy Co., Inc. | n/a -- independent | absent | current | absent | [[tls://bestbuy.com:443|register]] |
| ''bilibili.com'' | 0.00001 | 上海幻电信息科技有限公司 (Shanghai Huandian Information Technology Co., Ltd.), operating subsidiary of Bilibili Inc. (NASDAQ: BILI) | n/a -- longstanding | absent | granularity | granularity | [[tls://bilibili.com:443|register]] |
| ''britishairways.com'' | 0.00001 | British Airways Plc | n/a -- independent operating subsidiary (part of International Airlines Group since 2011 merger; no change to the domain's operating entity) | absent | current | absent | [[tls://britishairways.com:443|register]] |
| ''cratecamera.com'' | 0.00001 | Leven Labs, Inc. (DBA Admiral) | n/a -- registrant unchanged since domain creation 2020-08-31 per registrar WHOIS | absent | current | current | [[whois://whois.namecheap.com/cratecamera.com|domain-register]] |
| ''cxt.ms'' | 0.00001 | Taboola, Inc. (operating Connexity) | acquired 2021-09-01 -- Taboola completed its acquisition of Connexity | stale | stale | absent | [[https://www.taboola.com/press-releases/taboola-closes-connexity-acquisition/|newsroom]] |
| ''domdex.com'' | 0.00001 | Deloitte Digital (Deloitte Consulting LLP) | acquired 2018-09-10 -- Deloitte acquired Magnetic Media Online, Inc.'s AI/ad-tech platform business | current | stale | current | [[https://www.prnewswire.com/news-releases/deloitte-acquires-magnetics-artificial-intelligence-platform-business-300709565.html|newsroom]] |
| ''globo.com'' | 0.00001 | Globo Comunicação e Participações S.A. (CNPJ 27.865.757/0001-02) | n/a -- current, live operating entity | absent | current | granularity | [[https://privacidade.globo.com/privacy-policy/|legal-doc]] |
| ''hitc.com'' | 0.00001 | GRV Media Ltd | n/a -- independent, GRV Media Ltd has operated HITC since rebranding from Here Is The City in 2015 | absent | current | absent | [[https://grv.media/privacy/|legal-doc]] |
| ''km0trk.com'' | 0.00001 | Good On You Pty Ltd (Good On You) | n/a -- independent, ABN 75 608 419 085 active | absent | absent | error | [[https://goodonyou.eco/privacy-policy/|parent-site]] |
| ''mediaset.es'' | 0.00001 | Grupo Audiovisual Mediaset España Comunicación, S.A.U. (subsidiary of MFE-MediaForEurope) | renamed/reorganized 2023-03-15 -- Mediaset España Comunicación, S.A. segregated its entire business to Grupo Audiovisual Mediaset España Comunicación, S.A.U. (BORME-C-2023-1010) | absent | stale | absent | [[tls://mediaset.es:443|register]] |
| ''ml.com'' | 0.00001 | Bank of America Corporation (Merrill Lynch) | n/a -- Merrill Lynch has been a Bank of America subsidiary since the 2009 acquisition; no recent change | absent | current | absent | [[tls://ml.com:443|register]] |
| ''offshoregeology.com'' | 0.00001 | Admiral (Leven Labs, Inc.) | n/a -- domain-register shows no ownership change since creation (2015-12-01, last WHOIS update 2025-11-02, no transfer flag) | absent | absent | current | [[https://levenlabs.com/|parent-site]] |
| ''qbox.me'' | 0.00001 | Shanghai Qiniu Information Technology Co., Ltd. (Qiniu Cloud) | n/a -- independent, no ownership change found | current | current | absent | [[https://www-static.qbox.me/en/company|legal-doc]] |
| ''report-uri.io'' | 0.00001 | Report-URI Ltd. | n/a -- independent, no ownership change found | absent | current | absent | [[https://find-and-update.company-information.service.gov.uk/company/10943557|register]] |
| ''vg.hu'' | 0.00001 | Mediaworks Hungary Zrt. | n/a -- independent, no ownership change found | absent | absent | current | [[https://www.vg.hu/impresszum|legal-doc]] |
| ''webmd.com'' | 0.00001 | WebMD LLC (an Internet Brands company; Internet Brands is a KKR portfolio company) | closed 2017-09 -- Internet Brands (KKR) completed its tender offer acquisition of WebMD Health Corp | current | current | absent | [[https://www.webmd.com/|legal-doc]] |
| ''99static.com'' | 0.00001 | 99designs Pty Ltd (99designs by Vista; a Cimpress plc subsidiary) | n/a -- currently a Cimpress plc subsidiary; historical acquisition date not verified against a primary source this session | absent | current | absent | [[https://www.sec.gov/Archives/edgar/data/0001262976/000126297626000027/ex211subsidiariesofcimpres.htm|filing]] |
| ''adrta.com'' | 0.00001 | Pixalate, Inc. | n/a -- independent, no ownership change found | current | current | current | [[tls://adrta.com:443|register]] |
| ''cedscdn.it'' | 0.00001 | CED Digital & Servizi S.r.l. (Caltagirone Editore group) | n/a -- registrant unchanged since domain creation 2014-09-12 per .it registry WHOIS | absent | error | absent | [[whois://whois.nic.it/cedscdn.it|register]] |
| ''cjponyparts.com'' | 0.00001 | CJ Pony Parts, Inc. | n/a -- independent, continuously CJ Pony Parts, Inc. since at least 2015 | absent | current | absent | [[https://web.archive.org/web/20150405015158id_/http://www.cjponyparts.com/terms-of-use/a/110/?SID=|archived-legal-doc]] |
| ''coverartarchive.org'' | 0.00001 | MetaBrainz Foundation, Inc. | n/a -- unchanged since inception; run jointly with Internet Archive | absent | current | absent | [[https://metabrainz.org/projects|parent-site]] |
| ''dnb.com'' | 0.00001 | Dun & Bradstreet, Inc. | n/a -- operating/trading name unchanged; ultimate parent went private via an investor consortium in Feb 2022 | current | current | absent | [[https://web.archive.org/web/20241002130956/https://www.dnb.com/utility-pages/privacy-policy.html|legal-doc]] |
| ''experian.com'' | 0.00001 | Experian Information Solutions, Inc. (brand: Experian; ultimate parent: Experian plc, LSE-listed) | n/a -- long-standing corporate structure | current | granularity | current | [[tls://experian.com:443|register]] |
| ''farfetch-contents.com'' | 0.00001 | Farfetch UK Limited (part of the Coupang, Inc. group since its Jan 2024 acquisition of Farfetch Holdings) | Farfetch Holdings acquired by Coupang, Inc. 2024-01-30; Farfetch UK Limited (no. 06400760, formerly Farfetch.com Limited) remains an active UK subsidiary | absent | current | absent | [[https://find-and-update.company-information.service.gov.uk/company/06400760|register]] |
| ''i.ua'' | 0.00001 | ТОВ «КЕПРЕЙТ ПАРТНЕРС» (LLC Keprait Partners), Ukrainian register code 33500955 | n/a -- registrant since 2019-07-21 per the registry record, no evidence of a later change | absent | absent | current | [[https://help.i.ua/agreement/|legal-doc]] |
| ''jdpower.com'' | 0.00001 | J.D. Power | n/a -- current | absent | current | current | [[tls://jdpower.com:443|register]] |
| ''jobs2careers.com'' | 0.00001 | Talroo, Inc. | n/a -- Jobs2Careers is an active Talroo brand/channel, not a former or renamed entity | absent | current | absent | [[https://www.talroo.com/|parent-site]] |
| ''myaccountaccess.com'' | 0.00001 | U.S. Bank National Association | n/a -- current | absent | current | absent | [[tls://myaccountaccess.com:443|register]] |
| ''radio-canada.ca'' | 0.00001 | Canadian Broadcasting Corporation (French legal/trading name: Société Radio-Canada) | n/a -- current, unchanged bilingual Crown corporation | absent | current | absent | [[https://ici.radio-canada.ca/conditions-utilisation|legal-doc]] |
| ''sapo.io'' | 0.00001 | MEO – Serviços de Comunicações e Multimédia, S.A. (SAPO) | n/a -- SAPO has operated under the MEO/Altice Portugal group; no ownership change identified | absent | current | absent | [[https://ajuda.sapo.pt/politica-de-privacidade-7675|legal-doc]] |
| ''tu-dresden.de'' | 0.00001 | Technische Universität Dresden | n/a -- independent public university, no ownership change | absent | current | absent | [[tls://tu-dresden.de:443|register]] |
| ''tvtime.com'' | 0.00001 | Whip Media Group, Inc. | renamed c.2016-2018 (Whipclip → Whip Media, per secondary sources only, not independently verified); TV Time app/site discontinued 2026-07-15 | absent | stale | absent | [[https://whipmedia.com/news/whip-media-group-parent-to-tv-show-tracking-app-tv-time-raises-50m/|newsroom]] |
| ''viralize.com'' | 0.00001 | ShowHeroes SE (brand: MAX; ShowHeroes Group) | acquired 2020-12 (per trade press only, ShowHeroes Group acquisition of Viralize, not independently verified on a primary source); rebranded to MAX 2024-05 | absent | absent | current | [[https://showheroes.com/imprint/|legal-doc]] |
--- G. DokuWiki rate tables -----------------------------------------
=== webXray ===
^ Verdict ^ Domain-level ^ 95% CI ^ Encounter-weighted ^ 95% CI ^
| current | 69.2% | 56.1%–81.4% | 93.8% | 80.9%–98.6% |
| granularity | 8.8% | 2.1%–17.5% | 0.2% | 0.0%–0.7% |
| stale | 22.0% | 11.4%–33.8% | 5.9% | 1.1%–18.7% |
| error | 0.0% | 0.0%–0.0% | 0.0% | 0.0%–0.0% |
| current+gran. | 78.0% | 65.8%–88.8% | 94.1% | 81.4%–98.8% |
| stale+error | 22.0% | 11.0%–33.8% | 5.9% | 1.1%–18.9% |
=== Tracker Radar ===
^ Verdict ^ Domain-level ^ 95% CI ^ Encounter-weighted ^ 95% CI ^
| current | 73.9% | 61.6%–85.3% | 74.3% | 41.1%–97.8% |
| granularity | 2.5% | 0.0%–7.5% | 0.1% | 0.0%–0.3% |
| stale | 19.2% | 9.1%–30.5% | 21.6% | 0.3%–53.1% |
| error | 4.4% | 0.0%–9.8% | 4.0% | 0.0%–15.7% |
| current+gran. | 76.4% | 64.6%–87.5% | 74.4% | 41.6%–97.8% |
| stale+error | 23.6% | 12.5%–35.6% | 25.6% | 2.2%–58.5% |
=== Disconnect ===
^ Verdict ^ Domain-level ^ 95% CI ^ Encounter-weighted ^ 95% CI ^
| current | 89.2% | 80.5%–96.8% | 82.8% | 53.8%–100.0% |
| granularity | 7.6% | 1.1%–15.2% | 16.8% | 0.0%–45.6% |
| stale | 1.1% | 0.0%–3.4% | 0.4% | 0.0%–1.5% |
| error | 2.1% | 0.0%–6.2% | 0.0% | 0.0%–0.0% |
| current+gran. | 96.8% | 91.5%–100.0% | 99.6% | 98.5%–100.0% |
| stale+error | 3.2% | 0.0%–8.5% | 0.4% | 0.0%–1.5% |
P. The diff: the 2026-09-05 estimate against the 2026-09-11 one
Run as diff out/owner_random_sample-output.txt out/owner_random_sample-tail-output.txt.
--- out/owner_random_sample-output.txt 2026-09-05 18:50:30.299249612 +0000
+++ out/owner_random_sample-tail-output.txt 2026-09-11 19:07:23.934060685 +0000
@@ -14,9 +14,9 @@
the tail, so it is reported first and per quartile rather than buried.
List drawn unresolved eligible per quartile (eligible/drawn)
-webXray 60 11 49 Q1 20/24 Q2 10/12 Q3 7/12 Q4 12/12
-Tracker Radar 60 13 47 Q1 17/24 Q2 9/12 Q3 11/12 Q4 10/12
-Disconnect 60 18 42 Q1 20/24 Q2 7/12 Q3 7/12 Q4 8/12
+webXray 60 4 56 Q1 22/24 Q2 12/12 Q3 10/12 Q4 12/12
+Tracker Radar 60 4 56 Q1 22/24 Q2 10/12 Q3 12/12 Q4 12/12
+Disconnect 60 6 54 Q1 22/24 Q2 11/12 Q3 9/12 Q4 12/12
--- B. Per-list verdict rates, with 95% bootstrap intervals -----------
@@ -26,36 +26,34 @@
list covers equally; 'encounter-weighted' weights by Tracker Radar prevalence,
i.e. how often a crawl actually meets the domain.
-webXray (covers 664 of 32,337 frame domains = 2.1%; n eligible = 49)
+webXray (covers 664 of 32,337 frame domains = 2.1%; n eligible = 56)
verdict domain-level 95% CI encounter-wtd 95% CI
- current 69.9% [ 55.5%, 83.1%] 93.9% [ 80.9%, 98.8%]
- granularity 10.2% [ 2.1%, 20.9%] 0.2% [ 0.0%, 0.8%]
- stale 19.8% [ 9.2%, 32.3%] 5.9% [ 1.0%, 19.1%]
+ current 69.2% [ 56.1%, 81.4%] 93.8% [ 80.9%, 98.6%]
+ granularity 8.8% [ 2.1%, 17.5%] 0.2% [ 0.0%, 0.7%]
+ stale 22.0% [ 11.4%, 33.8%] 5.9% [ 1.1%, 18.7%]
error 0.0% [ 0.0%, 0.0%] 0.0% [ 0.0%, 0.0%]
zero cells (error): the bootstrap interval on a cell with no observations is [0,0] and asserts nothing.
- The usable statement is the rule-of-three upper bound: with 49 eligible rows and 0 seen, the true rate is below 6.1% at 95% confidence.
- current+gran. 80.2% [ 67.7%, 90.8%] 94.1% [ 81.4%, 99.0%]
- stale+error 19.8% [ 9.0%, 32.6%] 5.9% [ 1.1%, 19.4%]
+ The usable statement is the rule-of-three upper bound: with 56 eligible rows and 0 seen, the true rate is below 5.4% at 95% confidence.
+ current+gran. 78.0% [ 65.8%, 88.8%] 94.1% [ 81.4%, 98.8%]
+ stale+error 22.0% [ 11.0%, 33.8%] 5.9% [ 1.1%, 18.9%]
-Tracker Radar (covers 5,566 of 32,337 frame domains = 17.2%; n eligible = 47)
+Tracker Radar (covers 5,566 of 32,337 frame domains = 17.2%; n eligible = 56)
verdict domain-level 95% CI encounter-wtd 95% CI
- current 73.7% [ 60.8%, 85.8%] 68.6% [ 29.3%, 97.0%]
- granularity 2.8% [ 0.0%, 8.3%] 0.1% [ 0.0%, 0.4%]
- stale 22.1% [ 10.5%, 35.1%] 26.8% [ 0.4%, 64.6%]
- error 1.5% [ 0.0%, 4.4%] 4.5% [ 0.0%, 19.3%]
- current+gran. 76.5% [ 63.5%, 88.0%] 68.7% [ 29.2%, 97.7%]
- stale+error 23.5% [ 11.7%, 36.1%] 31.3% [ 2.9%, 71.2%]
+ current 73.9% [ 61.6%, 85.3%] 74.3% [ 41.1%, 97.8%]
+ granularity 2.5% [ 0.0%, 7.5%] 0.1% [ 0.0%, 0.3%]
+ stale 19.2% [ 9.1%, 30.5%] 21.6% [ 0.3%, 53.1%]
+ error 4.4% [ 0.0%, 9.8%] 4.0% [ 0.0%, 15.7%]
+ current+gran. 76.4% [ 64.6%, 87.5%] 74.4% [ 41.6%, 97.8%]
+ stale+error 23.6% [ 12.5%, 35.6%] 25.6% [ 2.2%, 58.5%]
-Disconnect (covers 2,264 of 32,337 frame domains = 7.0%; n eligible = 42)
+Disconnect (covers 2,264 of 32,337 frame domains = 7.0%; n eligible = 54)
verdict domain-level 95% CI encounter-wtd 95% CI
- current 94.4% [ 86.9%,100.0%] 83.1% [ 53.7%,100.0%]
- granularity 4.4% [ 0.0%, 11.2%] 16.5% [ 0.0%, 45.8%]
- stale 1.2% [ 0.0%, 3.8%] 0.4% [ 0.0%, 1.5%]
- error 0.0% [ 0.0%, 0.0%] 0.0% [ 0.0%, 0.0%]
- zero cells (error): the bootstrap interval on a cell with no observations is [0,0] and asserts nothing.
- The usable statement is the rule-of-three upper bound: with 42 eligible rows and 0 seen, the true rate is below 7.1% at 95% confidence.
- current+gran. 98.8% [ 96.2%,100.0%] 99.6% [ 98.5%,100.0%]
- stale+error 1.2% [ 0.0%, 3.8%] 0.4% [ 0.0%, 1.5%]
+ current 89.2% [ 80.5%, 96.8%] 82.8% [ 53.8%,100.0%]
+ granularity 7.6% [ 1.1%, 15.2%] 16.8% [ 0.0%, 45.6%]
+ stale 1.1% [ 0.0%, 3.4%] 0.4% [ 0.0%, 1.5%]
+ error 2.1% [ 0.0%, 6.2%] 0.0% [ 0.0%, 0.0%]
+ current+gran. 96.8% [ 91.5%,100.0%] 99.6% [ 98.5%,100.0%]
+ stale+error 3.2% [ 0.0%, 8.5%] 0.4% [ 0.0%, 1.5%]
--- C. Coverage is not estimated: it is counted --------------------
@@ -73,69 +71,41 @@
verdict is flipped to stale. This is a sensitivity check, not a result: the
flipped figure is what the estimate WOULD be, not a claim that it is.
- webXray heaviest row gstatic.com verdict current carries 39.4% of the estimate
- encounter-weighted 'current' 93.9% -> 54.4% if that one row were stale
- top three rows together carry 53.1%
- Tracker Radar heaviest row omtrdc.net verdict current carries 24.9% of the estimate
- encounter-weighted 'current' 68.6% -> 43.7% if that one row were stale
- top three rows together carry 64.9%
- Disconnect heaviest row id5-sync.com verdict current carries 16.7% of the estimate
- encounter-weighted 'current' 83.1% -> 66.4% if that one row were stale
- top three rows together carry 46.0%
+ webXray heaviest row gstatic.com verdict current carries 38.8% of the estimate
+ encounter-weighted 'current' 93.8% -> 55.0% if that one row were stale
+ top three rows together carry 52.2%
+ Tracker Radar heaviest row omtrdc.net verdict current carries 20.0% of the estimate
+ encounter-weighted 'current' 74.3% -> 54.3% if that one row were stale
+ top three rows together carry 52.4%
+ Disconnect heaviest row id5-sync.com verdict current carries 16.6% of the estimate
+ encounter-weighted 'current' 82.8% -> 66.2% if that one row were stale
+ top three rows together carry 45.6%
--- D. Verdicts on domains drawn for another list (NOT in any estimate) ---
Each drawn domain was adjudicated once and the verdict recorded for all three
lists. Only a list's own sample enters its estimate above; these are the rest,
printed so the discarded observations are visible rather than silently dropped.
- webXray absent=96 current=12 granularity=1 stale=5 unknown=1
- Tracker Radar absent=18 current=58 error=1 granularity=6 stale=16 unknown=16
- Disconnect absent=49 current=44 granularity=8 unknown=14
+ webXray absent=96 current=13 granularity=1 stale=5
+ Tracker Radar absent=18 current=68 error=1 granularity=6 stale=18 unknown=4
+ Disconnect absent=49 current=50 granularity=12 unknown=4
--- E. Residue: every row excluded from an estimate --------------------
- webXray Q1 adgrx.com unknown unresolved Strong secondary-source consensus (Netify, press coverage) that adgrx.com is S
- webXray Q1 company-target.com unknown unresolved Domain has live DNS (CloudFront IP range) but TLS handshake fails and no page
- webXray Q1 1rx.io unknown unresolved Nexxen's own privacy-policy pages (nexxen.com/services-privacy-policy/, nexxen
- webXray Q1 agkn.com unknown unresolved Secondary reporting (not fetched as primary) traces a chain Aggregate Knowledg
- webXray Q2 yceml.net unknown unresolved Domain itself had no TLS handshake at probe time. Conversant LLC (webXray/Trac
- webXray Q2 blogblog.com unknown unresolved Domain 404s and only serves a DV *.blogger.com wildcard cert (Google Trust Ser
- webXray Q3 awltovhc.com unknown unresolved Long-recognized Conversant/ValueClick-style cookie-sync domain. RDAP shows an
- webXray Q3 mmstat.com unknown unresolved Registrar is Alibaba Cloud Computing (Beijing) Co., Ltd. with ns3/4/5.aliyun.c
- webXray Q3 lduhtrp.net unknown unresolved Same Conversant/ValueClick-style cookie-sync domain family as awltovhc.com, wi
- webXray Q3 collective-media.net unknown unresolved 'Collective, Inc.' (the ad network) split its ad-network division into 'Compas
- webXray Q3 wishabi.com unknown unresolved wishabi.com's TLS handshake serves Flipp's certificate (CN=flipp.com) and Flip
- Tracker Radar Q1 app-us1.com unknown unresolved app-us1.com serves no browsable page (CODE 000); ActiveCampaign's own fetched
- Tracker Radar Q1 travelpayouts.com unknown unresolved Homepage confirms the operating brand 'Travelpayouts' but not the legal entity
- Tracker Radar Q1 acint.net unknown unresolved Site self-describes as 'Acint (Artificial Computation Intelligence)' with only
- Tracker Radar Q1 cdnbasket.net unknown unresolved bounceexchange.com 302-redirects to wunderkind.co today, and Wunderkind's fetc
- Tracker Radar Q1 spot.im unknown unresolved OpenWeb's own privacy policy confirms 'Open Web Technologies Ltd.' is a real,
- Tracker Radar Q1 cnevids.com unknown unresolved cnevids.com itself no longer resolves, but its own player.cnevids.com subdomai
- Tracker Radar Q1 marphezis.com unknown unresolved Tracker Radar's claim (Online Media Solutions Ltd. dba Brightcom) is plausible
- Tracker Radar Q2 hqseek.com unknown unresolved hqseek.com redirects to the adult site hqporn.pics; WebFetch of both was refus
- Tracker Radar Q2 contentabc.com unknown unresolved Disconnect's entity 'ContentABC' is a trivial capitalisation of the domain lab
- Tracker Radar Q2 trustpilot.net unknown unresolved Separately confirmed via https://corporate.trustpilot.com/legal/for-reviewers/
- Tracker Radar Q3 cratecamera.com unknown unresolved pgl.yoyo.org's blocklist tags cratecamera.com's category as 'admiral', consist
- Tracker Radar Q4 cjponyparts.com unknown unresolved 'CJ Pony Parts, Inc.' is a real, independent Mustang-parts retailer (not a sel
- Tracker Radar Q4 cedscdn.it unknown unresolved Third-party WHOIS aggregators attribute registration to CED Digital & Servizi
- Disconnect Q1 govx.com unknown unresolved GOVX is a real San Diego company per secondary sources (BBB listing, LinkedIn)
- Disconnect Q1 cdnbasket.net unknown unresolved bounceexchange.com 302-redirects to wunderkind.co today, and Wunderkind's fetc
- Disconnect Q1 agkn.com unknown unresolved Secondary reporting (not fetched as primary) traces a chain Aggregate Knowledg
- Disconnect Q1 opti-digital.com unknown unresolved opti-digital.com fails to resolve at all (curl: could not resolve host); a liv
- Disconnect Q2 at-o.net unknown unresolved at-o.net has no DNS/TLS response; AT Internet's (now Piano's) own data-protect
- Disconnect Q2 mapixl.com unknown unresolved Searches for a link between Disconnect's claimed 'MarketingArchitects' (a Minn
- Disconnect Q2 ksearchnet.com unknown unresolved Klevu's own SDK README (klevultd GitHub org, now branded Athos Commerce per kl
- Disconnect Q2 gssprt.jp unknown unresolved webXray, Tracker Radar and Disconnect all agree on Geniee, and third-party WHO
- Disconnect Q2 kameleoon.io unknown unresolved Kameleoon SAS's own legal notice confirms it operates kameleoon.com/app.kamele
- Disconnect Q3 stat-track.com unknown unresolved Disconnect's 'StackTrack' is a near-verbatim mangling of the domain label 'sta
- Disconnect Q3 sa-as.com unknown unresolved Domain does not resolve over TLS and no primary source (newsroom/filing/legal-
- Disconnect Q3 stripst.com unknown unresolved stripst.com returned HTTP 522 on every fetch attempt (both root and a guessed
- Disconnect Q3 htplayground.com unknown unresolved Disconnect's entry is literally the string 'htplayground.com', identical to th
- Disconnect Q3 pages02.net unknown unresolved Leads (non-primary) indicate pages0X.net domains are Silverpop/IBM Watson Mark
- Disconnect Q4 globo.com unknown unresolved Public secondary sources describe Globo Comunicação e Participações S.A. (form
- Disconnect Q4 offshoregeology.com unknown unresolved Disconnect's 'Admiral' claim could not be verified against a primary source; a
- Disconnect Q4 i.ua unknown unresolved RDAP lists registrant 'Digital Ventures LLC' and registrar 'Internet Invest LL
- Disconnect Q4 km0trk.com unknown unresolved Disconnect's entry name is simply the domain itself (km0trk.com), which is sel
+ webXray Q1 1rx.io unknown unresolved register-by-number: no company/VAT number available anywhere for 'Blinkx'/'Rhy
+ webXray Q1 agkn.com unknown unresolved Register-by-number: SEC EDGAR full-text search for the exact phrase "agkn.com"
+ webXray Q3 mmstat.com unknown unresolved Register-by-number: tried China's official ICP/beian registry at beian.miit.go
+ webXray Q3 collective-media.net unknown unresolved Tried all three routes. Register-by-number: SEC EDGAR full-text search for '"C
+ Tracker Radar Q1 cdnbasket.net unknown unresolved All three routes came back empty. Register-by-number: no identifying company/V
+ Tracker Radar Q1 marphezis.com unknown unresolved register-by-number: no identifier available for 'Online Media Solutions Ltd. d
+ Tracker Radar Q2 hqseek.com unknown unresolved All three routes tried. register-by-number: no imprint or identifiable number
+ Tracker Radar Q2 contentabc.com unknown unresolved Register-by-number: no imprint, VAT, or company number for either candidate ('
+ Disconnect Q1 cdnbasket.net unknown unresolved All three routes came back empty. Register-by-number: no identifying company/V
+ Disconnect Q1 agkn.com unknown unresolved Register-by-number: SEC EDGAR full-text search for the exact phrase "agkn.com"
+ Disconnect Q2 mapixl.com unknown unresolved All three routes tried and none produced an identifier for the actual operator
+ Disconnect Q3 stat-track.com unknown unresolved All three routes were tried. Register-by-number: Disconnect's 'StackTrack' is
+ Disconnect Q3 stripst.com unknown unresolved Register-by-number: no imprint or company number is available anywhere for str
+ Disconnect Q3 htplayground.com unknown unresolved register-by-number: Disconnect's own entry is just the domain string, so there
--- F. The adjudication table ---------------------------------------
@@ -147,7 +117,7 @@
| ''smartadserver.com'' | 0.07333 | Equativ SAS (RCS Paris 487 613 481) | renamed 2023 -- Smart Adserver / Smartadserver S.A.S. became Equativ after its merger with DAX | stale | stale | current | [[https://www.equativ.com/legal-mentions|legal-doc]] |
| ''lijit.com'' | 0.06419 | Sovrn Holdings, Inc. | n/a -- Sovrn Holdings, Inc. operates lijit.com today | current | current | current | [[https://lijit.com/|legal-doc]] |
| ''bidr.io'' | 0.05861 | Beeswax Inc. (a FreeWheel / Comcast company) | closed ~2021-01 -- FreeWheel (Comcast) agreed 2020-12-17 to acquire Beeswax | current | current | granularity | [[https://www.beeswax.com/privacy/|legal-doc]] |
-| ''1rx.io'' | 0.05313 | //unresolved// | UNRESOLVED -- domain is dead (no TLS handshake, no HTTP response) and no primary source fetched this session ties 1rx.io itself to RhythmOne or Nexxen | unknown | unknown | unknown | //none// |
+| ''1rx.io'' | 0.05313 | UNKNOWN | UNRESOLVED -- no primary source located | unknown | unknown | unknown | [[NONE -- no primary source reached|none]] |
| ''simpli.fi'' | 0.05248 | Simplifi Holdings, LLC (GTCR-backed, privately held) | n/a -- privately held, longstanding GTCR portfolio company | current | granularity | current | [[https://simpli.fi/website-privacy-policy|legal-doc]] |
| ''gumgum.com'' | 0.05151 | GumGum, Inc. | n/a -- independent | current | current | current | [[https://gumgum.com/terms-and-policies/privacy-policy|legal-doc]] |
| ''quantserve.com'' | 0.04428 | Quantcast Corporation (Quantcast) | n/a -- independent | current | current | current | [[https://legal.quantcast.com/|legal-doc]] |
@@ -155,7 +125,7 @@
| ''klaviyo.com'' | 0.04172 | Klaviyo, Inc. | n/a -- independent | absent | current | current | [[https://www.klaviyo.com/de/|legal-doc]] |
| ''loopme.me'' | 0.04039 | LoopMe Ltd (LoopMe) | n/a -- independent | current | error | current | [[https://legal.loopme.com/privacy-center|legal-doc]] |
| ''fontawesome.com'' | 0.03873 | Fonticons, Inc. | n/a -- independent | current | current | absent | [[https://fontawesome.com/tos|legal-doc]] |
-| ''agkn.com'' | 0.03580 | //unresolved// | UNRESOLVED -- domain is dead today (NXDOMAIN/no TLS handshake) though RDAP shows it remains registered (not expired, locked, registrar GoDaddy Corporate Domains) with no disclosed registrant org; could not reach any current primary source naming an operator | unknown | unknown | unknown | //none// |
+| ''agkn.com'' | 0.03580 | UNRESOLVED | UNRESOLVED -- registry WHOIS registrant is privacy-proxied (Brandsight/GoDaddy Corporate Domains) with no organization disclosed, and TransUnion's own pages that would plausibly name AdAdvisor/agkn.com are bot-walled | unknown | unknown | unknown | //none// |
| ''wp.com'' | 0.02694 | Automattic, Inc. (WordPress.com) | n/a -- independent, operated by Automattic since founding (2005) | current | current | current | [[https://automattic.com/|parent-site]] |
| ''eyeota.net'' | 0.02519 | Eyeota, a Dun & Bradstreet company | acquired by Dun & Bradstreet, announced 2021-11-04 (Eyeota retains its own brand as a D&B subsidiary) | current | current | granularity | [[https://www.eyeota.com/blog/eyeota-is-now-a-dun-bradstreet-company|newsroom]] |
| ''newrelic.com'' | 0.02217 | New Relic, Inc. | n/a -- independent, unchanged | current | current | current | [[https://newrelic.com/termsandconditions/terms|legal-doc]] |
@@ -169,15 +139,15 @@
| ''ctnsnet.com'' | 0.01392 | Crimtan Holdings Limited | n/a -- independent, unchanged | current | current | current | [[https://find-and-update.company-information.service.gov.uk/company/07810698|register]] |
| ''sharethis.com'' | 0.01349 | Predactiv, Inc. (ShareThis) | n/a -- ShareThis currently operates as a division of Predactiv, Inc.; the date this structure began was not sourced | granularity | granularity | current | [[https://sharethis.com/privacy/|legal-doc]] |
| ''mountain.com'' | 0.01288 | MNTN, Inc. | renamed 2022-06-14 (MNTN Digital, Inc. -> MNTN, Inc.), per SEC EDGAR | absent | stale | current | [[https://data.sec.gov/submissions/CIK0001891027.json|filing]] |
-| ''spot.im'' | 0.01101 | //unresolved// | UNRESOLVED -- spot.im is dead (TLS handshake failure on both spot.im and www.spot.im, which also 502s); no primary source found tying the domain itself to a current operator | absent | unknown | unknown | [[https://www.openweb.com/legal-and-privacy/privacy/|legal-doc]] |
+| ''spot.im'' | 0.01101 | Open Web Technologies Ltd. (OpenWeb) | renamed 2020 (Spot.IM -> OpenWeb) | absent | current | current | [[https://www.openweb.com/newsroom|parent-site]] |
| ''cloudfront.net'' | 0.01081 | Amazon Web Services, Inc. (Amazon) | n/a -- Amazon since inception | current | granularity | current | [[https://aws.amazon.com/privacy/|legal-doc]] |
| ''hotjar.io'' | 0.01015 | Contentsquare | UNRESOLVED -- exact Hotjar acquisition date not sourced this session; current state confirmed via redirect + copyright | stale | stale | current | [[https://contentsquare.com/hotjar/?utm_campaign=exp__hj_hp_redirection|parent-site]] |
| ''stripe.com'' | 0.00967 | Stripe, LLC | UNRESOLVED -- exact date of the Stripe, Inc. -> Stripe, LLC change not sourced; current name confirmed via site footer + EV TLS cert | absent | stale | current | [[https://stripe.com/de-ch/legal/consumer|legal-doc]] |
| ''azure.com'' | 0.00960 | Microsoft Corporation | n/a -- Microsoft since inception | absent | current | current | [[tls://azure.microsoft.com:443|register]] |
-| ''company-target.com'' | 0.00897 | //unresolved// | UNRESOLVED -- domain resolves to CloudFront-range IPs but TLS handshake fails (alert 552) and HTTP returns 403/no response; no content or primary source reachable | unknown | unknown | unknown | //none// |
+| ''company-target.com'' | 0.00897 | Demandbase, Inc. | n/a -- registered 2012-08-06, no evidence of any transfer; Demandbase's own documentation still calls it their domain as of 2025 | current | current | current | [[https://web.archive.org/web/20250908011403id_/https://support.demandbase.com/hc/en-us/articles/360019872411-Data-Collection-Overview|parent-site]] |
| ''paypal.com'' | 0.00751 | PayPal, Inc. | n/a -- independent, no ownership change found | absent | current | current | [[https://www.paypal.com/us/legalhub/paypal/privacy-full|legal-doc]] |
-| ''adgrx.com'' | 0.00681 | //unresolved// | UNRESOLVED -- news coverage says AdGear Technologies (acquired by Samsung Electronics Canada, 2016) operates adgrx.com as part of Samsung Ads, but no fetch reached a primary source naming adgrx.com: samsungads.ca/en/privacy/ has an expired TLS certificate, help.samsungads.com/docs/samsung-ad-manager-privacy-notice failed TLS handshake, and samsung.com's general ads privacy page names no subsidiary or domain. adgrx.com itself has no TLS handshake and no RDAP. | unknown | unknown | unknown | //none// |
-| ''marphezis.com'' | 0.00666 | //unresolved// | UNRESOLVED -- domain does not resolve (no TLS handshake, no RDAP, HTTP code 000); Brightcom's own homepage and privacy policy (brightcom.com) make no mention of marphezis.com or any operated-domains list. | absent | unknown | absent | //none// |
+| ''adgrx.com'' | 0.00681 | AdGear Technologies, Inc. ("AdGear", trading as Samsung Ads; wholly-owned subsidiary of Samsung Electronics Canada, Inc.) | n/a -- current since Samsung's 2018 acquisition of AdGear | current | current | granularity | [[https://samsungads.ca/en/cookie-policy/|legal-doc]] |
+| ''marphezis.com'' | 0.00666 | UNKNOWN | UNRESOLVED -- no primary source located | absent | unknown | absent | [[NONE -- no primary source reached|none]] |
| ''iqzone.com'' | 0.00663 | IQzone Inc. | n/a -- independent, live and self-operated; no ownership change found | absent | current | current | [[https://iqzone.com/|legal-doc]] |
| ''histats.com'' | 0.00650 | Wisecode S.r.l. Unipersonale (Histats) | n/a -- Wisecode operates Histats.com directly; no ownership change found | current | current | current | [[https://www.histats.com/|legal-doc]] |
| ''adition.com'' | 0.00612 | Virtual Minds GmbH (Adition) | ADITION technologies AG merged into the Virtual Minds group (~2013); Virtual Minds AG converted its legal form to Virtual Minds GmbH (name/legal-form change, ~2021); Adition is now marketed as a Virtual Minds GmbH product | stale | stale | current | [[https://virtualminds.com/adition/|parent-site]] |
@@ -187,14 +157,14 @@
| ''forter.com'' | 0.00419 | Forter Ltd. (Israel; affiliates include Forter, Inc. — US, Forter Solutions UK Ltd., Forter Pte Ltd.) | n/a -- independent | absent | current | current | [[https://www.forter.com/privacy-policy/|legal-doc]] |
| ''zoominfo.com'' | 0.00405 | ZoomInfo Technologies LLC (ZoomInfo) | n/a -- current operating entity per live privacy policy; 'Zoom Information, Inc.' was a company ZoomInfo acquired in Feb 2019, since folded into the ZoomInfo corporate structure | absent | stale | current | [[https://www.zoominfo.com/privacy-policy|legal-doc]] |
| ''braze.com'' | 0.00353 | Braze, Inc. | n/a -- independent, publicly traded (NASDAQ: BRZE) | current | current | current | [[https://www.braze.com/privacy|legal-doc]] |
-| ''app-us1.com'' | 0.00351 | //unresolved// | UNRESOLVED -- could not fetch a primary source naming the operator of this specific domain | absent | unknown | unknown | //none// |
-| ''govx.com'' | 0.00330 | //unresolved// | UNRESOLVED -- every fetch of govx.com returned only the homepage title, no legal-entity document reached | absent | unknown | unknown | //none// |
+| ''app-us1.com'' | 0.00351 | ActiveCampaign, LLC (ActiveCampaign) | n/a -- independent, registered 2013, no ownership change found | absent | current | current | [[whois://whois.markmonitor.com/app-us1.com|domain-register]] |
+| ''govx.com'' | 0.00330 | GovX, Inc. | n/a -- independent, no ownership change found | absent | current | current | [[https://www.sec.gov/Archives/edgar/data/1623323/000162332316000003/xslFormDX01/primary_doc.xml|filing]] |
| ''visualstudio.com'' | 0.00325 | Microsoft Corporation | n/a -- Microsoft has always operated this domain (Visual Studio product site) | absent | current | current | [[tls://visualstudio.com:443|register]] |
-| ''cdnbasket.net'' | 0.00305 | //unresolved// | UNRESOLVED -- domain is dead (no TLS handshake, CODE 000); only a third-party WHOIS aggregator ties it historically to Bounce Exchange, not a primary source | absent | unknown | unknown | //none// |
+| ''cdnbasket.net'' | 0.00305 | UNRESOLVED | UNRESOLVED -- no primary source ties cdnbasket.net to any named entity | absent | unknown | unknown | [[https://www.wunderkind.co/privacy-policy|legal-doc]] |
| ''elfsight.com'' | 0.00303 | Elfsight, SL | n/a -- current operator per live Terms of Service and About page | absent | error | current | [[https://elfsight.com/terms-of-service/|legal-doc]] |
| ''ispot.tv'' | 0.00293 | iSpot.tv, Inc. | n/a -- independent | absent | current | current | [[https://www.ispot.tv/privacy|legal-doc]] |
| ''reson8.com'' | 0.00239 | Resonate Networks, Inc. (Resonate) | n/a -- current, per live privacy policy naming reson8.com URLs as its own opt-out/tracking infrastructure | current | current | current | [[https://www.resonate.com/privacy-policy/|legal-doc]] |
-| ''opti-digital.com'' | 0.00211 | //unresolved// | UNRESOLVED -- domain does not resolve (DNS failure, no TLS handshake) as of 2026-09-05 | absent | unknown | unknown | [[https://optidigital.com/legal-notice/|legal-doc]] |
+| ''opti-digital.com'' | 0.00211 | Opti Digital SAS (2 Rue des Cortalets, 66400 Céret, France) | n/a -- independent, live company | absent | current | current | [[https://optidigital.com/legal-notice/|legal-doc]] |
| ''nofraud.com'' | 0.00205 | Wyllo LLC (rebranded from NoFraud) | rebranded NoFraud -> Wyllo; exact rebrand date UNRESOLVED (current privacy policy dated 2026-03-19) | absent | stale | stale | [[https://wyllo.ai/privacy/|legal-doc]] |
| ''zopim.com'' | 0.00200 | Zendesk, Inc. | acquired by Zendesk 2014-04-10 | current | current | current | [[https://www.zendesk.com/company/press/zendesk-acquires-live-chat-leader-zopim/|newsroom]] |
| ''mparticle.com'' | 0.00192 | mParticle, Inc. (a Rokt company, post-merger) | merged into Rokt, announced 2025-01-16 (~US$300M deal) | absent | current | granularity | [[https://www.mparticle.com/news/rokt-and-mparticle-merge/|newsroom]] |
@@ -203,70 +173,70 @@
| ''squarecdn.com'' | 0.00153 | Block, Inc. | Square, Inc. renamed to Block, Inc. 2021-12-10 | absent | current | absent | [[https://squareup.com/us/en/legal/general/privacy|legal-doc]] |
| ''sendtonews.com'' | 0.00144 | Minute Media (via its STN Video subsidiary/brand, formerly SendtoNews) | acquired by Minute Media, announced 2024-01 (~US$150M, per STN Video's own archived press release) | absent | absent | current | [[https://web.archive.org/web/20240718175821/https://www.stnvideo.com/press/minute-media-acquires-stn-video/|newsroom]] |
| ''amung.us'' | 0.00143 | whos.amung.us Inc. | n/a -- independent | current | current | current | [[https://whos.amung.us/legal/terms/|legal-doc]] |
-| ''ksearchnet.com'' | 0.00129 | //unresolved// | UNRESOLVED -- no qualifying primary source found | absent | absent | unknown | [[https://github.com/klevultd/frontend-sdk/blob/master/packages/klevu-core/README.md|other (non-qualifying: SDK docs on GitHub, not a newsroom/filing/legal-doc/register/parent-site)]] |
+| ''ksearchnet.com'' | 0.00129 | Klevu Oy (operating subsidiary of Athos Commerce) | n/a -- Klevu (and Klevu Oy, its Finnish operating entity) merged with Searchspring in 2024/2025 to form Athos Commerce; ksearchnet.com is still run under the Klevu Oy legal name today | absent | absent | granularity | [[tls://eucs23v2.ksearchnet.com:443|register]] |
| ''everestjs.net'' | 0.00121 | Adobe Inc. | n/a -- long-standing Adobe Advertising infrastructure domain | current | current | current | [[https://experienceleague.adobe.com/en/docs/id-service/using/reference/csp|parent-site]] |
-| ''kameleoon.io'' | 0.00108 | //unresolved// | UNRESOLVED -- domain is dead (no TLS handshake, no HTTP response) and no fetched source names kameleoon.io specifically | absent | absent | unknown | [[https://www.kameleoon.com/legal-notice|legal-doc]] |
+| ''kameleoon.io'' | 0.00108 | Kameleoon SAS (Kameleoon) | n/a -- independent, no ownership change found | absent | absent | current | [[https://www.kameleoon.com/legal-notice|legal-doc]] |
| ''aralego.com'' | 0.00105 | ucfunnel | n/a -- ucfunnel operates aralego.com as its publisher/buyer dashboard domain | absent | current | current | [[https://dashboard.aralego.com/|legal-doc]] |
| ''govdelivery.com'' | 0.00105 | Granicus, LLC | merged 2016-10-25 (GovDelivery merged with Granicus, majority-backed by Vista Equity Partners) | granularity | current | absent | [[https://granicus.com/blog/granicus-govdelivery-announce-merger/|newsroom]] |
| ''cookiefirst.com'' | 0.00104 | Digital Data Solutions B.V. | n/a -- long-standing operator | absent | current | absent | [[https://cookiefirst.com/privacy-policy/|legal-doc]] |
-| ''gssprt.jp'' | 0.00101 | //unresolved// | UNRESOLVED -- domain unreachable in probe (no TLS handshake, no RDAP) and no fetched Geniee source names gssprt.jp | unknown | unknown | unknown | [[https://en.geniee.co.jp/privacy/|legal-doc]] |
+| ''gssprt.jp'' | 0.00101 | Geniee, Inc. | n/a -- independent since domain creation (2013) | current | current | current | [[whois://whois.jprs.jp/gssprt.jp|domain-register]] |
| ''researchnow.com'' | 0.00097 | Dynata, LLC | renamed 2019-01-15 (Research Now SSI rebranded as Dynata); ownership itself changed again 2024-07-02 when lienholders took 100% equity in a court-approved restructuring | current | stale | current | [[https://www.dynata.com/why-dynata/about-dynata/press/research-now-and-ssi-merger-successfully-completed/|newsroom]] |
| ''vidazoo.com'' | 0.00078 | Perion Network Ltd. | acquired 2021-10-04 | absent | stale | current | [[https://www.sec.gov/Archives/edgar/data/1338940/000117891321003077/exhibit_99-1.htm|filing]] |
| ''tmdb.org'' | 0.00075 | TiVo Platform Technologies LLC (a subsidiary of Xperi Inc.) | changed -- Fanhattan LLC acquired TMDB circa 2016; exact date of the subsequent transition to TiVo Platform Technologies LLC / Xperi Inc. not verified this session | absent | stale | absent | [[https://www.themoviedb.org/terms-of-use|legal-doc]] |
| ''tns-counter.ru'' | 0.00071 | AO ADFACT / JSC ADFACT (Cyrillic АО «ЭДФАКТ»), a subsidiary of AO Mediascope | n/a -- ADFACT has run under the Mediascope brand since Mediascope's 2017 rebrand from TNS Russia | current | current | granularity | [[https://www.mediascope.net/about/|parent-site]] |
| ''owneriq.net'' | 0.00067 | Inmar, Inc. | acquired 2019-10-22 | stale | current | current | [[https://www.globenewswire.com/news-release/2019/10/22/1933083/0/en/Inmar-Acquires-ownerIQ-Adding-A-Critical-Data-and-Media-Solution-to-Inmar-s-Newly-Launched-Innovator-Ecosystem.html|newsroom]] |
-| ''acint.net'' | 0.00065 | //unresolved// | UNRESOLVED -- no primary source (company filing, legal doc with a real legal name, or parent site) identifies an operator; the only registrant lead is an individual's WHOIS record, which is not an admissible primary source | absent | unknown | unknown | [[https://acint.net/|legal-doc]] |
+| ''acint.net'' | 0.00065 | Poshibalov Evgeny Vasilyevich, operating the self-titled project 'Acint (Artificial Computation Intelligence)' | n/a -- same registrant since domain creation 2014-02-06 per registrar WHOIS | absent | current | current | [[whois://whois.publicdomainregistry.com/acint.net|domain-register]] |
| ''force.com'' | 0.00064 | Salesforce, Inc. | n/a -- current; salesforce.com, inc. formally renamed to Salesforce, Inc. effective 2022-04-04 | absent | stale | current | [[https://investor.salesforce.com/news/news-details/2022/Salesforce-Changes-Legal-Name-to-Salesforce-Inc/default.aspx|newsroom]] |
-| ''yceml.net'' | 0.00062 | //unresolved// | UNRESOLVED -- structural evidence (conversantmedia.com now 301-redirects to www.epsilon.com, and its /legal/privacy path redirects to legal.epsilon.com) points to Conversant now sitting under Epsilon/Publicis Groupe, but no fetched page carried on-page text naming that relationship, so it does not clear the quote bar | unknown | unknown | unknown | [[https://www.conversantmedia.com/|parent-site]] |
+| ''yceml.net'' | 0.00062 | Conversant, Inc. (operating brand Epsilon; ultimate parent Publicis Groupe) | granularity: Conversant folded into Epsilon after Publicis Groupe's 2019 acquisition of Epsilon; 'Here, There & Everywhere' (webXray's parent field, an Alliance Data-era name) is superseded/stale | stale | current | granularity | [[whois://whois.markmonitor.com/yceml.net|domain-register]] |
| ''conviva.com'' | 0.00049 | Conviva | n/a -- independent, current | current | current | current | [[https://www.conviva.ai/|legal-doc]] |
-| ''travelpayouts.com'' | 0.00049 | //unresolved// | UNRESOLVED -- privacy-policy/terms pages 403'd or 404'd on every URL tried this session; only the homepage was fetchable | absent | unknown | absent | [[https://www.travelpayouts.com/|legal-doc]] |
+| ''travelpayouts.com'' | 0.00049 | Go Travel Un Limited (Hong Kong; trading as Travelpayouts) | n/a -- current per the domain's own Terms of Service, archived 2026-02-17 (~7 months old); Hong Kong entity registered 18.08.2011, Registration number 1658681 | absent | current | absent | [[https://web.archive.org/web/20260217212541id_/https://support.travelpayouts.com/hc/en-us/articles/360004162111-Terms-of-the-Travelpayouts-Travel-Affiliate-Network?tp_place=footer_wp_wa|archived-legal-doc]] |
| ''newsmemory.com'' | 0.00044 | Tecnavia | n/a -- independent, current | absent | current | absent | [[https://www.tecnavia.com/about-us|newsroom]] |
| ''solarwinds.com'' | 0.00043 | SolarWinds Worldwide, LLC (operating entity); ultimate parent Turn/River Capital | 2025-04-16 -- Turn/River Capital completed take-private acquisition | stale | current | current | [[https://www.solarwinds.com/company/newsroom/press-releases/turnriver-completes-acquisition-of-solarwinds|newsroom]] |
-| ''blogblog.com'' | 0.00041 | //unresolved// | UNRESOLVED -- no primary source names this specific domain | unknown | unknown | absent | //none// |
+| ''blogblog.com'' | 0.00041 | Google LLC (Blogger) | n/a -- registered 2000-09-15, currently Google-operated (Blogger), no change evidenced | current | current | absent | [[whois://whois.markmonitor.com/blogblog.com|domain-register]] |
| ''blogspot.com'' | 0.00034 | Google LLC (Blogger; EEA/Switzerland: Google Ireland Limited) | n/a -- long-standing Google/Blogger property | current | current | current | [[https://policies.google.com/privacy|legal-doc]] |
| ''snapengage.com'' | 0.00034 | SnapEngage, LLC (subsidiary of TeamSupport LLC) | 2021-05-20 -- TeamSupport acquired SnapEngage (per public reporting); ownership confirmed current via SnapEngage's own privacy policy | absent | stale | current | [[https://snapengage.com/privacy-policy|legal-doc]] |
| ''yieldlove-ad-serving.net'' | 0.00034 | Yieldlove GmbH (majority-owned by Ströer SE & Co. KGaA) | 2017-10-04 -- Ströer acquired a majority shareholding in Yieldlove GmbH | absent | current | current | [[https://www.stroeer.de/en/newsroom/press/expansion-of-technological-platform-marketing-stroeer-acquires-programmatic-platform-and-header-bidding-specialists-yieldlove/|newsroom]] |
| ''ibb.co'' | 0.00029 | ImgBB | n/a -- independent, brand-operated service | absent | current | absent | [[https://imgbb.com/tos|legal-doc]] |
-| ''at-o.net'' | 0.00027 | //unresolved// | UNRESOLVED -- domain does not resolve; no operator identifiable from a primary source | absent | absent | unknown | //none// |
-| ''cnevids.com'' | 0.00026 | //unresolved// | UNRESOLVED -- no primary source names the owner | absent | unknown | absent | //none// |
+| ''at-o.net'' | 0.00027 | Applied Technologies Internet SAS (AT Internet), controlled by Piano Software, Inc. | acquired by Piano -- exact date not confirmed by a primary source fetched this session | absent | absent | current | [[https://recherche-entreprises.api.gouv.fr/search?q=Applied%20Technologies%20Internet|register]] |
+| ''cnevids.com'' | 0.00026 | Condé Nast Entertainment (Advance Publications) | n/a -- Sabin, Bermant & Gould LLP was never the operator, only the registrant's outside-counsel contact | absent | error | absent | [[https://player.cnevids.com/|legal-doc]] |
| ''pushnami.com'' | 0.00024 | Pushnami, LLC | n/a -- independent, no ownership change found | absent | current | current | [[https://pushnami.com/privacy-policy/|legal-doc]] |
-| ''mapixl.com'' | 0.00022 | //unresolved// | UNRESOLVED -- site returns Cloudflare 403, no TLS org identity, no RDAP/registrant data, and no primary source ties any company to this domain | absent | absent | unknown | //none// |
+| ''mapixl.com'' | 0.00022 | UNRESOLVED -- Cloudflare-walled site, no legal page ever archived, registrant is a privacy proxy | UNRESOLVED -- no dated evidence either way | absent | absent | unknown | [[whois://whois.godaddy.com/mapixl.com|domain-register]] |
| ''responsiveads.com'' | 0.00018 | ResponsiveAds, Inc. | n/a -- independent, no ownership change known | absent | current | absent | [[https://responsiveads.com/|legal-doc]] |
| ''crsspxl.com'' | 0.00016 | Cross Pixel Media, Inc. | n/a -- independent, no ownership change known | current | current | current | [[https://crosspixel.net/privacy-policy/|legal-doc]] |
| ''cudasvc.com'' | 0.00016 | Barracuda Networks, Inc. | n/a -- independent, no ownership change known | absent | current | current | [[https://campus.barracuda.com/product/campus/doc/89096320/required-outbound-connections-for-barracuda-networks-appliances/|parent-site]] |
-| ''htplayground.com'' | 0.00016 | //unresolved// | UNRESOLVED -- domain unreachable (no TLS handshake, no HTTP response), WHOIS/RDAP registrant is a privacy-protection proxy, and the only archived content is a 2015 Wayback snapshot with no operator identification | absent | absent | unknown | //none// |
+| ''htplayground.com'' | 0.00016 | UNKNOWN | UNRESOLVED -- no primary source located | absent | absent | unknown | [[NONE -- no primary source reached|none]] |
| ''userzoom.com'' | 0.00016 | UserTesting, Inc. (brand: UserTesting; formerly independent UserZoom, Inc.) | merged 2023-04-03 (Thoma Bravo portfolio companies UserTesting and UserZoom merged and now operate under the UserTesting name) | absent | stale | absent | [[https://www.thomabravo.com/press-releases/usertesting-and-userzoom-merge-to-help-organizations-build-human-centered-experiences-for-all|newsroom]] |
| ''cnzz.com'' | 0.00014 | Alibaba (China) Technology Co., Ltd. (Alibaba Group; operates as part of the Umeng+ / CNZZ analytics brand) | n/a -- CNZZ merged with Umeng and Diyuanxin into Umeng+ in 2016 under Alibaba; ownership unchanged since | current | granularity | granularity | [[tls://cnzz.com:443|register]] |
| ''yahooapis.com'' | 0.00014 | Yahoo Inc. (majority owned by Apollo Funds/Apollo Global Management; Verizon retains a 10% stake) | changed 2021-09-01 (Apollo Funds completed acquisition of Yahoo, formerly Verizon Media) | stale | current | current | [[https://www.apollo.com/insights-news/pressreleases/2021/09/apollo-funds-complete-acquisition-of-yahoo-161530593|newsroom]] |
| ''cnn.com'' | 0.00012 | Warner Bros. Discovery, Inc. | changed 2022-04-08 (WarnerMedia-Discovery merger formed Warner Bros. Discovery, Inc.) | absent | current | current | [[tls://cnn.com:443|register]] |
-| ''contentabc.com'' | 0.00012 | //unresolved// | UNRESOLVED -- domain does not resolve (NXDOMAIN on direct fetch, probe CODE:000, no TLS handshake); WebSearch leads (urlscan, whois, Aylo's own brands page) point to Aylo but Aylo's brands page (https://www.aylo.com/brands/) does NOT name contentabc.com, and no privacy policy/legal page naming the domain could be fetched | absent | unknown | unknown | //none// |
+| ''contentabc.com'' | 0.00012 | UNRESOLVED | UNRESOLVED -- no live page, fully privacy-proxied registrant, zero Wayback captures, no primary source ties either TR's 'Aylo' or Disconnect's 'ContentABC' to the domain | absent | unknown | unknown | //none// |
| ''glomex.com'' | 0.00012 | glomex GmbH | n/a -- current, confirmed via own Impressum fetched 2026-09-05 | absent | absent | current | [[https://www.glomex.com/de/impressum|legal-doc]] |
-| ''pages02.net'' | 0.00012 | //unresolved// | UNRESOLVED -- could not fetch a primary source tying pages02.net specifically to a current operator | absent | unknown | unknown | //none// |
+| ''pages02.net'' | 0.00012 | Acoustic, L.P. | sold 2019 (IBM divested Watson Marketing/Commerce to Centerbridge Partners, relaunched as Acoustic) | absent | stale | current | [[whois://whois.markmonitor.com/pages02.net|domain-register]] |
| ''tqlkg.com'' | 0.00012 | Conversant, LLC (Epsilon Data Management, LLC; ultimate parent Publicis Groupe S.A.) | 2019-07 -- Publicis Groupe completed acquisition of Epsilon (including its Conversant business) from Alliance Data Systems | stale | current | granularity | [[https://www.publicisgroupe.com/en/news/press-releases/publicis-groupe-to-acquire-epsilon|newsroom]] |
| ''appspot.com'' | 0.00011 | Google LLC (Alphabet Inc.) | n/a -- Google since appspot.com's 2008 launch as Google App Engine | current | current | absent | [[https://policies.google.com/terms|legal-doc]] |
-| ''stat-track.com'' | 0.00011 | //unresolved// | UNRESOLVED -- domain does not resolve (probe CODE:000, no TLS); no primary source found | absent | absent | unknown | //none// |
-| ''trustpilot.net'' | 0.00010 | //unresolved// | UNRESOLVED -- domain does not serve content under its own hostname; TLS cert covers only *.trustpilot.com (mismatch on direct fetch) and carries no validated-organisation (O=) field, so it does not meet the register-grade bar | absent | unknown | absent | //none// |
+| ''stat-track.com'' | 0.00011 | UNRESOLVED | UNRESOLVED -- domain shows no activity since a 2002-2011 self-hosted install that predates the current 2016 registration | absent | absent | unknown | [[https://rdap.verisign.com/com/v1/domain/stat-track.com|domain-register]] |
+| ''trustpilot.net'' | 0.00010 | Trustpilot A/S (Pilestraede 58, 5th floor, DK-1112 Copenhagen K, Denmark) | n/a -- defensive/redirect domain of the same live company, not a separate acquisition | absent | current | absent | [[https://corporate.trustpilot.com/legal/for-reviewers/privacy-policy-end-user|legal-doc]] |
| ''atgsvcs.com'' | 0.00008 | Oracle Corporation (successor to Art Technology Group, Inc.) | 2011-01-05 -- Oracle completed its acquisition; Art Technology Group, Inc. became a wholly owned subsidiary of Oracle | absent | current | current | [[https://www.sec.gov/Archives/edgar/data/1086195/000095012311000543/b83864e8vk.htm|filing]] |
| ''juicer.cc'' | 0.00008 | Logly, Inc. | n/a -- current; product rebranded from 'Juicer' to 'LOGLY Audience Analytics' but still Logly-operated | absent | current | absent | [[https://juicer.cc/|legal-doc]] |
| ''richrelevance.com'' | 0.00008 | RichRelevance, Inc. (brand of Algonomy, which is now part of ADA) | changed 2021-01-19 (RichRelevance merged with Manthan Software to form Algonomy); Algonomy itself now shown as part of ADA per algonomy.com (exact date unconfirmed) | current | current | granularity | [[tls://richrelevance.com:443|register]] |
| ''medallia.com.au'' | 0.00008 | Medallia, Inc. | n/a -- independent | absent | absent | current | [[https://medallia.com.au/|legal-doc]] |
| ''medchatapp.com'' | 0.00008 | Medchat, LLC | n/a -- independent | current | absent | absent | [[https://medchatapp.com/site/|legal-doc]] |
-| ''awltovhc.com'' | 0.00007 | //unresolved// | UNRESOLVED -- domain dead (no TLS handshake, HTTP 000) and no primary source names this exact domain | unknown | unknown | unknown | [[n/a -- no primary source located|n/a]] |
-| ''collective-media.net'' | 0.00007 | //unresolved// | UNRESOLVED -- no confirmed current owner found | unknown | unknown | unknown | [[n/a -- no primary source located|n/a]] |
-| ''mmstat.com'' | 0.00007 | //unresolved// | UNRESOLVED -- no primary source located | unknown | unknown | unknown | [[n/a -- no primary source located|n/a]] |
+| ''awltovhc.com'' | 0.00007 | Epsilon (d/b/a 'Epsilon PeopleCloud Digital Media Solutions', formerly Conversant); ultimate parent Publicis Groupe SA | Conversant retired as the public-facing brand by 2021 per Epsilon's own press release; Epsilon itself was acquired by Publicis Groupe in 2019 | stale | stale | granularity | [[https://www.epsilon.com/us/about-us/pressroom/epsilon-peoplecloud-digital-media-solutions-receives-accreditation-from-the-media-rating-council-for-correlated-outcomes|newsroom]] |
+| ''collective-media.net'' | 0.00007 | UNKNOWN | UNRESOLVED -- dead domain, redacted WHOIS, no usable archived legal page | unknown | unknown | unknown | [[n/a|n/a]] |
+| ''mmstat.com'' | 0.00007 | UNRESOLVED | UNRESOLVED -- registrar is Alibaba Cloud Computing (Beijing) but no Registrant Organization is disclosed in WHOIS, the official Chinese ICP registry is behind a JS challenge, and Alibaba's own live privacy pages do not mention this domain | unknown | unknown | unknown | //none// |
| ''compass-fit.jp'' | 0.00006 | MicroAd, Inc. | n/a -- no ownership change found; product appears discontinued (domain unreachable, product page now 404) but no other owner was ever named | absent | current | current | [[https://www.microad.co.jp/news/detail/1185/|newsroom]] |
-| ''lduhtrp.net'' | 0.00006 | //unresolved// | UNRESOLVED -- domain dead (no TLS handshake, HTTP 000) and no primary source names this exact domain | unknown | unknown | unknown | [[n/a -- no primary source located|n/a]] |
+| ''lduhtrp.net'' | 0.00006 | Conversant, Inc. (Epsilon / Publicis Groupe) | n/a -- registrant unchanged; Conversant's parent Epsilon was acquired by Publicis Groupe, closed 2019-07-02 | current | current | granularity | [[whois://whois.markmonitor.com/lduhtrp.net|domain-register]] |
| ''cedexis.com'' | 0.00005 | Cloud Software Group, Inc. | changed 2018-02-12 (Citrix Systems acquired Cedexis); changed again 2022 (Citrix combined with TIBCO into Cloud Software Group) | stale | stale | current | [[tls://cedexis.com:443|register]] |
-| ''hqseek.com'' | 0.00005 | //unresolved// | UNRESOLVED -- could not fetch a primary source | absent | unknown | absent | //none// |
+| ''hqseek.com'' | 0.00005 | UNRESOLVED -- privacy-proxied registrant, and the one named operator found predates the current registration state by two decades | UNRESOLVED -- no continuity evidence across the gap | absent | unknown | absent | [[https://web.archive.org/web/20040404075437id_/http://www.hqseek.com/|archived-legal-doc]] |
| ''sparkasse.de'' | 0.00005 | S-Communication Services GmbH (S-Com) | renamed 2022-09, effective 2023-01-01 -- formerly Sparkassen-Finanzportal GmbH | absent | stale | absent | [[https://www.sparkasse.de/impressum.html|legal-doc]] |
-| ''stripst.com'' | 0.00005 | //unresolved// | UNRESOLVED -- site unreachable in this session | absent | absent | unknown | //none// |
-| ''wishabi.com'' | 0.00005 | //unresolved// | UNRESOLVED -- no fetchable primary source naming wishabi.com | unknown | unknown | unknown | //none// |
+| ''stripst.com'' | 0.00005 | UNRESOLVED | UNRESOLVED -- fully privacy-proxied registrant, DV-only TLS cert, zero Wayback captures, and Stripchat's own live legal pages are bot-blocked | absent | absent | unknown | //none// |
+| ''wishabi.com'' | 0.00005 | Flipp Corp. | n/a -- current | current | current | current | [[https://flipp.com/en-us/privacy-policy|legal-doc]] |
| ''twiago.com'' | 0.00004 | twiago GmbH | n/a -- independent, no ownership change found | absent | current | absent | [[https://www.twiago.com/impressum|legal-doc]] |
| ''wrbm.com'' | 0.00004 | William Reed Ltd | renamed 2022-02-09 -- formerly William Reed Business Media Ltd | absent | stale | absent | [[https://find-and-update.company-information.service.gov.uk/company/02883992|register]] |
| ''hitslink.com'' | 0.00003 | Net Applications, Inc. | n/a -- no ownership change found | absent | absent | current | [[https://hitslink.com/|legal-doc]] |
| ''klarna.app'' | 0.00003 | Klarna Bank AB (publ) | n/a -- no ownership change found | absent | current | absent | [[https://www.klarna.com/international/|legal-doc]] |
| ''onecount.net'' | 0.00003 | GCN Publishing, Inc. (d/b/a GCN Media Services; product: ONEcount) | n/a -- domain defunct (TLS cert expired 2022, no longer resolving); product now served from one-count.com by the same operator | granularity | current | current | [[https://www.one-count.com/privacy-policy/|parent-site]] |
-| ''sa-as.com'' | 0.00003 | //unresolved// | UNRESOLVED -- no primary source located; site has no TLS handshake and no title/copyright to check | absent | absent | unknown | //none// |
+| ''sa-as.com'' | 0.00003 | FoundryCo, Inc. | n/a -- independent per current WHOIS, no ownership-change evidence found | absent | absent | current | [[whois://whois.markmonitor.com/sa-as.com|domain-register]] |
| ''chango.com'' | 0.00003 | Chango & Co. LLC | UNRESOLVED exact date -- domain has been resold/repurposed to an unrelated interior design business; the ad-tech company 'Chango' (acquired by Rubicon Project, later renamed Magnite) no longer operates here | stale | stale | absent | [[https://www.chango.com/|legal-doc]] |
| ''google.nl'' | 0.00003 | Google LLC (subsidiary of Alphabet Inc.) | n/a -- longstanding | granularity | current | current | [[https://policies.google.com/privacy|legal-doc]] |
| ''americanexpress.com'' | 0.00002 | American Express Company | n/a -- longstanding | absent | current | current | [[tls://americanexpress.com:443|register]] |
@@ -285,28 +255,28 @@
| ''bestbuy.com'' | 0.00001 | Best Buy Co., Inc. | n/a -- independent | absent | current | absent | [[tls://bestbuy.com:443|register]] |
| ''bilibili.com'' | 0.00001 | 上海幻电信息科技有限公司 (Shanghai Huandian Information Technology Co., Ltd.), operating subsidiary of Bilibili Inc. (NASDAQ: BILI) | n/a -- longstanding | absent | granularity | granularity | [[tls://bilibili.com:443|register]] |
| ''britishairways.com'' | 0.00001 | British Airways Plc | n/a -- independent operating subsidiary (part of International Airlines Group since 2011 merger; no change to the domain's operating entity) | absent | current | absent | [[tls://britishairways.com:443|register]] |
-| ''cratecamera.com'' | 0.00001 | //unresolved// | UNRESOLVED -- domain 404s and carries only a DV Let's Encrypt cert (no validated organisation); no reachable newsroom/legal-doc/register source | absent | unknown | unknown | [[n/a|n/a]] |
+| ''cratecamera.com'' | 0.00001 | Leven Labs, Inc. (DBA Admiral) | n/a -- registrant unchanged since domain creation 2020-08-31 per registrar WHOIS | absent | current | current | [[whois://whois.namecheap.com/cratecamera.com|domain-register]] |
| ''cxt.ms'' | 0.00001 | Taboola, Inc. (operating Connexity) | acquired 2021-09-01 -- Taboola completed its acquisition of Connexity | stale | stale | absent | [[https://www.taboola.com/press-releases/taboola-closes-connexity-acquisition/|newsroom]] |
| ''domdex.com'' | 0.00001 | Deloitte Digital (Deloitte Consulting LLP) | acquired 2018-09-10 -- Deloitte acquired Magnetic Media Online, Inc.'s AI/ad-tech platform business | current | stale | current | [[https://www.prnewswire.com/news-releases/deloitte-acquires-magnetics-artificial-intelligence-platform-business-300709565.html|newsroom]] |
-| ''globo.com'' | 0.00001 | //unresolved// | UNRESOLVED -- WebFetch could not reach any globo.com/politicas.globo.com/privacidade.globo.com page to quote a legal-entity statement | absent | unknown | unknown | [[n/a|n/a]] |
+| ''globo.com'' | 0.00001 | Globo Comunicação e Participações S.A. (CNPJ 27.865.757/0001-02) | n/a -- current, live operating entity | absent | current | granularity | [[https://privacidade.globo.com/privacy-policy/|legal-doc]] |
| ''hitc.com'' | 0.00001 | GRV Media Ltd | n/a -- independent, GRV Media Ltd has operated HITC since rebranding from Here Is The City in 2015 | absent | current | absent | [[https://grv.media/privacy/|legal-doc]] |
-| ''km0trk.com'' | 0.00001 | //unresolved// | UNRESOLVED -- domain gives no TLS handshake and no reachable content; operator could not be identified from any primary source | absent | absent | unknown | [[n/a|n/a]] |
+| ''km0trk.com'' | 0.00001 | Good On You Pty Ltd (Good On You) | n/a -- independent, ABN 75 608 419 085 active | absent | absent | error | [[https://goodonyou.eco/privacy-policy/|parent-site]] |
| ''mediaset.es'' | 0.00001 | Grupo Audiovisual Mediaset España Comunicación, S.A.U. (subsidiary of MFE-MediaForEurope) | renamed/reorganized 2023-03-15 -- Mediaset España Comunicación, S.A. segregated its entire business to Grupo Audiovisual Mediaset España Comunicación, S.A.U. (BORME-C-2023-1010) | absent | stale | absent | [[tls://mediaset.es:443|register]] |
| ''ml.com'' | 0.00001 | Bank of America Corporation (Merrill Lynch) | n/a -- Merrill Lynch has been a Bank of America subsidiary since the 2009 acquisition; no recent change | absent | current | absent | [[tls://ml.com:443|register]] |
-| ''offshoregeology.com'' | 0.00001 | //unresolved// | UNRESOLVED -- domain is dead (404), no primary source ties it to any current operator | absent | absent | unknown | [[NONE -- no primary source reached|n/a]] |
+| ''offshoregeology.com'' | 0.00001 | Admiral (Leven Labs, Inc.) | n/a -- domain-register shows no ownership change since creation (2015-12-01, last WHOIS update 2025-11-02, no transfer flag) | absent | absent | current | [[https://levenlabs.com/|parent-site]] |
| ''qbox.me'' | 0.00001 | Shanghai Qiniu Information Technology Co., Ltd. (Qiniu Cloud) | n/a -- independent, no ownership change found | current | current | absent | [[https://www-static.qbox.me/en/company|legal-doc]] |
| ''report-uri.io'' | 0.00001 | Report-URI Ltd. | n/a -- independent, no ownership change found | absent | current | absent | [[https://find-and-update.company-information.service.gov.uk/company/10943557|register]] |
| ''vg.hu'' | 0.00001 | Mediaworks Hungary Zrt. | n/a -- independent, no ownership change found | absent | absent | current | [[https://www.vg.hu/impresszum|legal-doc]] |
| ''webmd.com'' | 0.00001 | WebMD LLC (an Internet Brands company; Internet Brands is a KKR portfolio company) | closed 2017-09 -- Internet Brands (KKR) completed its tender offer acquisition of WebMD Health Corp | current | current | absent | [[https://www.webmd.com/|legal-doc]] |
| ''99static.com'' | 0.00001 | 99designs Pty Ltd (99designs by Vista; a Cimpress plc subsidiary) | n/a -- currently a Cimpress plc subsidiary; historical acquisition date not verified against a primary source this session | absent | current | absent | [[https://www.sec.gov/Archives/edgar/data/0001262976/000126297626000027/ex211subsidiariesofcimpres.htm|filing]] |
| ''adrta.com'' | 0.00001 | Pixalate, Inc. | n/a -- independent, no ownership change found | current | current | current | [[tls://adrta.com:443|register]] |
-| ''cedscdn.it'' | 0.00001 | //unresolved// | UNRESOLVED -- domain does not resolve (no TLS handshake); no primary source ties it to any current operator | absent | unknown | absent | [[NONE -- no primary source reached|n/a]] |
-| ''cjponyparts.com'' | 0.00001 | //unresolved// | UNRESOLVED -- site returns HTTP 403 (Cloudflare challenge) on every page fetched this session | absent | unknown | absent | [[NONE -- no primary source reached|n/a]] |
+| ''cedscdn.it'' | 0.00001 | CED Digital & Servizi S.r.l. (Caltagirone Editore group) | n/a -- registrant unchanged since domain creation 2014-09-12 per .it registry WHOIS | absent | error | absent | [[whois://whois.nic.it/cedscdn.it|register]] |
+| ''cjponyparts.com'' | 0.00001 | CJ Pony Parts, Inc. | n/a -- independent, continuously CJ Pony Parts, Inc. since at least 2015 | absent | current | absent | [[https://web.archive.org/web/20150405015158id_/http://www.cjponyparts.com/terms-of-use/a/110/?SID=|archived-legal-doc]] |
| ''coverartarchive.org'' | 0.00001 | MetaBrainz Foundation, Inc. | n/a -- unchanged since inception; run jointly with Internet Archive | absent | current | absent | [[https://metabrainz.org/projects|parent-site]] |
| ''dnb.com'' | 0.00001 | Dun & Bradstreet, Inc. | n/a -- operating/trading name unchanged; ultimate parent went private via an investor consortium in Feb 2022 | current | current | absent | [[https://web.archive.org/web/20241002130956/https://www.dnb.com/utility-pages/privacy-policy.html|legal-doc]] |
| ''experian.com'' | 0.00001 | Experian Information Solutions, Inc. (brand: Experian; ultimate parent: Experian plc, LSE-listed) | n/a -- long-standing corporate structure | current | granularity | current | [[tls://experian.com:443|register]] |
| ''farfetch-contents.com'' | 0.00001 | Farfetch UK Limited (part of the Coupang, Inc. group since its Jan 2024 acquisition of Farfetch Holdings) | Farfetch Holdings acquired by Coupang, Inc. 2024-01-30; Farfetch UK Limited (no. 06400760, formerly Farfetch.com Limited) remains an active UK subsidiary | absent | current | absent | [[https://find-and-update.company-information.service.gov.uk/company/06400760|register]] |
-| ''i.ua'' | 0.00001 | //unresolved// | UNRESOLVED -- no primary legal document reachable; site is a JS-rendered shell with no static footer/legal text, and /legal returned 404 | absent | absent | unknown | //none// |
+| ''i.ua'' | 0.00001 | ТОВ «КЕПРЕЙТ ПАРТНЕРС» (LLC Keprait Partners), Ukrainian register code 33500955 | n/a -- registrant since 2019-07-21 per the registry record, no evidence of a later change | absent | absent | current | [[https://help.i.ua/agreement/|legal-doc]] |
| ''jdpower.com'' | 0.00001 | J.D. Power | n/a -- current | absent | current | current | [[tls://jdpower.com:443|register]] |
| ''jobs2careers.com'' | 0.00001 | Talroo, Inc. | n/a -- Jobs2Careers is an active Talroo brand/channel, not a former or renamed entity | absent | current | absent | [[https://www.talroo.com/|parent-site]] |
| ''myaccountaccess.com'' | 0.00001 | U.S. Bank National Association | n/a -- current | absent | current | absent | [[tls://myaccountaccess.com:443|register]] |
@@ -320,28 +290,28 @@
=== webXray ===
^ Verdict ^ Domain-level ^ 95% CI ^ Encounter-weighted ^ 95% CI ^
-| current | 69.9% | 55.5%–83.1% | 93.9% | 80.9%–98.8% |
-| granularity | 10.2% | 2.1%–20.9% | 0.2% | 0.0%–0.8% |
-| stale | 19.8% | 9.2%–32.3% | 5.9% | 1.0%–19.1% |
+| current | 69.2% | 56.1%–81.4% | 93.8% | 80.9%–98.6% |
+| granularity | 8.8% | 2.1%–17.5% | 0.2% | 0.0%–0.7% |
+| stale | 22.0% | 11.4%–33.8% | 5.9% | 1.1%–18.7% |
| error | 0.0% | 0.0%–0.0% | 0.0% | 0.0%–0.0% |
-| current+gran. | 80.2% | 67.7%–90.8% | 94.1% | 81.4%–99.0% |
-| stale+error | 19.8% | 9.0%–32.6% | 5.9% | 1.1%–19.4% |
+| current+gran. | 78.0% | 65.8%–88.8% | 94.1% | 81.4%–98.8% |
+| stale+error | 22.0% | 11.0%–33.8% | 5.9% | 1.1%–18.9% |
=== Tracker Radar ===
^ Verdict ^ Domain-level ^ 95% CI ^ Encounter-weighted ^ 95% CI ^
-| current | 73.7% | 60.8%–85.8% | 68.6% | 29.3%–97.0% |
-| granularity | 2.8% | 0.0%–8.3% | 0.1% | 0.0%–0.4% |
-| stale | 22.1% | 10.5%–35.1% | 26.8% | 0.4%–64.6% |
-| error | 1.5% | 0.0%–4.4% | 4.5% | 0.0%–19.3% |
-| current+gran. | 76.5% | 63.5%–88.0% | 68.7% | 29.2%–97.7% |
-| stale+error | 23.5% | 11.7%–36.1% | 31.3% | 2.9%–71.2% |
+| current | 73.9% | 61.6%–85.3% | 74.3% | 41.1%–97.8% |
+| granularity | 2.5% | 0.0%–7.5% | 0.1% | 0.0%–0.3% |
+| stale | 19.2% | 9.1%–30.5% | 21.6% | 0.3%–53.1% |
+| error | 4.4% | 0.0%–9.8% | 4.0% | 0.0%–15.7% |
+| current+gran. | 76.4% | 64.6%–87.5% | 74.4% | 41.6%–97.8% |
+| stale+error | 23.6% | 12.5%–35.6% | 25.6% | 2.2%–58.5% |
=== Disconnect ===
^ Verdict ^ Domain-level ^ 95% CI ^ Encounter-weighted ^ 95% CI ^
-| current | 94.4% | 86.9%–100.0% | 83.1% | 53.7%–100.0% |
-| granularity | 4.4% | 0.0%–11.2% | 16.5% | 0.0%–45.8% |
-| stale | 1.2% | 0.0%–3.8% | 0.4% | 0.0%–1.5% |
-| error | 0.0% | 0.0%–0.0% | 0.0% | 0.0%–0.0% |
-| current+gran. | 98.8% | 96.2%–100.0% | 99.6% | 98.5%–100.0% |
-| stale+error | 1.2% | 0.0%–3.8% | 0.4% | 0.0%–1.5% |
+| current | 89.2% | 80.5%–96.8% | 82.8% | 53.8%–100.0% |
+| granularity | 7.6% | 1.1%–15.2% | 16.8% | 0.0%–45.6% |
+| stale | 1.1% | 0.0%–3.4% | 0.4% | 0.0%–1.5% |
+| error | 2.1% | 0.0%–6.2% | 0.0% | 0.0%–0.0% |
+| current+gran. | 96.8% | 91.5%–100.0% | 99.6% | 98.5%–100.0% |
+| stale+error | 3.2% | 0.0%–8.5% | 0.4% | 0.0%–1.5% |
Q. Unedited output: scripts/report_tail_pass.py
Run as python3 scripts/report_tail_pass.py –sample out/owner_sample.json –before out/adj_rows_scored.json –after out/adj_rows_tail_final.json –before-output out/owner_random_sample-output.txt –after-output out/owner_random_sample-tail-output.txt.
guard: this script's eligible counts match section A of both estimator outputs.
==============================================================================
The second pass over the residue: what it recovered, and what it looks like
==============================================================================
--- A. Rows recovered, per list and per prevalence quartile -----------
'Recovered' = a row that was in the residue and now carries a verdict for
this list. A row can be recovered for one list and remain absent for another.
List drawn eligible before after recovered per quartile (eligible/drawn), after
webXray 60 49 56 7 Q1 22/24 Q2 12/12 Q3 10/12 Q4 12/12
Tracker Radar 60 47 56 9 Q1 22/24 Q2 10/12 Q3 12/12 Q4 12/12
Disconnect 60 42 54 12 Q1 22/24 Q2 11/12 Q3 9/12 Q4 12/12
--- B. Are the recovered rows worse than the rows already in the rates? ---
Raw counts, unweighted, because this is a comparison between two groups of
drawn rows and not an estimate for the list. Fisher's exact, two-sided. A
significantly worse recovered group would support the worry that the rates
are flattered.
**Both metrics, because the answer depends on which one you ask.** The first
version of this script tested current+granularity here and current-only in
section E2 -- each the choice that makes its own claim mildest -- and did not
say so. A review pass caught it. Neither metric is privileged: `current` is
the stricter reading, `current+granularity` is the one the content page says
is right when the unit of analysis is 'which company'.
metric: current only
List already-eligible good/n recovered good/n p (Fisher)
webXray 35/49 5/7 1.000
Tracker Radar 35/47 7/9 1.000
Disconnect 39/42 9/12 0.116
pooled 109/138 21/28 0.622
metric: current+granularity
List already-eligible good/n recovered good/n p (Fisher)
webXray 39/49 5/7 0.635
Tracker Radar 36/47 7/9 1.000
Disconnect 41/42 11/12 0.398
pooled 116/138 23/28 0.782
The pooled row counts a domain once per list that drew it, so it is not an
independent test; it is printed as a summary of direction, not as evidence.
--- C. Verdict mix of the recovered rows, per list --------------------
webXray current=5 stale=2
Tracker Radar current=7 error=2
Disconnect current=9 error=1 granularity=2
--- D. The worst case, before and after -------------------------------
Assume every row still unresolved is stale -- the adversarial bound the
content page already quotes. Unweighted, over each list's 60 drawn rows.
Two conventions, because the content page's published bound counts
`current` ONLY, and a reader comparing the two would otherwise find
figures that do not match: 58.3 / 58.3 / 65.0 is the current-only column.
List current-only before after +granularity before after unresolved
webXray 58.3% 66.7% 65.0% 73.3% 4
Tracker Radar 58.3% 70.0% 60.0% 71.7% 4
Disconnect 65.0% 80.0% 68.3% 86.7% 6
--- D2. Every `error` verdict in the sample, before and after ----------
The content page names these individually, so they are listed rather than
counted. An `error` is a list naming an entity that was never the owner.
webXray before 0 of 49 eligible
webXray after 0 of 56 eligible
Tracker Radar before 1 of 47 eligible: elfsight.com
Tracker Radar after 3 of 56 eligible: cedscdn.it, cnevids.com, elfsight.com
Disconnect before 0 of 42 eligible
Disconnect after 1 of 54 eligible: km0trk.com
--- E. Rate movement, computed with owner_random_sample.py's estimator ---
Imported, not reimplemented -- the point estimator is owner_random_sample.py's
own `strat_estimate`. **Point estimates only.** The 95% intervals are in the
estimator's own output and nowhere else: its bootstrap draws for several
verdicts from one generator, so re-running it here from a generator seeded
identically prints a different interval for the same estimate.
webXray
verdict domain before domain after delta enc. before enc. after delta
current 69.9% 69.2% -0.7 93.9% 93.8% -0.0
granularity 10.2% 8.8% -1.5 0.2% 0.2% -0.0
stale 19.8% 22.0% +2.2 5.9% 5.9% +0.0
error 0.0% 0.0% +0.0 0.0% 0.0% +0.0
current+gran. 80.2% 78.0% -2.2 94.1% 94.1% -0.0
stale+error 19.8% 22.0% +2.2 5.9% 5.9% +0.0
Tracker Radar
verdict domain before domain after delta enc. before enc. after delta
current 73.7% 73.9% +0.2 68.6% 74.3% +5.7
granularity 2.8% 2.5% -0.3 0.1% 0.1% -0.0
stale 22.1% 19.2% -2.8 26.8% 21.6% -5.2
error 1.5% 4.4% +2.9 4.5% 4.0% -0.6
current+gran. 76.5% 76.4% -0.1 68.7% 74.4% +5.7
stale+error 23.5% 23.6% +0.1 31.3% 25.6% -5.7
Disconnect
verdict domain before domain after delta enc. before enc. after delta
current 94.4% 89.2% -5.2 83.1% 82.8% -0.3
granularity 4.4% 7.6% +3.2 16.5% 16.8% +0.3
stale 1.2% 1.1% -0.1 0.4% 0.4% -0.0
error 0.0% 2.1% +2.1 0.0% 0.0% +0.0
current+gran. 98.8% 96.8% -2.0 99.6% 99.6% -0.0
stale+error 1.2% 3.2% +2.0 0.4% 0.4% +0.0
--- E2. The three pairwise comparisons, recomputed ---------------------
The content page tests each pair on the eligible RAW counts, `current`
only, Fisher's exact two-sided, with a Bonferroni threshold of 0.0167 for
three tests on one sample. Before and after, so a reader can see whether
the second pass changed which comparisons survive.
List current/eligible before after raw % before after
webXray 35/49 40/56 71.4% 71.4%
Tracker Radar 35/47 42/56 74.5% 75.0%
Disconnect 39/42 48/54 92.9% 88.9%
**The result depends on the metric, and publishing only one of them was
this script's most misleading omission.** Counting `granularity` as
acceptable -- which the content page says is right when the unit of analysis
is 'which company' rather than 'which legal entity' -- BOTH Disconnect
comparisons clear Bonferroni, before and after, and the second pass overturns
nothing. On `current` only, Disconnect-versus-webXray stops clearing it.
Report both or report neither.
metric: current only
Pair p before p after survives 0.0167 before / after?
Disconnect vs webXray 0.014 0.031 yes / no (48/54 vs 40/56)
Disconnect vs Tracker Radar 0.025 0.083 no / no (48/54 vs 42/56)
Tracker Radar vs webXray 0.820 0.831 no / no (42/56 vs 40/56)
metric: current+granularity
Pair p before p after survives 0.0167 before / after?
Disconnect vs webXray 0.010 0.008 yes / yes (52/54 vs 44/56)
Disconnect vs Tracker Radar 0.004 0.004 yes / yes (52/54 vs 43/56)
Tracker Radar vs webXray 0.807 1.000 no / no (43/56 vs 44/56)
--- E3. Sensitivity: the recovered rows that rest on the weakest source ---
2 recovered row(s) rest on an UNCORROBORATED registrant organisation
in registry or registrar WHOIS -- a source kind the 2026-09-05 pass did not
use, self-asserted by the registrant and validated by nobody. One row in this
pass, i.ua, showed exactly why: its registrant of record is not its operator,
and it was re-sourced to the portal's own user agreement. The count here is
computed from the rows, not typed, so re-sourcing a row removes it from the
list below rather than leaving the sentence stale. This drops every remaining
such row back to unresolved and re-runs the estimator.
dropped: cratecamera.com, sa-as.com
1. uncorroborated registrant organisation only (2 row(s): cratecamera.com, sa-as.com)
the narrowest reading: a row whose ONLY evidence is a registrant name nobody validated.
List eligible current raw current (domain) vs. full pass
webXray 56 40/56 69.2% +0.0
Tracker Radar 55 41/55 73.3% -0.6
Disconnect 53 47/53 89.2% +0.0
Disconnect vs webXray, current only: p = 0.032 (does not survive 0.0167)
Disconnect vs Tracker Radar, current only: p = 0.082 (does not survive 0.0167)
2. EVERY row resting on a source kind the first pass did not accept (11 row(s): acint.net, app-us1.com, blogblog.com, cjponyparts.com, cratecamera.com, gssprt.jp, lduhtrp.net, pages02.net, sa-as.com, travelpayouts.com, yceml.net)
the same-bar comparison: what the rates would be if the second pass had used
the first pass's bar exactly and settled only what that bar could reach.
List eligible current raw current (domain) vs. full pass
webXray 53 38/53 69.2% +0.0
Tracker Radar 51 37/51 72.1% -1.8
Disconnect 51 45/51 89.0% -0.2
Disconnect vs webXray, current only: p = 0.050 (does not survive 0.0167)
Disconnect vs Tracker Radar, current only: p = 0.079 (does not survive 0.0167)
3. the i.ua rescore, under the reading this run rejected (1 row(s): i.ua)
if 'I.UA' is held to name no company at all, the row is an error rather than
current, which is the reading the hand correction argued against. Dropping the
row entirely is the conservative stand-in, since scoring it `error` would lower
Disconnect further than dropping it does.
List eligible current raw current (domain) vs. full pass
webXray 56 40/56 69.2% +0.0
Tracker Radar 56 42/56 73.9% +0.0
Disconnect 53 47/53 88.6% -0.6
Disconnect vs webXray, current only: p = 0.032 (does not survive 0.0167)
Disconnect vs Tracker Radar, current only: p = 0.084 (does not survive 0.0167)
--- F. Residue after the second pass, printed in full -----------------
webXray Q1 1rx.io unknown none register-by-number: no company/VAT number available anywhere for 'Blin
webXray Q1 agkn.com unknown none Register-by-number: SEC EDGAR full-text search for the exact phrase "a
webXray Q3 mmstat.com unknown none Register-by-number: tried China's official ICP/beian registry at beian
webXray Q3 collective-media.net unknown none Tried all three routes. Register-by-number: SEC EDGAR full-text search
Tracker Radar Q1 cdnbasket.net unknown none All three routes came back empty. Register-by-number: no identifying c
Tracker Radar Q1 marphezis.com unknown none register-by-number: no identifier available for 'Online Media Solution
Tracker Radar Q2 hqseek.com unknown archived-legal All three routes tried. register-by-number: no imprint or identifiable
Tracker Radar Q2 contentabc.com unknown none Register-by-number: no imprint, VAT, or company number for either cand
Disconnect Q1 cdnbasket.net unknown none All three routes came back empty. Register-by-number: no identifying c
Disconnect Q1 agkn.com unknown none Register-by-number: SEC EDGAR full-text search for the exact phrase "a
Disconnect Q2 mapixl.com unknown none All three routes tried and none produced an identifier for the actual
Disconnect Q3 stat-track.com unknown none All three routes were tried. Register-by-number: Disconnect's 'StackTr
Disconnect Q3 stripst.com unknown none Register-by-number: no imprint or company number is available anywhere
Disconnect Q3 htplayground.com unknown none register-by-number: Disconnect's own entry is just the domain string,
distinct domains still unresolved: 12 of 175 sampled (6.9%); was 40 (22.9%)
R. Unedited output: scripts/check_tail_figures_mutations.sh
Run as bash scripts/check_tail_figures_mutations.sh.
caught eligible after 56 / 56 / 54 -> 56 / 56 / 53 caught Disconnect recovered 11 of 12 -> 12 of 12 caught webXray recovered-vs-existing p 0.64 -> 0.04 caught Disconnect vs webXray p 0.031 -> 0.013 caught Tracker Radar vs webXray p 0.83 -> 0.53 caught Disconnect current/eligible 48 of 54 -> 49 of 54 caught worst case after 80.0% -> 84.0% caught residue 12 distinct domains -> 11 caught residue share 6.9% -> 5.9% caught sensitivity delta Tracker Radar −0.6 -> −1.6 caught Tracker Radar error count 3 of 56 -> 2 of 56 caught Disconnect error count 1 of 54 -> 2 of 54 caught delete the residue domain ''mmstat.com'' caught delete the sensitivity-dropped ''sa-as.com'' caught delete the error domain ''km0trk.com'' caught same-bar Tracker Radar 72.1% -> 72.6% caught same-bar Disconnect 89.0% -> 89.5% caught same-bar Tracker Radar delta (−1.8) -> (−1.9) caught delete the same-bar Disconnect delta (−0.2) caught i.ua alternative reading 88.6% -> 87.6% caught reintroduce the superseded Disconnect rate 89.2% -> 94.4% caught reintroduce the superseded Tracker Radar rate 73.9% -> 73.7% caught reintroduce the superseded webXray encounter rate 93.8% -> 93.9% caught revert ONE copy of the hand-changed count 30 -> 29 of the 525 mutations caught: 24; survived or broken: 0
Related
- ownership_resolution — section L: what this pass did, what it changed, and what it could not establish.
- ownership_resolution — the content page the figures are on.
- random_sample — the first sitting's code: the draw, the estimator, the inter-rater pass.
- corpus — corpus scope, the selection funnel, extraction stability.
