Threat intelligence with MineMeld
MineMeld is a tool previously developed by Palo Alto Networks that is currently “community-supported” as Palo Alto replaced it with a licensed product called Cortex XSOAR following the Demisto acquisition.
However, MineMeld is still a very useful tool as it is an extensible threat intelligence processing framework. This means it is able to ingest several threat intelligence feeds and aggregate the information so that you can feed it into the firewall as an additional protection vector, which is pretty cool.
The installation is straightforward, and you can even run it in a Docker container:
sudo docker pull paloaltonetworks/minemeld
sudo docker volume create minemeld-logs
sudo docker volume create minemeld-local
sudo docker run -dit --name minemeld --restart unless-stopped --tmpfs /run -v minemeld-local:/opt/minemeld/local -v minemeld-
logs:/opt/minemeld/log -p 443:443 -p 80:80 paloaltonetworks/minemeld
MineMeld can...