All Projects → mixkorshun → django-antispam

mixkorshun / django-antispam

Licence: MIT license
Spam protection tools for django applications.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to django-antispam

Loki
一个轻量级Web蜜罐 - A Little Web Honeypot.🍯🍯🍯🐝🐝🐝
Stars: ✭ 151 (+202%)
Mutual labels:  honeypot
citrix-honeypot
Citrix ADC (NetScaler) Honeypot. Supports detection for CVE-2019-19781 and login attempts
Stars: ✭ 24 (-52%)
Mutual labels:  honeypot
SSHapendoes
Capture passwords of login attempts on non-existent and disabled accounts.
Stars: ✭ 31 (-38%)
Mutual labels:  honeypot
prickly-pete
A script using Docker to quickly bring up some honeypots exposing lots of services. For research, reconnaissance, and fun. (DISCLAIMER may not be fun, not to be taken internally, aim away from face)
Stars: ✭ 29 (-42%)
Mutual labels:  honeypot
fakessh
A dockerized fake SSH server honeypot written in Go that logs login attempts.
Stars: ✭ 42 (-16%)
Mutual labels:  honeypot
SpamProtectionRobot
Anti Spam/NSFW Telegram Bot Written In Python With Pyrogram.
Stars: ✭ 46 (-8%)
Mutual labels:  antispam
imap-honey
IMAP or SMTP honeypot written in Golang
Stars: ✭ 22 (-56%)
Mutual labels:  honeypot
stack-honeypot
Inserts a trap for spam bots into responses.
Stars: ✭ 22 (-56%)
Mutual labels:  honeypot
DemonHunter
Distributed Honeypot
Stars: ✭ 54 (+8%)
Mutual labels:  honeypot
akismet-js
Akismet API client for node.js
Stars: ✭ 29 (-42%)
Mutual labels:  akismet
ZKShS
Search shodan without any knowledge about its queries
Stars: ✭ 37 (-26%)
Mutual labels:  honeypot
weblogic honeypot
WebLogic Honeypot is a low interaction honeypot to detect CVE-2017-10271 in the Oracle WebLogic Server component of Oracle Fusion Middleware. This is a Remote Code Execution vulnerability.
Stars: ✭ 30 (-40%)
Mutual labels:  honeypot
laravel-akismet
Akismet for Laravel 8.x/9.x
Stars: ✭ 85 (+70%)
Mutual labels:  akismet
bitrix-antispam
1C Bitrix anti-spam mod.
Stars: ✭ 10 (-80%)
Mutual labels:  antispam
akismet.js
Prevent comment spam using Akismet service, in JavaScript.
Stars: ✭ 21 (-58%)
Mutual labels:  akismet
ChatControl-Pro
The ultimate chat solution. Prevent spam, ads, swears and even bots on your server. Replaced by ChatControl Red: https://mineacademy.org/chatcontrol-red
Stars: ✭ 65 (+30%)
Mutual labels:  antispam
twisted-honeypots
SSH, FTP and Telnet honeypots based on Twisted
Stars: ✭ 79 (+58%)
Mutual labels:  honeypot
mhn
🍯 Analyze and Visualize Data from Modern Honey Network Servers with R
Stars: ✭ 16 (-68%)
Mutual labels:  honeypot
masscanned
Let's be scanned. A low-interaction honeypot focused on network scanners and bots. It integrates very well with IVRE to build a self-hosted alternative to GreyNoise.
Stars: ✭ 50 (+0%)
Mutual labels:  honeypot
Mail-Toaster-6
Mail Toaster 6
Stars: ✭ 40 (-20%)
Mutual labels:  antispam

django-antispam

build status codecov pypi pep8 MIT

Various anti-spam protection tools for django applications.

See the documentation for more details.

Installation

The package can be installed using:

pip install django-antispam

Add the following settings:

INSTALLED_APPS += (
    'antispam',

  # 'antispam.akismet',
  # 'antispam.honeypot',
  # 'antispam.captcha',
)

# Akismet protection configuration (optional)

AKISMET_API_KEY = '<akismet api-key>'

AKISMET_SITE_URL = '<base site url>'

AKISMET_TEST_MODE = False

# reCAPTCHA default configuration (optional)

RECAPTCHA_SITEKEY = 'sitekey'

RECAPTCHA_SECRETKEY = 'secretkey'

RECAPTCHA_WIDGET = 'antispam.captcha.widgets.ReCAPTCHA'

RECAPTCHA_TIMEOUT = 5

RECAPTCHA_PASS_ON_ERROR = False

Contributing

If you have any valuable contribution, suggestion or idea, please let us know as well because we will look into it.

Pull requests are welcome too.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].