RSS¶
The RSS source pulls from standard RSS and Atom feeds, and extracts artifacts from within the feed content. It does not follow links to full blog posts.
For each RSS feed, you’ll need to define a feed_type for IOC extraction.
Valid feed types are:
messy: Only look at obfuscated URLs, assume all IPs are valid.clean: Treat everything as valid C2 URL/IP.afteriocTreat everything after the last occurance of the string “Indicators of Compromise” as valid C2 URL/IP.
Configuration Options¶
module(required):rssurl(required): URL to the RSS or Atom feed.feed_type(required): see above; if unsure, usemessy.filter(optional): Regex filtering for RSS feed.
Example Configuration¶
Inside the sources section of your configuration file:
- name: rss-myiocfeed
module: rss
url: https://example.com/rss.xml
feed_type: messy
filter: security|threat
InQuest Labs