├── .gitignore ├── .scrutinizer.yml ├── .styleci.yml ├── .travis.yml ├── LICENSE ├── README.md ├── compact ├── semaltblocker.php └── test.php ├── composer.json ├── composer.lock ├── debug ├── index.php └── target.php ├── domains ├── additional ├── annotated.json ├── blocked ├── blocked.conf ├── blocked.csv ├── blocked.json └── blocked.xml ├── phpunit.xml.dist ├── scripts ├── all.sh ├── compact.php ├── compact.sh ├── export.php ├── export.sh ├── pull-domains.php ├── pull-domains.sh ├── roottlds.php ├── roottlds.sh ├── sources.php ├── timer.php └── timer.sh ├── src ├── Semalt.php └── SemaltBlocker │ ├── Blocker.php │ ├── Domainparser.php │ └── Updater.php └── tests ├── AbstractSemaltBlockerTest.php ├── DomainparserTest.php ├── SemaltTest.php ├── SemaltUpdaterTest.php └── bootstrap.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/semalt-blocker/HEAD/.gitignore -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/semalt-blocker/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/semalt-blocker/HEAD/.styleci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/semalt-blocker/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/semalt-blocker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/semalt-blocker/HEAD/README.md -------------------------------------------------------------------------------- /compact/semaltblocker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/semalt-blocker/HEAD/compact/semaltblocker.php -------------------------------------------------------------------------------- /compact/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/semalt-blocker/HEAD/compact/test.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/semalt-blocker/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/semalt-blocker/HEAD/composer.lock -------------------------------------------------------------------------------- /debug/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/semalt-blocker/HEAD/debug/index.php -------------------------------------------------------------------------------- /debug/target.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/semalt-blocker/HEAD/debug/target.php -------------------------------------------------------------------------------- /domains/additional: -------------------------------------------------------------------------------- 1 | m-google.xyz -------------------------------------------------------------------------------- /domains/annotated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/semalt-blocker/HEAD/domains/annotated.json -------------------------------------------------------------------------------- /domains/blocked: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/semalt-blocker/HEAD/domains/blocked -------------------------------------------------------------------------------- /domains/blocked.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/semalt-blocker/HEAD/domains/blocked.conf -------------------------------------------------------------------------------- /domains/blocked.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/semalt-blocker/HEAD/domains/blocked.csv -------------------------------------------------------------------------------- /domains/blocked.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/semalt-blocker/HEAD/domains/blocked.json -------------------------------------------------------------------------------- /domains/blocked.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/semalt-blocker/HEAD/domains/blocked.xml -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/semalt-blocker/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /scripts/all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/semalt-blocker/HEAD/scripts/all.sh -------------------------------------------------------------------------------- /scripts/compact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/semalt-blocker/HEAD/scripts/compact.php -------------------------------------------------------------------------------- /scripts/compact.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | php ./compact.php -------------------------------------------------------------------------------- /scripts/export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/semalt-blocker/HEAD/scripts/export.php -------------------------------------------------------------------------------- /scripts/export.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | php ./export.php -------------------------------------------------------------------------------- /scripts/pull-domains.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/semalt-blocker/HEAD/scripts/pull-domains.php -------------------------------------------------------------------------------- /scripts/pull-domains.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | php ./pull-domains.php -------------------------------------------------------------------------------- /scripts/roottlds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/semalt-blocker/HEAD/scripts/roottlds.php -------------------------------------------------------------------------------- /scripts/roottlds.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | php ./roottlds.php -------------------------------------------------------------------------------- /scripts/sources.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/semalt-blocker/HEAD/scripts/sources.php -------------------------------------------------------------------------------- /scripts/timer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/semalt-blocker/HEAD/scripts/timer.php -------------------------------------------------------------------------------- /scripts/timer.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | php ./timer.php -------------------------------------------------------------------------------- /src/Semalt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/semalt-blocker/HEAD/src/Semalt.php -------------------------------------------------------------------------------- /src/SemaltBlocker/Blocker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/semalt-blocker/HEAD/src/SemaltBlocker/Blocker.php -------------------------------------------------------------------------------- /src/SemaltBlocker/Domainparser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/semalt-blocker/HEAD/src/SemaltBlocker/Domainparser.php -------------------------------------------------------------------------------- /src/SemaltBlocker/Updater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/semalt-blocker/HEAD/src/SemaltBlocker/Updater.php -------------------------------------------------------------------------------- /tests/AbstractSemaltBlockerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/semalt-blocker/HEAD/tests/AbstractSemaltBlockerTest.php -------------------------------------------------------------------------------- /tests/DomainparserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/semalt-blocker/HEAD/tests/DomainparserTest.php -------------------------------------------------------------------------------- /tests/SemaltTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/semalt-blocker/HEAD/tests/SemaltTest.php -------------------------------------------------------------------------------- /tests/SemaltUpdaterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/semalt-blocker/HEAD/tests/SemaltUpdaterTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/semalt-blocker/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------