├── .github └── FUNDING.yml ├── LICENSE.txt ├── README.md ├── bash └── firewall_iptables_sample.bash ├── docker ├── Dockerfile ├── Makefile ├── README.md ├── docker-compose.yml └── docker-entrypoint.sh ├── etc ├── asterisk │ └── manager.conf ├── init.d │ └── sipban ├── sipban.conf ├── sipban.wl ├── sipban_legacy.conf └── systemd │ └── system │ └── sipban.service ├── sipban.pl ├── sipban_admin.bash ├── sipban_legacy.pl └── stats ├── sipban_stats.pl └── sipban_whois_stats.pl /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: elpop 4 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpop/sipban/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpop/sipban/HEAD/README.md -------------------------------------------------------------------------------- /bash/firewall_iptables_sample.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpop/sipban/HEAD/bash/firewall_iptables_sample.bash -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpop/sipban/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpop/sipban/HEAD/docker/Makefile -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpop/sipban/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpop/sipban/HEAD/docker/docker-compose.yml -------------------------------------------------------------------------------- /docker/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpop/sipban/HEAD/docker/docker-entrypoint.sh -------------------------------------------------------------------------------- /etc/asterisk/manager.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpop/sipban/HEAD/etc/asterisk/manager.conf -------------------------------------------------------------------------------- /etc/init.d/sipban: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpop/sipban/HEAD/etc/init.d/sipban -------------------------------------------------------------------------------- /etc/sipban.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpop/sipban/HEAD/etc/sipban.conf -------------------------------------------------------------------------------- /etc/sipban.wl: -------------------------------------------------------------------------------- 1 | 127.0.0.1 -------------------------------------------------------------------------------- /etc/sipban_legacy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpop/sipban/HEAD/etc/sipban_legacy.conf -------------------------------------------------------------------------------- /etc/systemd/system/sipban.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpop/sipban/HEAD/etc/systemd/system/sipban.service -------------------------------------------------------------------------------- /sipban.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpop/sipban/HEAD/sipban.pl -------------------------------------------------------------------------------- /sipban_admin.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpop/sipban/HEAD/sipban_admin.bash -------------------------------------------------------------------------------- /sipban_legacy.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpop/sipban/HEAD/sipban_legacy.pl -------------------------------------------------------------------------------- /stats/sipban_stats.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpop/sipban/HEAD/stats/sipban_stats.pl -------------------------------------------------------------------------------- /stats/sipban_whois_stats.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpop/sipban/HEAD/stats/sipban_whois_stats.pl --------------------------------------------------------------------------------