IBM Cloud Docs
Using managed lists

Using managed lists

CIS provides managed lists you can use in rule expressions. These lists are regularly updated.

Managed IP lists

You can access CIS IP threat intelligence through managed IP lists. CIS offers several managed IP lists, but the specific lists available to you depend on your subscription plan.

Available managed IP lists
Display name Name in expressions Description
Cloudflare Open Proxies cf.open_proxies IP addresses of known open HTTP and SOCKS proxy endpoints, which are frequently used to launch attacks and hide attackers identity.
Cloudflare Anonymizers cf.anonymizer IP addresses of known anonymizers (open SOCKS proxies, VPNs, and TOR nodes).
Cloudflare VPNs cf.vpn IP addresses of known VPN servers.
Cloudflare Malware cf.malware IP addresses of known sources of malware.
Cloudflare Botnets, Command and Control Servers cf.botnetcc IP addresses of known botnet command-and-control servers.

Listing managed lists in an instance from the CLI

To list managed lists in an instance from the CLI, run the following command:

cis managed-lists [-i, --instance INSTANCE] [--output FORMAT]

Command options

-i, --instance
Instance name or ID. If instance name or ID is not set, the context instance specified by cis instance-set INSTANCE is used.
--output
Specify output format, only JSON is supported now.

Command example

ibmcloud cis managed-lists -i crn:v1:staging:public:internet-svcs-ci:global:a/c987fg3e4h278745690dp435683568rp:eg7kb437-4893-56yl-4wn9-c595j8t78gr9:: -o json

Listing managed lists in an instance with the API

The following example lists managed lists in an instance:

curl -X GET https://api.cis.cloud.ibm.com/v1/$CRN/rules/managed_lists \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'X-Auth-User-Token: Bearer xxxxxx'

Listing managed lists in an instance with Terraform

The following example lists managed lists in an instance:

data ibm_cis_managed_lists managed_lists {
    cis_id    = "crn:v1:staging:public:internet-svcs-ci:global:a/01652b251c3ae2787110a995d8db0135:1a9174b6-0106-417a-844b-c8eb43a72f63::"
}