Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
A Flask extension that supports protecting routes with AWS Cognito following OAuth 2.1 best practices
A Flask extension that supports protecting routes with AWS Cognito following OAuth 2.1 best practices. That means the full authorization code flow, including Proof Key for Code Exchange (RFC 7636) to prevent Cross Site Request Forgery (CSRF), along with secure storage of access tokens in HTTP only cookies (to prevent Cross Site Scripting attacks), and additional nonce
validation (if using ID tokens) to prevent replay attacks.
Optionally, OAuth refresh flow can be enabled, with the refresh token stored in a HTTP-only cookie with optional Fernet symmetrical encryption using Flask's SECRET_KEY
(encryption is enabled by default).
Documentation: https://mblackgeo.github.io/flask-cognito-lib
Source Code: https://github.com/mblackgeo/flask-cognito-lib
Use the package manager pip to install:
pip install flask-cognito-lib
To get started quickly, a complete example Flask application is provided in /example
including instructions on setting up a Cognito User Pool. A separate repo holds a complete example app, including AWS CDK (Cloud Development Kit) code to deploy the application to API Gateway and Lambda, along with creation of a Cognito User Pool and Client. However, assuming a Cognito user pool has been setup with an app client (with Client ID and Secret), get started as follows:
from flask import Flask, jsonify, redirect, session, url_for
from flask_cognito_lib import CognitoAuth
from flask_cognito_lib.decorators import (
auth_required,
cognito_login,
cognito_login_callback,
cognito_logout,
cognito_refresh_callback,
)
app = Flask(__name__)
# Configuration required for CognitoAuth
app.config["AWS_REGION"] = "eu-west-1"
app.config["AWS_COGNITO_USER_POOL_ID"] = "eu-west-1_qwerty"
app.config["AWS_COGNITO_DOMAIN"] = "https://app.auth.eu-west-1.amazoncognito.com"
app.config["AWS_COGNITO_USER_POOL_CLIENT_ID"] = "asdfghjkl1234asdf"
app.config["AWS_COGNITO_USER_POOL_CLIENT_SECRET"] = "zxcvbnm1234567890"
app.config["AWS_COGNITO_REDIRECT_URL"] = "https://example.com/postlogin"
app.config["AWS_COGNITO_LOGOUT_URL"] = "https://example.com/postlogout"
app.config["AWS_COGNITO_REFRESH_FLOW_ENABLED"] = True
app.config["AWS_COGNITO_REFRESH_COOKIE_ENCRYPTED"] = True
app.config["AWS_COGNITO_REFRESH_COOKIE_AGE_SECONDS"] = 86400
auth = CognitoAuth(app)
@app.route("/login")
@cognito_login
def login():
# A simple route that will redirect to the Cognito Hosted UI.
# No logic is required as the decorator handles the redirect to the Cognito
# hosted UI for the user to sign in.
# An optional "state" value can be set in the current session which will
# be passed and then used in the postlogin route (after the user has logged
# into the Cognito hosted UI); this could be used for dynamic redirects,
# for example, set `session['state'] = "some_custom_value"` before passing
# the user to this route
pass
@app.route("/postlogin")
@cognito_login_callback
def postlogin():
# A route to handle the redirect after a user has logged in with Cognito.
# This route must be set as one of the User Pool client's Callback URLs in
# the Cognito console and also as the config value AWS_COGNITO_REDIRECT_URL.
# The decorator will store the validated access token in a HTTP only cookie
# and the user claims and info are stored in the Flask session:
# session["claims"] and session["user_info"].
# Do anything after the user has logged in here, e.g. a redirect or perform
# logic based on a custom `session['state']` value if that was set before
# login
return redirect(url_for("claims"))
@app.route("/refresh", methods=["POST"])
@cognito_refresh_callback
def refresh():
# A route to handle the token refresh with Cognito.
# The decorator will exchange the refresh token for new access and refresh tokens.
# The new validated access token will be stored in an HTTP only secure cookie.
# The refresh token will be symmetrically encrypted(by default)
# and stored in an HTTP only secure cookie.
# The user claims and info are stored in the Flask session:
# session["claims"] and session["user_info"].
# Do anything after the user has refreshed access token here, e.g. a redirect
# or perform logic based on the `session["user_info"]`.
pass
@app.route("/claims")
@auth_required()
def claims():
# This route is protected by the Cognito authorisation. If the user is not
# logged in at this point or their token from Cognito is no longer valid
# a 401 Authentication Error is thrown, which can be caught by registering
# an `@app.error_handler(AuthorisationRequiredError)`.
# If their session is valid, the current session will be shown including
# their claims and user_info extracted from the Cognito tokens.
return jsonify(session)
@app.route("/admin")
@auth_required(groups=["admin"])
def admin():
# This route will only be accessible to a user who is a member of all of
# groups specified in the "groups" argument on the auth_required decorator
# If they are not, a 401 Authentication Error is thrown, which can be caught
# by registering an `@app.error_handler(CognitoGroupRequiredError)`.
# If their session is valid, the set of groups the user is a member of will be
# shown.
# Could also use: jsonify(session["user_info"]["cognito:groups"])
return jsonify(session["claims"]["cognito:groups"])
@app.route("/edit")
@auth_required(groups=["admin", "editor"], any_group=True)
def edit():
# This route will only be accessible to a user who is a member of any of
# groups specified in the "groups" argument on the auth_required decorator
# If they are not, a CognitoGroupRequiredError is raised.
return jsonify(session["claims"]["cognito:groups"])
@app.route("/logout")
@cognito_logout
def logout():
# Logout of the Cognito User pool and delete the cookies that were set
# on login.
# Revokes the refresh token to not be used again and removes the cookie.
# No logic is required here as it simply redirects to Cognito.
pass
@app.route("/postlogout")
def postlogout():
# This is the endpoint Cognito redirects to after a user has logged out,
# handle any logic here, like returning to the homepage.
# This route must be set as one of the User Pool client's Sign Out URLs.
return redirect(url_for("home"))
if __name__ == "__main__":
app.run()
There might be some cases where you want to override the default Config
class to add custom logic. For example, to generate the redirect_url
and logout_redirect
dynamically using url_for
, you can override the Config
class as follows:
from flask import url_for
from flask_cognito_lib.config import Config
class ConfigOverride(Config):
"""
ConfigOverride class to generate URLs dynamically using `url_for`
"""
@property
def redirect_url(self) -> str:
"""Return the Redirect URL (post-login)"""
return url_for(endpoint='auth.cognito', _external=True)
@property
def logout_redirect(self) -> str:
"""Return the Redirect URL (post-logout)"""
return url_for(endpoint='auth.cognito_post_logout', _external=True)
Then, pass the object of ConfigOverride
class when initializing the CognitoAuth
plugin as follows:
CognitoAuth(app, cfg=ConfigOverride())
Or if you are using lazy initialization:
CognitoAuth().init_app(app, cfg=ConfigOverride())
Prequisites:
The Makefile includes helpful commands setting a development environment, get started by installing the package into a new environment and setting up pre-commit by running make install
. Run make help
to see additional available commands (e.g. linting, testing and so on).
/tests
)./docs
).Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. Please make sure to update tests as appropriate and ensure 100% test coverage.
This work started as a fork of the unmaintained Flask-AWSCognito extension, revising the implementation following OAuth 2.1 recommendations, with inspiration from flask-cognito-auth. Whilst there are serveral Cognito extensions available for Flask, none of those implement OAuth 2.1 recommendations, with some plugins not even actively maintained.
FAQs
A Flask extension that supports protecting routes with AWS Cognito following OAuth 2.1 best practices
We found that flask-cognito-lib demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.