Tested tool guide
Tested browser tools
Checked August 16, 2026
What Threat Intelligence Feed Parser does, with a checked example
Paste a threat intelligence feed - a STIX 2.x bundle, a TAXII collection response, a vendor CSV, or a JSON export - and this tool extracts the indicators of compromise it contains, maps them to standard types (IPv4, IPv6, domain, URL, email, MD5, SHA-1, SHA-256), removes duplicates, and exports the cleaned set as CSV or a fresh STIX bundle. Format detection is by content, not file extension. Everything runs locally in the browser, so the pasted feed is never uploaded. The surprise most users hit: parsing is not judging. The tool normalizes syntax and typing; it never tells you an IOC is malicious, live, or worth blocking.
Worked example
A concrete input and expected output from the current implementation.
Input
value,type
203.0.113.5,ip
example.com,domain
d41d8cd98f00b204e9800998ecf8427e,md5
203.0.113.5,ipv4
->
Expected output
Input: CSV, 4 rows
Unique IOCs: 3
Duplicate rows dropped: 1
value type
203.0.113.5 IPv4 address
example.com domain
d41d8cd98f00b204e9800998ecf8427e MD5 hash
Rows 1 and 4 hold the same address under different type labels ('ip' and 'ipv4'), so the parser merges them into one IPv4 IOC and 4 input rows become 3 unique IOCs. The 32-hex-character value is valid MD5 length, and 203.0.113.5 lies in the RFC 5737 documentation range, so it is a safe sample value rather than a real host.