Intel471Ex. Sources
(intel471_ex v0.2.0)
Copy Markdown
Functions for working with the Intel 471 Verity Sources API.
Service path: integrations/sources/v1
Covers: data leak site posts, forum posts, forum private messages, chat/messaging service messages, and image retrieval.
Summary
Functions
Stream chat messages matching filter criteria (cursor-paginated).
Stream data leak site posts matching filter criteria (cursor-paginated).
Stream forum posts matching filter criteria (cursor-paginated).
Stream forum private messages matching filter criteria (cursor-paginated).
Get a chat message by ID.
Get a data leak site file listing (raw binary).
Get a forum post by ID.
Get a forum private message by ID.
Get an image from a source (raw binary).
Functions
Stream chat messages matching filter criteria (cursor-paginated).
Parameters
params: A map of query parameters:text_filter/:author/:author_id:server_type— Messaging service type (e.g., "telegram", "discord"):server_id/:room_id:from/:until/:size/:cursor
Examples
{:ok, result} = Intel471Ex.Sources.chat_messages_stream(%{server_type: "telegram", size: 10})
Stream data leak site posts matching filter criteria (cursor-paginated).
Parameters
params: A map of query parameters:website_id— Filter by website ID:thread_id— Filter by thread ID:text_filter— Free text search:from/:until/:size/:cursor
Examples
{:ok, result} = Intel471Ex.Sources.data_leak_site_posts_stream(%{text_filter: "ransomware", size: 10})
Stream forum posts matching filter criteria (cursor-paginated).
Parameters
params: A map of query parameters:thread_id/:author/:author_id/:forum_title:text_filter— Free text search:from/:until/:size/:cursor
Examples
{:ok, result} = Intel471Ex.Sources.forums_posts_stream(%{author: "username", size: 10})
Stream forum private messages matching filter criteria (cursor-paginated).
Parameters
params: A map of query parameters:text_filter/:author/:author_id/:forum_title:subject/:recipient/:recipient_id/:forum_id:from/:until/:size/:cursor
Examples
{:ok, result} = Intel471Ex.Sources.forums_private_messages_stream(%{author: "username", size: 10})
Get a chat message by ID.
Examples
{:ok, msg} = Intel471Ex.Sources.get_chat_message("message-id")
Get a data leak site file listing (raw binary).
Examples
{:ok, %{body: data}} = Intel471Ex.Sources.get_data_leak_site_file_listing("listing-id")
Get a forum post by ID.
Examples
{:ok, post} = Intel471Ex.Sources.get_forum_post("post-id")
Get a forum private message by ID.
Examples
{:ok, pm} = Intel471Ex.Sources.get_forum_private_message("pm-id")
Get an image from a source (raw binary).
Parameters
type: Image type (e.g., "forum", "chat")hash: Image hashname: Image filename
Examples
{:ok, %{body: img}} = Intel471Ex.Sources.get_image("forum", "abc123", "screenshot.png")