Metadata-Version: 1.0
Name: django-redissentry
Version: 0.2.0
Summary: Django app based on RedisSentry (redissentry-core) protecting against password attacks
Home-page: http://github.com/axil/django-redissentry
Author: Lev Maximov
Author-email: lev.maximov@gmail.com
License: UNKNOWN
Description: ===========
        RedisSentry
        ===========
        
        This is django specific app for RedisSentry. For generic package,
        (which this app is dependent on) see redissentry-core.
        
        Installation
        ------------
        
        settings.py::
        
            MIDDLEWARE_CLASSES += (
                'redissentry.middleware.RequestMiddleware',
            )
        
            INSTALLED_APPS += (
                'redissentry',
            )
        
        
        Finetuning
        ----------
        
        settings.py::
        
            RS_REDIS_HOST = 'localhost'
            RS_REDIS_PORT = 6379
            RS_REDIS_PASSWORD = ''
            RS_REDIS_DB = 0
        
            RS_FA_PER_IP = 5         # block ip after every N failed attempts
            RS_FA_PER_USERNAME = 5   # block username after every N failed attempts
        
        Also the class structure is designed in such a way as to facilitate further finetuning 
        through inheritance.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Security
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: User Interfaces
