Blocklist_de Feed

Use the Blocklist.de feed integration to fetch indicators from the feed.

Data Enrichment & Threat Intelligence · BlockList DE Feed · Feed

Details

IDBlocklist_de Feed
ProviderOpen Source
CategoryData Enrichment & Threat Intelligence
From Version5.5.0
Docker Imagedemisto/python3:3.12.13.10116658
Supported ModulesAgentix XSIAM

README

Use the Blocklist.de feed integration to fetch indicators from the feed.

Configure Blocklist.de Feed in Cortex

Parameter Description Required
Fetch indicators   False
Indicator Reputation Indicators from this integration instance will be marked with this reputation False
Source Reliability Reliability of the source providing the intelligence data True
Traffic Light Protocol Color The Traffic Light Protocol (TLP) designation to apply to indicators fetched from the feed False
    False
    False
Feed Fetch Interval   False
Bypass exclusion list When selected, the exclusion list is ignored for indicators from this feed. This means that if an indicator from this feed is on the exclusion list, the indicator might still be added to the system. False
Trust any certificate (not secure)   False
Use system proxy settings   False
Request Timeout   False
Services   True
Tags Supports CSV values. False

Commands

You can execute these commands from the CLI, as part of an automation, or in a playbook.
After you successfully execute a command, a DBot message appears in the War Room with the command details.

blocklist_de-get-indicators


Gets the feed indicators.

Base Command

blocklist_de-get-indicators

Input

Argument Name Description Required
limit The maximum number of results to return. The default value is 50. Default is 50. Optional
indicator_type The indicator type. Optional

Context Output

There is no context output for this command.

Human Readable Output

Indicators

Value Type Rawjson
1.1.1.1 IP value: 1.1.1.1
type: IP
tags: null
2.2.2.2 IP value: 2.2.2.2
type: IP
tags: null
3.3.3.3 IP value: 3.3.3.3
type: IP
tags: null

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
  • insecure — Trust any certificate (not secure)
  • proxy — Use system proxy settings
  • polling_timeout — Request Timeout
  • services — Services (required)
  • feedTags — Tags

Commands (1)

  • blocklist_de-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}

    services = ["all", "ssh", "mail", "apache", "imap", "ftp", "sip", "bots", "strongips", "bruteforcelogin"]

    feed_types = {}

    for service in services:
        feed_types[f"https://lists.blocklist.de/lists/{service}.txt"] = {
            "indicator_type": FeedIndicatorType.IP,
        }

    params["feed_url_to_config"] = feed_types

    # Automatically infer the indicator type
    params["auto_detect_type"] = True

    chosen_services = []
    for service in argToList(demisto.params().get("services", [])):
        chosen_services.append(f"https://lists.blocklist.de/lists/{service}.txt")

    params["url"] = chosen_services

    # Call the main execution of the HTTP API module.
    feed_main("Blocklist_de Feed", params, "blocklist_de-")


from HTTPFeedApiModule import *  # noqa: E402

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