IPv4 prefix
Last fetched
1.12.0.0/20 is an IPv4 announced prefix originated by AS132203 (DATAILOR), allocated to CN. This prefix is in active MOAS conflict with 1 other ASN.
1 other ASN announces this prefix in conflict with the listed announcer above. MOAS (Multi-Origin AS) is a strong hijack signal — investigate via the linked ASN pages.
25 of the IPv4 addresses observed announced in 1.12.0.0/20 (sampled from the prefix; not necessarily exhaustive).
Pivot deeper into the graph from 1.12.0.0/20.
Reproduce the prefix profile directly against graph.whisper.security:
MATCH (ap:ANNOUNCED_PREFIX {name: "1.12.0.0/20"})
OPTIONAL MATCH (ap)-[:ROUTES]->(asn:ASN)
OPTIONAL MATCH (asn)-[:HAS_NAME]->(n:ASN_NAME)
OPTIONAL MATCH (ap)-[:HAS_COUNTRY]->(c:COUNTRY)
RETURN ap.name AS cidr,
asn.name AS asn,
n.name AS network,
c.name AS countryAnd the MOAS conflict drill-down:
MATCH (ap:ANNOUNCED_PREFIX {name: "1.12.0.0/20"})
OPTIONAL MATCH (ap)-[:ROUTES]->(announcer:ASN)
WITH ap, collect(announcer.name) AS announcers
MATCH (ap)-[:CONFLICTS_WITH]->(other:ASN)
WHERE NOT other.name IN announcers
OPTIONAL MATCH (other)-[:HAS_NAME]->(n:ASN_NAME)
OPTIONAL MATCH (other)-[:HAS_COUNTRY]->(c:COUNTRY)
OPTIONAL MATCH (other)-[:ROUTES]->(peer:ANNOUNCED_PREFIX)
RETURN other.name AS conflicting_asn,
n.name AS conflicting_operator,
c.name AS conflicting_country,
count(DISTINCT peer) AS conflicting_prefix_count
ORDER BY other.nameOr query Whisper from your own LLM workflow via the Whisper MCP server.