Automation for blacklisting IP addresses
1.4K
Automation for blacklisting IP addresses on FortiGates build for AMD64 and ARM64.
---
get:
uri: /api/get
method: any
description: Returns all known IPv4/6 addresses in plain text format one per line.
put:
uri: /api/add
method: any
description: Add one IPv4/6 address to the database.
input: Expects a single IPv4/6 address as plain text.
del:
uri: /api/del
method: any
description: Delete one or more IPv4/6 addresses from the database.
input: Expects a list of kown IPv4/6 addresses in plain text format one per line.
---
services:
threatinsert:
image: plaenkler/threatinsert:latest
container_name: threatinsert
restart: always
network_mode: host
volumes:
- ./threatinsert:/app/data
environment:
- TI_PORT=80
---
services:
threatinsert:
image: plaenkler/threatinsert:latest
container_name: threatinsert
restart: always
networks:
- web
ports:
- 80:80
volumes:
- ./threatinsert:/app/data
environment:
- TI_PORT=80
networks:
web:
external: false
---
services:
threatinsert:
image: plaenkler/threatinsert:latest
container_name: threatinsert
restart: always
networks:
web:
ipv4_address: 10.10.10.2
volumes:
- ./threatinsert:/app/data
environment:
- TI_PORT=80
networks:
web:
name: web
driver: macvlan
driver_opts:
parent: eth0
ipam:
config:
- subnet: "10.10.10.0/24"
ip_range: "10.10.10.0/24"
gateway: "10.10.10.1"
Content type
Image
Digest
sha256:0543b446c…
Size
57.1 MB
Last updated
over 1 year ago
docker pull plaenkler/threatinsert