Threat intelligence with MineMeld
MineMeld is a tool provided by Palo Alto Networks and 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 now be accessed via https://<hostIP>
.
Important note
The -p 443:443 -p 80:80
flags tell Docker which host ports to map to the container ports – in this case, ports 443
and 80
on the host are directly...