Skip to content

Secful/django-agent

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

django-agent

Secure Django server with SECful

Installation

pip install git+https://github.com/SECful/django-agent.git@v1.0

In django settings.py:

  • add the item 'secfuldjangoplugin.Secful' to MIDDLEWARE_CLASSES list.
  • add "SECFUL_KEY = 'KEY'" to the settings (replace KEY with the key provided by SECful.)
  • add "SECFUL_HOST = 'HOST'" to the settings (replace HOST with the host provided by SECful.)

For example (settings.py):

SECFUL_KEY = 'KEY' # replace KEY with the key provided by SECful.
SECFUL_HOST = 'HOST' # replace HOST with the host provided by SECful.
...
MIDDLEWARE_CLASSES = [
    ..., 
    ..., 
    ..., 
    'secfuldjangoplugin.Secful',
]

About

Catch traffic on django middleware and send it out in different threads.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages