Open In App

Build a Flask application to validate CAPTCHA

Last Updated : 26 May, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

In this article, we are going a build a web application that can have a CAPTCHA. CAPTCHA is a tool you can use to differentiate between real users and automated users. CAPTCHAs are usually found on the login pages or on payment pages.

What is CAPTCHA?

Captcha is strategy used to ensure sites against spam. Objective is to prevent intuitive sites from being spammed by sifting through naturally created input. Abbreviation CAPTCHA means ‘Totally Automated Public Turing test to distinguish Computers and Humans’. Captchas are generally utilized when web applications require client input. Envision you are running online store and need to offer your clients chance to compose item surveys in remarks segment. For this situation, you need to guarantee that passages are really from your clients or if nothing else from human site guests. You will regularly go over naturally produced spam remarks – in most pessimistic scenario connecting to your opposition.

Note: For more information refer to What is CAPTCHA code?

Requirements

  • Flask framework: Flask is an API of Python that allows us to build up web-applications. Flask’s framework is more explicit than Django’s framework and is also easier to learn because it has less base code to implement a simple web-Application.
  • Flask-session-captcha library: A captcha implementation for flask using flask-sessionstore and captcha packages. Each captcha challenge answer is saved in the server-side session of the challenged client.
  • MongoDB: MongoDB, the most popular NoSQL database, is an open-source document-oriented database. The term ‘NoSQL’ means ‘non-relational’. It means that MongoDB isn’t based on the table-like relational database structure but provides an altogether different mechanism for storage and retrieval of data.

Note: The database depends on your application. Flask-session-captcha library supports multiple databases so if you are using any other database be sure to check out their documentation.

Build the application

You can install all the required dependencies using the following command

pip install -U Flask flask-session-captcha Flask-Sessionstore pymongo

It is recommended that you install all the dependencies in the virtual environment.

Stepwise Implementation

Step 1: Create the UI

Create a folder called templates and inside it create an HTML file. You can save the HTML file as form.html.

HTML




<form method="post">
    
    <!-- The following line creates the captcha -->
    {{ captcha() }}
    <input type="text" name="captcha">
    <input type="submit" name="submit">
</form>


Step 2: Create app.py

Let’s create a simple app that shows the above form without captcha.

Example: Initialize Flask Application

Python3




from flask import Flask,render_template
  
app = Flask(__name__)
  
@app.route('/')
def index():
    return render_template('form.html')
    
if __name__ == "__main__":
    app.run(debug=True)


Run the server using the following command to make sure that the application is running successfully and the form.html page is displayed.

python app.py

Output:

Step 3: Initialize PyMongoClient

To use Python in MongoDB, we are going to import PyMongo. From that, MongoClient can be imported which is used to create a client to the database.

Python3




from flask import Flask, render_template
from pymongo import MongoClient
  
app = Flask(__name__)
  
# Database Config
# If your mongodb runs on a different port
# change 27017 to that port number
mongoClient = MongoClient('localhost', 27017)
  
@app.route('/')
def index():
    return render_template('form.html')
  
if __name__ == "__main__":
    app.run(debug=True)


Step 4: Configure Captcha

There are various configurations required to use the captcha in the application. Here we will be using flask_session_captcha module which implements captcha using flask-sessionstore and captcha packages. 

Python3




import uuid
from flask import Flask, render_template
from flask_sessionstore import Session
from flask_session_captcha import FlaskSessionCaptcha
from pymongo import MongoClient
  
app = Flask(__name__)
  
# Database Config
# If your mongodb runs on a different port
# change 27017 to that port number
mongoClient = MongoClient('localhost', 27017)
  
# Captcha Configuration
app.config["SECRET_KEY"] = uuid.uuid4()
app.config['CAPTCHA_ENABLE'] = True
  
# Set 5 as character length in captcha
app.config['CAPTCHA_LENGTH'] = 5
  
# Set the captcha height and width
app.config['CAPTCHA_WIDTH'] = 160
app.config['CAPTCHA_HEIGHT'] = 60
app.config['SESSION_MONGODB'] = mongoClient
app.config['SESSION_TYPE'] = 'mongodb'
  
# Enables server session
Session(app)
  
# Initialize FlaskSessionCaptcha
captcha = FlaskSessionCaptcha(app)
  
@app.route('/')
def index():
    return render_template('form.html')
  
if __name__ == "__main__":
    app.run(debug=True)


Step 5: Configure Logging

Logging is a means of tracking events that happen when some software runs. Here we have used the logging.getLogger() method which returns a logger with a specified name otherwise returns the root logger,

Python3




import uuid
import logging
from flask import Flask, render_template
from flask_sessionstore import Session
from flask_session_captcha import FlaskSessionCaptcha
from pymongo import MongoClient
  
app = Flask(__name__)
  
# Database Config
# If your mongodb runs on a different port
# change 27017 to that port number
mongoClient = MongoClient('localhost', 27017)
  
# Captcha Configuration
app.config["SECRET_KEY"] = uuid.uuid4()
app.config['CAPTCHA_ENABLE'] = True
  
# Set 5 as character length in captcha
app.config['CAPTCHA_LENGTH'] = 5
  
# Set the captcha height and width
app.config['CAPTCHA_WIDTH'] = 160
app.config['CAPTCHA_HEIGHT'] = 60
app.config['SESSION_MONGODB'] = mongoClient
app.config['SESSION_TYPE'] = 'mongodb'
  
# Enables server session
Session(app)
  
# Initialize FlaskSessionCaptcha
captcha = FlaskSessionCaptcha(app)
  
@app.route('/')
def index():
    return render_template('form.html')
  
  
if __name__ == "__main__":
    app.debug = True
    logging.getLogger().setLevel("DEBUG")
    app.run()


Step 6: Code the index route

Here we have used the POST method which returns checks the input against the captcha. If the captcha matches success method is displayed otherwise fail method is displayed.

Python3




import uuid
import logging
from flask import Flask, request, render_template
from flask_sessionstore import Session
from flask_session_captcha import FlaskSessionCaptcha
from pymongo import MongoClient
  
app = Flask(__name__)
  
# Database Config
# If your mongodb runs on a different port
# change 27017 to that port number
mongoClient = MongoClient('localhost', 27017)
  
# Captcha Configuration
app.config["SECRET_KEY"] = uuid.uuid4()
app.config['CAPTCHA_ENABLE'] = True
  
# Set 5 as character length in captcha
app.config['CAPTCHA_LENGTH'] = 5
  
# Set the captcha height and width
app.config['CAPTCHA_WIDTH'] = 160
app.config['CAPTCHA_HEIGHT'] = 60
app.config['SESSION_MONGODB'] = mongoClient
app.config['SESSION_TYPE'] = 'mongodb'
  
# Enables server session
Session(app)
  
# Initialize FlaskSessionCaptcha
captcha = FlaskSessionCaptcha(app)
  
@app.route('/', methods=['POST', 'GET'])
def index():
    if request.method == "POST":
        if captcha.validate():
            return "success"
        else:
            return "fail"
  
    return render_template("form.html")
  
  
if __name__ == "__main__":
    app.debug = True
    logging.getLogger().setLevel("DEBUG")
    app.run()


Run the app

Start server with:

python app.py

Then visit:

http://localhost:5000/

Output:



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads