Protect against bots and DDoS attacks
Project description
A DDoS defense system for flask applications, first sends users to a captcha page without a javascript script and creates a confirmation cookie/url arg after the captcha.
[ ! ] With version 0.7 and 0.9 the syntax of the DDoSify() class has changed. [ ! ]
How does flask_Captchaify work?
If needed, a captcha is displayed to the user (or the robot) based on the strength set. Javascript is not needed for this, as the content is rendered on the server.
An example script could look like this:
from flask import Flask
from flask_Captchaify import Captcha
app = Flask(__name__)
captcha = Captcha(app, default_hardness=2, default_action = "fight", default_rate_limit = 3)
@app.route("/")
def index():
return 'Hello Human!'
if __name__ == "__main__":
app.run(host = "localhost", port = 8080)
- When testing DDoSify you should note that calling it from localhost gives the script a wrong IP in this case "127.0.0.1", which the script considers legitimate. When testing, use a service like cloudflared tunnel to connect to your script.
Application purposes
A few application purposes:
- Protect against DDoS attacks
- Your website contains content that should not be read by a robot
- A login website
- A dark web page that simply needs to be secured a bit
Why should you use DDoSify if you host a Flask server?
A quick and easy implementation allows even small websites or a small team of developers to quickly get robot protection. It also doesn't use third-party providers, which limits data collection from Google, Facebook and the creepy data brokers. Everything is open source, meaning you can rewrite the code yourself and perhaps make it more private.
Instructions
Installation guide
- Make sure you have the latest version of Python and Pip installed, you also need git installed.
- Install the script with pip
pip install flask_Captchaify
or manually viagit clone https://github.com/tn3w/flask_Captchaify
or download the zip. - If you installed it manually, make sure your python script is in the folder where there is a subfolder flask_Captchaify, and make sure you run
pip install -r requirements.txt
in the flask_Captchaify folder. - Make sure that after:
app = Flask(__name__)
You add the line:captcha = Captcha(app, default_hardness=2, default_action = "fight", default_rate_limit = 3)
And at the beginning of the file add the import:from flask_Captchaify import Captcha
For more information, see the sample code above.
Personalization
-
actions
ArgTo change the response in the case of certain routes / endpoints, you can use the actions parameter.
Example of a website that allows all bots on the main page, enforces captchas on the login page, and blocks all robots on the registration page:
ddosify = DDoSify(app, actions={"/": "let", "/login": "fight", "/register": "block"})
When using "*" before or after the urlpath / endpoint you can address multiple urls.
Example of a website where all urls with /api/ are allowed through, all urls starting with "/dogs/" show everyone a captcha and all urls ending with "/cats/" block bots:
ddosify = DDoSify(app, actions={"*/api/*": "let", "/dogs/*": "fight", "*/cats/": "block"})
All actions:
Name of action Executing Action let Allows all traffic through, regardless of whether the IP is blocked. block Blocks all traffic if it is blocked, without captcha. fight Displays a captcha to all traffic, whether suspicious or not. captcha Default value, shows only suspicious traffic captchas.
-
hardness
ArgTo change the hardness of a captcha for specific routes or endpoints use hardness.
Example of a website that sets the hardness of the main page to 1 (= easy), on the login page to 2 (= normal) and on the register page to 3 (= hard):
ddosify = DDoSify(app, hardness={"/": 1, "/login": 2, "/register": 3})
When using "*" before or after the urlpath / endpoint you can address multiple urls, like actions.
All hardness levels:
Hardness Level Captcha modification 1 The captcha is easy. Only a text captcha with 6 - 8 characters is displayed 2 The captcha is normal. Only a text captcha with 9 - 11 characters is displayed 3 The hardness of the captcha is hard, a 9 - 14 number audio captcha is displayed in addition to the 10 - 12 character text captcha.
-
rate_limits
ArgTo change the rate_limit and max_rate_limit for a specific route or endpoint use the rate_limits arg. The syntax is a bit different from the others, because two values are specified
{"route": (rate_limit, max_rate_limit), "endpoint": (rate_limit, max_rate_limit)}
. The variable rate_limit must be a number indicating how many requests per minute can come from a given ip. max_rate_limit indicates how many requests can come from all ips per minute, also a number.Example of a website that has a specific rate_limit on /api/:
ddosify = DDoSify(app, template_dirs={"/api/*": (60, 600)})
-
template_dirs
ArgTo change the template directory of a particular route use the template_dirs arg.
Example of a website that has a specific template directory on /api/:
ddosify = DDoSify(app, template_dirs={"/api/*": "/path/to/special/template/directory"})
A template directory can look like this:
template_directory\ \captcha.html \block.html \rate_limited.html \change_language.html
If one of the three templates does not exist in the folder, a 404 error is displayed when calling it. e.g. if you remove the changelanguage page at apis.
-
default_action
ArgTo specify the default action of all routes or endpoints use the default_action arg.
Example of a very paranoid website that has set its action to "fight" for all routes:
ddosify = DDoSify(app, default_action="fight")
-
default_hardness
ArgTo specify the default hardness of all routes or endpoints use the default_hardness arg.
Example of a very paranoid website that has set its hardness to 3 (= hard) for all routes:
ddosify = DDoSify(app, default_hardness=3)
-
default_rate_limit
ArgTo specify the default requests of an IP per minute for all routes use the default_rate_limit variable. (Default: 120 = 2 requests per second per IP)
Example of a web page with custom rate_limit:
ddosify = DDoSify(app, default_rate_limit=60)
-
default_max_rate_limit
ArgTo specify the default requests of all IPs per minute for all routes use the default_max_rate_limit variable. (Default: 1200 = 2 requests per second from 10 IPs)
Example of a web page with custom max_rate_limit:
ddosify = DDoSify(app, default_max_rate_limit=600)
-
default_template_dir
ArgTo specify the default template_dir of all routes or endpoints use the default_template_dir arg.
Example of a web page with custom template_dir:
ddosify = DDoSify(app, default_template_dir="/path/to/my/custom/template/directory")
-
verificationage
ArgIndicates the time in seconds how long a solved captcha is valid (Default: 3600 = 1 hour)
Website with 3 hours verificationage:
ddosify = DDoSify(app, verificationage=10800)
-
withoutcookies
ArgIf True, no cookies are created, and verification is proven via URL args (Default: False)
Website with withoutcookies enabled:
ddosify = DDoSify(app, withoutcookies=True)
-
block_crawler
ArgIf True, crawlers like Googlebot, further are estimated via their user agent as suspicious and not the website, good for websites that should not be crawled (Default: True)
Web page with block_crawler enabled:
ddosify = DDoSify(app, block_crawler=True)
-
crawler_hints
Arg:If True, crawlers like Googlebot, are shown meta tags and the title of a normal web page, while they would have to solve a captcha. (Default: True)
Web page with crawler_hints disabled:
ddosify = DDoSify(app, crawler_hints=False)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for flask_Captchaify-1.3.8-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ddd5425d296917bd2bb34c0e457234ffcd1df6460e74a84ceb1ea185c0db9d2f |
|
MD5 | 21990ea93902f62a8575283ea9bf97d5 |
|
BLAKE2b-256 | eb7007e3a56f6bdc958ec63320f72a3cdf601eb78e3a93a9caeb02c304636e5e |