CloudFlare Challenge pages
Project description
CloudFlare-Challenge
Ensure that we can do a cloudflare challenge in flask
Rationale
If you Flask server is behind a CloudFlare wall then any upload of data may provoke a "challenge" of the "I'm not a robot" kind.
Instead of returning the response to your browser query, CloudFlare sends
back an html page with a 403 HTTP status which will interogate your browser internals and leave a cookie cf_clearance
-- if you "pass" the challenge!.
This is of course a disaster if you have used Ajax to send the request.
The idea here is to get that sweet, sweet CloudFlare cookie cf_clearance
as soon as possible or at least before
you do any ajax requests.
Basically if there is no cf_clearance
cookie for a request this Blueprint will redirect to
a "managed" page where it will automatically upload an image to provoke the CloudFlare challenge --
then check for success.
Once your browser has the cf_clearance
cookie then CloudFlare-Challenge
will leave your app alone.
This "solution" is not ideal but it maybe better than weird failures of your ajax requests that will ultimately confuse/anger your users.
The big assumption here is that an upload of an image will provoke the CloudFlare challenge. If it doesn't then don't use this package!
Configuration
You will need to set 1-5 configuration variables
# path to a static image (required) e.g:
CF_IMAGE_FILENAME = "img/Three-pink-daisies.jpeg"
# endpoint to redirect to after challenge
CF_REDIRECT_TO = None
# template to inherit from. Defaults to one provided by cloudflare_challenge.
CF_MAIN_TEMPLATE = None
# list of endpoint prefixes that will be white/black listed
# can be just a string
CF_WHITE_LIST = ()
CF_BLACK_LIST = ()
If CF_IMAGE_FILENAME
is missing or None then the blueprint will silently not be registered even
if init_app
is called. init_app
is indempotent.
The image filename will be used by url_for('static', filename=CF_IMAGE_FILENAME)
to
generate a url. The image should be large enough to provoke a challenge. Choose an image
that will already be cached in your brower such as a banner image in your flask landing page.
If you specify a template (CF_MAIN_TEMPLATE
) it should have a content
block
(for html, this is where the iframe is blatted) and a js
block (for javascript).
If CF_REDIRECT_TO
is missing or None then steps will be taken to redirect back to
the original page that prompted the redirection to the challenge page otherwise it will
redirect back to /
. Remember: CF_REDIRECT_TO
expects a flask endpoint not a URL.
White listed endpoints won't trigger a check for CloudFlare cookies, headers etc.
Use this for "static" images, css etc (the static
endpoint is already white listed).
You can blacklist flask endpoints -- possibly endpoints that generate html with forms in them and thus might trigger the challenge.
The black list is checked first then the white list.
Either way, Ajax requests (with a X-Requested-With
header) will not trigger the challenge page (no point really since
this doesn't help -- too late!).
It is maybe the best to black list endpoints that generate html forms for the user to fill out, or any page that might send an ajax request due to user interaction. You will want to trigger the challenge before any Ajax/form upload is undertaken.
Usage
Basic usage
from flask import Flask
from cloudflare_challenge import init_app
app = Flask(__name__)
app.config.from_pyfile("config.py") # say
init_app(app, url_prefix='/someprefix')
Client Side
If you are using jQuery on a page to enable Ajax then you can ensure Challenges are detected by adding to your page:
{% from "cloudflare-macros.html" import cf_challenge %}
{{ cf_challenge() }}
Then Ajax challenges will be detected and logged.
If, in addition you set MAIL_SERVER
and CF_MAIL_RECIPIENT
, then cloudflare-challenge will attempt to
send an email too.
If you only want this part then set CF_WHITE_LIST = '*'
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
File details
Details for the file cloudflare_challenge-0.1.1.tar.gz
.
File metadata
- Download URL: cloudflare_challenge-0.1.1.tar.gz
- Upload date:
- Size: 9.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.6.1 CPython/3.11.0 Linux/5.15.0-92-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c274f426c6478a66a539901eeda0b2a1925d31e827c2251521acf48223b37649 |
|
MD5 | 15d55f7bfdc8ec16e8cb4901191e6ca6 |
|
BLAKE2b-256 | 299e42dafdc35604f1e4c367afa2b91edecc1a9c6d6dd95969fa03e84a9ee031 |
File details
Details for the file cloudflare_challenge-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: cloudflare_challenge-0.1.1-py3-none-any.whl
- Upload date:
- Size: 9.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.6.1 CPython/3.11.0 Linux/5.15.0-92-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6142c8c412cf2ecb45517bbab5136386c3b88d1a9e75226ac3b7c7b39920e17a |
|
MD5 | 17c792e76392437792864304e7e683d8 |
|
BLAKE2b-256 | c9d9ff08dd59ea8d923ea88d56b835638f4267b109ad563fdfd9567b738c4492 |