Threat-intelligence feed
ReputationLast verified Page fetched
AlienVault Reputation is a reputation threat-intelligence feed tracked by WhisperGraph as a FEED_SOURCE node. The Whisper Internet Directory publishes this page so security analysts and LLM agents can link to it as a stable record for AlienVault Reputation.
AlienVault Reputation is a community-driven IP reputation feed published by AT&T Cybersecurity (formerly Open Threat Exchange). It aggregates indicators from honeypots, security researchers, and OTX pulse contributors into a single deny-list of IPs observed engaging in scanning, brute-force authentication attempts, and other low-level abuse. Each address carries a confidence score derived from the number of independent sightings; entries fall off the list when reports stop arriving. Network defenders use it as a low-false-positive overlay for outbound proxy filtering and SIEM enrichment; threat hunters use it as a starting point for pivoting on observed scanners.
FEED_SOURCE node not currently in WhisperGraph. The editorial entry for AlienVault Reputationis committed to the directory but the corresponding graph node is missing — typically a transient state during the threat-feed import pipeline's between-runs window. The page will reconcile on the next revalidation.
Indicators: Computing — check back later. The precompute pipeline is building this feed's indicator sample from the host corpus and will populate the count and representative addresses on an upcoming run.
Look up which threat feeds list a given IP — the indicator-anchored query that powers the threat card:
MATCH (ip:IPV4 {name: $ip})-[:LISTED_IN]->(f:FEED_SOURCE)
WHERE f.name = "AlienVault Reputation"
WITH f
MATCH (f)-[:BELONGS_TO]->(c:CATEGORY)
RETURN f.name AS feed, c.name AS categoryVerify the feed's graph-side identity directly:
MATCH (f:FEED_SOURCE {name: "AlienVault Reputation"})
OPTIONAL MATCH (f)-[:BELONGS_TO]->(c:CATEGORY)
RETURN f.id AS id, f.name AS name, c.name AS categoryOr query Whisper from your own LLM workflow via the Whisper MCP server.
Pivot from AlienVault Reputation into adjacent entities.