├── CHANGELOG ├── LICENSE.txt ├── README ├── bfstop.php ├── bfstop.xml ├── deploy.sh ├── helpers ├── crypto.php ├── db.php ├── htaccess.php ├── index.html ├── ipaddress.php ├── log.php └── notify.php ├── index.html ├── language ├── ca-ES │ ├── ca-ES.plg_system_bfstop.ini │ ├── ca-ES.plg_system_bfstop.sys.ini │ └── index.html ├── de-DE │ ├── de-DE.plg_system_bfstop.ini │ ├── de-DE.plg_system_bfstop.sys.ini │ └── index.html ├── en-GB │ ├── en-GB.plg_system_bfstop.ini │ ├── en-GB.plg_system_bfstop.sys.ini │ └── index.html ├── es-ES │ ├── es-ES.plg_system_bfstop.ini │ ├── es-ES.plg_system_bfstop.sys.ini │ └── index.html ├── fr-FR │ ├── fr-FR.plg_system_bfstop.ini │ ├── fr-FR.plg_system_bfstop.sys.ini │ └── index.html ├── index.html ├── it-IT │ ├── it-IT.plg_system_bfstop.ini │ └── it-IT.plg_system_bfstop.sys.ini ├── nl-NL │ ├── index.html │ ├── nl-NL.plg_system_bfstop.ini │ └── nl-NL.plg_system_bfstop.sys.ini ├── pt-BR │ ├── index.html │ ├── pt-BR.plg_system_bfstop.ini │ └── pt-BR.plg_system_bfstop.sys.ini ├── pt-PT │ ├── index.html │ ├── pt-PT.plg_system_bfstop.ini │ └── pt-PT.plg_system_bfstop.sys.ini └── ru-RU │ ├── index.html │ ├── ru-RU.plg_system_bfstop.ini │ └── ru-RU.plg_system_bfstop.sys.ini ├── sql ├── index.html ├── install.mysql.utf8.sql ├── uninstall.mysql.utf8.sql └── updates │ ├── 0.9.10.sql │ ├── 0.9.11.sql │ ├── 0.9.5.sql │ ├── 0.9.6.sql │ ├── 0.9.7.sql │ ├── 0.9.8.sql │ ├── 0.9.9.sql │ ├── 1.0.0.sql │ ├── 1.0.1.sql │ ├── 1.2.0.sql │ ├── 1.3.0.sql │ ├── 1.4.0.sql │ ├── 1.4.2.sql │ ├── 1.4.3.sql │ └── index.html ├── unittests └── cryptotest.php ├── update.xml └── updatescript.php /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/README -------------------------------------------------------------------------------- /bfstop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/bfstop.php -------------------------------------------------------------------------------- /bfstop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/bfstop.xml -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/deploy.sh -------------------------------------------------------------------------------- /helpers/crypto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/helpers/crypto.php -------------------------------------------------------------------------------- /helpers/db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/helpers/db.php -------------------------------------------------------------------------------- /helpers/htaccess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/helpers/htaccess.php -------------------------------------------------------------------------------- /helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/helpers/index.html -------------------------------------------------------------------------------- /helpers/ipaddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/helpers/ipaddress.php -------------------------------------------------------------------------------- /helpers/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/helpers/log.php -------------------------------------------------------------------------------- /helpers/notify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/helpers/notify.php -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/index.html -------------------------------------------------------------------------------- /language/ca-ES/ca-ES.plg_system_bfstop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/language/ca-ES/ca-ES.plg_system_bfstop.ini -------------------------------------------------------------------------------- /language/ca-ES/ca-ES.plg_system_bfstop.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/language/ca-ES/ca-ES.plg_system_bfstop.sys.ini -------------------------------------------------------------------------------- /language/ca-ES/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/language/ca-ES/index.html -------------------------------------------------------------------------------- /language/de-DE/de-DE.plg_system_bfstop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/language/de-DE/de-DE.plg_system_bfstop.ini -------------------------------------------------------------------------------- /language/de-DE/de-DE.plg_system_bfstop.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/language/de-DE/de-DE.plg_system_bfstop.sys.ini -------------------------------------------------------------------------------- /language/de-DE/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/language/de-DE/index.html -------------------------------------------------------------------------------- /language/en-GB/en-GB.plg_system_bfstop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/language/en-GB/en-GB.plg_system_bfstop.ini -------------------------------------------------------------------------------- /language/en-GB/en-GB.plg_system_bfstop.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/language/en-GB/en-GB.plg_system_bfstop.sys.ini -------------------------------------------------------------------------------- /language/en-GB/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/language/en-GB/index.html -------------------------------------------------------------------------------- /language/es-ES/es-ES.plg_system_bfstop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/language/es-ES/es-ES.plg_system_bfstop.ini -------------------------------------------------------------------------------- /language/es-ES/es-ES.plg_system_bfstop.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/language/es-ES/es-ES.plg_system_bfstop.sys.ini -------------------------------------------------------------------------------- /language/es-ES/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/language/es-ES/index.html -------------------------------------------------------------------------------- /language/fr-FR/fr-FR.plg_system_bfstop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/language/fr-FR/fr-FR.plg_system_bfstop.ini -------------------------------------------------------------------------------- /language/fr-FR/fr-FR.plg_system_bfstop.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/language/fr-FR/fr-FR.plg_system_bfstop.sys.ini -------------------------------------------------------------------------------- /language/fr-FR/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/language/fr-FR/index.html -------------------------------------------------------------------------------- /language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/language/index.html -------------------------------------------------------------------------------- /language/it-IT/it-IT.plg_system_bfstop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/language/it-IT/it-IT.plg_system_bfstop.ini -------------------------------------------------------------------------------- /language/it-IT/it-IT.plg_system_bfstop.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/language/it-IT/it-IT.plg_system_bfstop.sys.ini -------------------------------------------------------------------------------- /language/nl-NL/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/language/nl-NL/index.html -------------------------------------------------------------------------------- /language/nl-NL/nl-NL.plg_system_bfstop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/language/nl-NL/nl-NL.plg_system_bfstop.ini -------------------------------------------------------------------------------- /language/nl-NL/nl-NL.plg_system_bfstop.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/language/nl-NL/nl-NL.plg_system_bfstop.sys.ini -------------------------------------------------------------------------------- /language/pt-BR/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/language/pt-BR/index.html -------------------------------------------------------------------------------- /language/pt-BR/pt-BR.plg_system_bfstop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/language/pt-BR/pt-BR.plg_system_bfstop.ini -------------------------------------------------------------------------------- /language/pt-BR/pt-BR.plg_system_bfstop.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/language/pt-BR/pt-BR.plg_system_bfstop.sys.ini -------------------------------------------------------------------------------- /language/pt-PT/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/language/pt-PT/index.html -------------------------------------------------------------------------------- /language/pt-PT/pt-PT.plg_system_bfstop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/language/pt-PT/pt-PT.plg_system_bfstop.ini -------------------------------------------------------------------------------- /language/pt-PT/pt-PT.plg_system_bfstop.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/language/pt-PT/pt-PT.plg_system_bfstop.sys.ini -------------------------------------------------------------------------------- /language/ru-RU/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/language/ru-RU/index.html -------------------------------------------------------------------------------- /language/ru-RU/ru-RU.plg_system_bfstop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/language/ru-RU/ru-RU.plg_system_bfstop.ini -------------------------------------------------------------------------------- /language/ru-RU/ru-RU.plg_system_bfstop.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/language/ru-RU/ru-RU.plg_system_bfstop.sys.ini -------------------------------------------------------------------------------- /sql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/sql/index.html -------------------------------------------------------------------------------- /sql/install.mysql.utf8.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/sql/install.mysql.utf8.sql -------------------------------------------------------------------------------- /sql/uninstall.mysql.utf8.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/sql/uninstall.mysql.utf8.sql -------------------------------------------------------------------------------- /sql/updates/0.9.10.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/sql/updates/0.9.10.sql -------------------------------------------------------------------------------- /sql/updates/0.9.11.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/sql/updates/0.9.11.sql -------------------------------------------------------------------------------- /sql/updates/0.9.5.sql: -------------------------------------------------------------------------------- 1 | -- Dummy SQL file to set schema version to 0.9.5 so next update will work 2 | -------------------------------------------------------------------------------- /sql/updates/0.9.6.sql: -------------------------------------------------------------------------------- 1 | alter table `#__bfstop_failedlogin` drop column `password`; 2 | -------------------------------------------------------------------------------- /sql/updates/0.9.7.sql: -------------------------------------------------------------------------------- 1 | -- dummy SQL file for 0.9.7 which requires no DB updates 2 | -------------------------------------------------------------------------------- /sql/updates/0.9.8.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/sql/updates/0.9.8.sql -------------------------------------------------------------------------------- /sql/updates/0.9.9.sql: -------------------------------------------------------------------------------- 1 | -- just for updating the schema... 2 | -------------------------------------------------------------------------------- /sql/updates/1.0.0.sql: -------------------------------------------------------------------------------- 1 | -- just for updating the schema... 2 | -------------------------------------------------------------------------------- /sql/updates/1.0.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/sql/updates/1.0.1.sql -------------------------------------------------------------------------------- /sql/updates/1.2.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/sql/updates/1.2.0.sql -------------------------------------------------------------------------------- /sql/updates/1.3.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/sql/updates/1.3.0.sql -------------------------------------------------------------------------------- /sql/updates/1.4.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/sql/updates/1.4.0.sql -------------------------------------------------------------------------------- /sql/updates/1.4.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/sql/updates/1.4.2.sql -------------------------------------------------------------------------------- /sql/updates/1.4.3.sql: -------------------------------------------------------------------------------- 1 | -- Update DB schema to version 1.4.3 2 | -------------------------------------------------------------------------------- /sql/updates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/sql/updates/index.html -------------------------------------------------------------------------------- /unittests/cryptotest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/unittests/cryptotest.php -------------------------------------------------------------------------------- /update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/update.xml -------------------------------------------------------------------------------- /updatescript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeling/bfstop/HEAD/updatescript.php --------------------------------------------------------------------------------