Squid helper handling squidguard blacklists written in python
Go to file
2016-02-24 19:21:28 +01:00
.gitignore various mods 2016-02-20 15:45:26 +01:00
config.py.sample Classes added (wip) 2016-02-20 14:46:12 +01:00
LICENSE Initial commit 2016-01-24 19:05:59 +01:00
py-squid-blacklists.py merge cdb mode in main script 2016-02-20 16:29:59 +01:00
README.md updates on README.md 2016-02-22 22:05:41 +01:00

py-squid-blacklists

Squid helper handling squidguard blacklists written in python

  • Only supports domains blacklists actually (ie : google.com, www.google.com, mail.google.com, etc.)
  • In config specified blacklists are loaded in RAM or CDB backend using https://github.com/acg/python-cdb
  • Usable as an external acl plugin of squid
  • Written because of poor developpement on squidguard and some issues using blacklists on squid3

## Usage

Add this configuration to squid.conf :

external_acl_type urlblacklist_lookup ttl=5 %URI /usr/bin/python /usr/local/py-squid-blacklists/py-squid-blacklists.py
...
acl urlblacklist external urlblacklist_lookup
...
http_access deny urlblacklist

config.py file must be include following statements

url = "http://dsi.ut-capitole.fr/blacklists/download/blacklists.tar.gz"
base_dir = "/usr/local/py-squid-blacklists/blacklists/"
categories = ["adult","malware"]
db_backend = "ram"
  • url : squidguard-like blacklists files, this variable is not already usable
  • categories : blacklists to use for filtering
  • base_dir : path containing blacklists files
  • db_backend : database flavour (ram|cdb)

TODO

  • Auto-fetcher using url if blacklists are not already downloaded or stored on the squid machine
  • Compatibility with python3 only
  • Filters for regex urls
  • Reduce memory footprint (wip with CDB backend alternative)
  • Code optimisation and cleaning (wip)
  • Object oriented programming (wip)
  • Tests (wip)
  • ...

DBs support ideas

  • High performance but heavy RAM usage when using dict()
  • Sqlite3 tested, small memory footprint, but very slow
  • CDB backend seems to be as fast as attended, with a very small footprint

DBs Benchmarks

RAM usage For one thread with categories ["adult","malware"]

Debian 8 / python 2.7.9 / squid 3.4.8

  • ram : 90Mo
  • cdb : 6Mo