FireHOL Threat Intelligence

Five FireHOL blocklist levels fetched from the firehol/blocklist-ipsets repository, each compiled into its own MMDB database keyed by IP range.

The FireHOL source fetches IPv4 blocklists from the firehol/blocklist-ipsets repository and compiles each selected level into a separate MMDB database. Each database is named after its source level.

Output files: firehol_l1.mmdb, firehol_l2.mmdb, firehol_l3.mmdb, firehol_l4.mmdb, firehol_anonymous.mmdb


Threat Levels

LevelDescriptionFlag
Level 1Maximum protection, minimum false positives.--l1
Level 2Recent attacks.--l2
Level 3Active attacks, spyware, and viruses.--l3
Level 4Aggressive tracking, higher false-positive risk.--l4
AnonymousTor exit nodes, I2P, VPNs, and other anonymity network relays.--anonymous
FireHOL datasets its self aggregate these datasets, and, depending on the sources, may carry specific licensing. Check FireHOL documentation, for more information.
You must pass --acceptFireholRisk when using these sources via the CLI, or acknowledge the license during the interactive wizard.

Data Sources


Usage

Select one or more levels using their corresponding flags. All FireHOL flags require --acceptFireholRisk.

# Compile all five levels
pnpm dlx @riavzon/shield-base --l1 --l2 --l3 --l4 --anonymous --acceptFireholRisk

# Compile Level 1 and Level 2 only
pnpm dlx @riavzon/shield-base --l1 --l2 --acceptFireholRisk

Record Structure

Each record stores the IP range and a comment identifying its source level and maintainer:

interface ThreatRecord {
  range: string;   // IPv4 address or CIDR, e.g. "45.143.203.0/24"
  comment: string; // e.g. "firehol_l1  Maintainer: http://iplists.firehol.org/"
}

Example Lookup

Terminal
mmdbctl read -f json-pretty 45.143.203.111 outputDirectory/firehol_l1.mmdb
mmdbctl read -f json-pretty 1.31.80.222 outputDirectory/firehol_l2.mmdb
mmdbctl read -f json-pretty 1.24.16.177 outputDirectory/firehol_l3.mmdb
mmdbctl read -f json-pretty 1.10.141.115 outputDirectory/firehol_l4.mmdb
mmdbctl read -f json-pretty 1.0.136.76 outputDirectory/firehol_anonymous.mmdb
{
"comment": "firehol_l1  Maintainer: http://iplists.firehol.org/",
"ip": "45.143.203.111",
"network": "45.143.203.0/24"
}

{
"comment": "firehol_l2  Maintainer: http://iplists.firehol.org/",
"ip": "1.31.80.222",
"network": "1.31.80.222/32"
}
{
"comment": "firehol_l3  Maintainer: http://iplists.firehol.org/",
"ip": "1.24.16.177",
"network": "1.24.16.177/32"
}

{
"comment": "firehol_l4  Maintainer: http://iplists.firehol.org/",
"ip": "1.10.141.115",
"network": "1.10.141.115/32"
}

{
"comment": "firehol_anonymous  Maintainer: http://iplists.firehol.org/",
"ip": "1.0.136.76",
"network": "1.0.136.76/32"
}
The Known Threat checker in Bot Detector reads these databases and applies configurable penalty scores per FireHOL level. Higher levels carry more aggressive penalties.
Logo