Malware Domain List Active IPs Feed Deprecated

Deprecated. This feed is no longer supported. No available replacement.

Data Enrichment & Threat Intelligence · MalwareDomainList Feed (Deprecated) · Feed

Details

IDMalware Domain List Active IPs Feed
ProviderOpen Source
CategoryData Enrichment & Threat Intelligence
From Version5.5.0
Docker Imagedemisto/python3:3.10.13.74666
Supported ModulesAgentix

Configuration parameters

  • feed — Fetch indicators
  • feedReputation — Indicator Reputation
  • feedReliability — Source Reliability (required)
  • tlp_color — Traffic Light Protocol Color
  • feedExpirationPolicy
  • cidr_32_to_ip — Set /32 CIDRs as IP Indicators
  • feedExpirationInterval
  • feedFetchInterval — Feed Fetch Interval
  • feedBypassExclusionList — Bypass exclusion list
  • feedTags — Tags
  • insecure — Trust any certificate (not secure)
  • proxy — Use system proxy settings

Commands (1)

  • malwaredomainlist-get-indicators

    Gets the feed indicators.

from CommonServerPython import *


def main():
    params = {k: v for k, v in demisto.params().items() if v is not None}

    params['indicator_type'] = FeedIndicatorType.IP

    params['url'] = 'http://www.malwaredomainlist.com/hostslist/ip.txt'
    params['indicator'] = json.dumps({
        "regex": r"^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}",
    })

    # Call the main execution of the HTTP API module.
    feed_main('Malware Domain List Active IPs Feed', params, 'malwaredomainlist')


from HTTPFeedApiModule import *  # noqa: E402


if __name__ == '__builtin__' or __name__ == 'builtins':
    main()