A powerful, simple, and async security library for Sanic.
Project description
Sanic Security
A powerful, simple, and async security library for Sanic.
Documentation
·
Report Bug
·
Request Feature
Table of Contents
About The Project
Sanic Security is an authentication and authorization library made easy, designed for use with Sanic. This library is intended to be easy, convenient, and contains a variety of features:
- Easy login and registering
- Captcha
- SMS and email verification
- JWT
- Password recovery
- Wildcard permissions
- Role permissions
- Easy database integration
- Blueprints
- Completely async
This repository has been starred by Sanic's core maintainer:
Getting Started
In order to get started, please install pip.
Prerequisites
- pip
sudo apt-get install python3-pip
Installation
- Install pip packages
pip3 install sanic-security
Usage
Once Sanic Security is configured and good to go, implementing is easy as pie.
Initial Setup
Familiarity with Sanic and Tortoise ORM is recommended.
First you have to create a configuration file called security.ini in the project directory. Make sure Python's working directory is the project directory. Below is an example of its contents:
WARNING: You must set a custom secret or you will compromise your encoded sessions.
[SECURITY]
secret=05jF8cSMAdjlXcXeS2ZJUHg7Tbyu
captcha_font=source-sans-pro.light.ttf
[SQL]
username=admin
password=8UVbijLUGYfUtItAi
endpoint=example.cweAenuBY6b.us-north-1.rds.amazonaws.com
schema=exampleschema
models=sanic_security.core.models, example.core.models
engine=mysql
generate=true
[TWILIO]
from=12058469963
token=1bcioi878ygO8fi766Fb34750e82a5ab
sid=AC6156Jg67OOYe75c26dgtoTICifIe51cbf
[SMTP]
host=smtp.gmail.com
port=465
from=test@gmail.com
username=test@gmail.com
password=wfrfouwiurhwlnj
tls=true
start_tls=false
You may remove each section in the configuration you aren't using. For example, if you're not utilizing Twillio you can delete the TWILLIO section.
Once you've configured Sanic Security, you can initialize Sanic with the example below:
initialize_security_orm(app)
if __name__ == "__main__":
app.run(host="0.0.0.0", port=8000, debug=True)
All request bodies must be sent as form-data
. The tables in the below examples represent example request form data.
Authentication
- Registration (With all verification requirements)
Phone can be null or empty. A captcha request must be made.
Key | Value |
---|---|
username | test |
test@test.com | |
phone | 19811354186 |
password | testpass |
captcha | Aj8HgD |
@app.post("api/auth/register")
@requires_captcha()
async def on_register(request, captcha_session):
two_step_session = await register(request)
await two_step_session.text_code() # Text verification code.
await two_step_session.email_code() # Or email verification code.
response = json("Registration successful", two_step_session.account.json())
two_step_session.encode(response)
return response
- Registration (Without verification requirements)
Phone can be null or empty.
Key | Value |
---|---|
username | test |
test@test.com | |
phone | 19811354186 |
password | testpass |
@app.post("api/auth/register")
async def on_register(request):
account = await register(request, verified=True)
return json("Registration Successful!", account.json())
- Login
Key | Value |
---|---|
test@test.com | |
password | testpass |
@app.post("api/auth/login")
async def on_login(request):
authentication_session = await login(request)
response = json("Login successful!", authentication_session.account.json())
authentication_session.encode(response)
return response
- Requires Authentication
@app.get("api/auth/authenticate")
@requires_authentication()
async def on_authenticated(request, authentication_session):
return json("Hello " + authentication_session.account.username + "! You are now authenticated.",
authentication_session.account.json())
- Logout
@authentication.post("api/auth/logout")
@requires_authentication()
async def on_logout(request, authentication_session):
await logout(authentication_session)
response = json("Logout successful!", authentication_session.account.json())
return response
Captcha
You must download a .ttf font for captcha challenges and define the file"s path in security.ini.
Captcha challenge example:
- Request Captcha
@app.post("api/captcha/request")
async def on_request_captcha(request):
captcha_session = await request_captcha(request)
response = json("Captcha request successful!", captcha_session.json())
captcha_session.encode(response)
return response
- Captcha Image
@app.get("api/captcha/img")
async def on_captcha_img(request):
captcha_session = await CaptchaSession().decode(request)
return await captcha_session.get_image()
- Requires Captcha
Key | Value |
---|---|
captcha | Aj8HgD |
@app.post("api/captcha/attempt")
@requires_captcha()
async def on_captcha_attempt(request, captcha_session):
return json("Captcha attempt successful!", captcha_session.json())
Two-Step Verification
- Request Two-step Verification (Creates and encodes a two-step session)
If no email is provided via the request form, it will retrieve an account from an existing two-step session.
Key | Value |
---|---|
test@test.com | |
captcha | Aj8HgD |
@app.post("api/verification/request")
@requires_captcha()
async def on_request_verification(request, captcha_session):
two_step_session = await request_two_step_verification(request)
await two_step_session.text_code() # Text verification code.
await two_step_session.email_code() # Or email verification code.
response = json("Verification request successful!", two_step_session.json())
two_step_session.encode(response)
return response
- Resend Two-step Verification Code (Does not create new two-step session, only resends existing session code)
@app.post("api/verification/resend")
async def on_resend_verification(request):
two_step_session = await TwoStepSession().decode(request)
await two_step_session.text_code() # Text verification code.
await two_step_session.email_code() # Or email verification code.
return json("Verification code resend successful!", two_step_session.json())
- Requires Two-Step Verification
Key | Value |
---|---|
code | G8ha9nVa |
@app.post("api/verification/attempt")
@requires_two_step_verification()
async def on_verified(request, two_step_session):
response = json("Two-step verification attempt successful!", two_step_session.json())
return response
- Verify Account
Key | Value |
---|---|
code | G8ha9nVae |
@app.post("api/verification/verify")
@requires_two_step_verification()
async def on_verify(request, two_step_session):
await verify_account(two_step_session)
return json("You have verified your account and may login!", two_step_session.json())
Password Recovery
- Password recovery request
Key | Value |
---|---|
test@test.com | |
captcha | Aj8HgD |
@app.post("api/recovery/attempt")
@requires_captcha()
async def on_recovery_request(request, captcha_session):
two_step_session = await request_password_recovery(request)
await two_step_session.text_code() # Text verification code.
await two_step_session.email_code() # Or email verification code.
response = json("A recovery attempt has been made, please verify account ownership.", two_step_session.json())
two_step_session.encode(response)
return response
- Recover password
Key | Value |
---|---|
password | newpass |
code | G8ha9nVa |
@app.post("api/recovery/recover")
@requires_two_step_verification()
async def on_recover(request, two_step_session):
await recover_password(request, two_step_session)
return json("Account recovered successfully.", two_step_session.account.json())
Authorization
Sanic Security comes with two protocols for authorization: role based and wildcard based permissions.
Role-based access control (RBAC) is a policy-neutral access-control mechanism defined around roles and privileges. The components of RBAC such as role-permissions, user-role and role-role relationships make it simple to perform user assignments.
Wildcard permissions support the concept of multiple levels or parts. For example, you could grant a user the permission
printer:query
. The colon in this example is a special character used to delimit the next part in the permission string. In this example, the first part is the domain that is being operated on (printer), and the second part is the action (query) being performed.
This concept was inspired by Apache Shiro"s implementation of wildcard based permissions.
Examples of wildcard permissions are:
admin:add,update,delete
admin:add
admin:*
employee:add,delete
employee:delete
employee:*
@app.post("api/auth/perms")
@require_permissions("admin:update", "employee:add")
async def on_require_perms(request, authentication_session):
return text("Account permitted.")
- Require Roles
@app.get("api/auth/roles")
@require_roles("Admin", "Moderator")
async def on_require_roles(request, authentication_session):
return text("Account permitted")
Error Handling
@app.exception(SecurityError)
async def on_error(request, exception):
return exception.response
Middleware
- Cross Site Scripting Protection Middleware
The HTTP X-XSS-Protection response header is a feature that stops pages from loading when they detect reflected cross-site scripting (XSS) attacks.
@app.middleware("response")
async def xxs_middleware(request, response):
xss_prevention_middleware(request, response)
- Https Redirection Middleware
Redirects all http requests to https.
@app.middleware("request")
async def https_middleware(request):
return https_redirect_middleware(request)
Blueprints
Sanic Security blueprints contain endpoints that allow you to employ fundamental authentication and verification into your application with a single line of code.
- Implementation
Blueprint containing all security endpoints.
app.blueprint(security)
Below are blueprints containing endpoints only related to authentication and captcha verification.
app.blueprint(authentication)
app.blueprint(captcha)
- Endpoints
Method | Endpoint | Info |
---|---|---|
POST | api/auth/register | A captcha is required. Register an account with an email, username, and password. Once the account is created successfully, a two-step session is requested and the code is emailed. |
POST | api/auth/login | Login with an email and password. |
POST | api/auth/verify | Verify account with a two-step session code found in email. |
POST | api/auth/logout | Logout of logged in account. |
POST | api/auth/verification/request | A captcha is required. Request new two-step session and send email with code. Used if existing session is invalid or expired. |
POST | api/auth/verification/resend | Resend existing two-step session code if lost. |
POST | api/auth/recovery/request | A captcha is required. Requests new two-step session to ensure current recovery attempt is being made by account owner. |
POST | api/auth/recovery/recover | Changes an account's password once recovery attempt was determined to have been made by account owner with two-step code found in email. |
POST | api/auth/captcha/request | Requests new captcha session. |
GET | api/auth/captcha/img | Retrieves captcha image from existing captcha session. |
Testing
You may test Sanic Security manually with postman or run automated unit tests.
Make sure the test Sanic instance (test/server.py
) is running on your machine as both postman, and the unit tests operate as a test client.
Then run the unit tests (test/tests.py
) or test with postman via clicking the button below.
Roadmap
Keep up with Sanic Security's Trello board for a list of proposed features, known issues, and in progress development.
Contributing
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
License
Distributed under the GNU General Public License v3.0. See LICENSE
for more information.
Acknowledgements
- thewchan added a MANIFEST.in to make packaging to conda-forge possible.
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
File details
Details for the file sanic-security-0.10.0.tar.gz
.
File metadata
- Download URL: sanic-security-0.10.0.tar.gz
- Upload date:
- Size: 38.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7c89ca771888857a347814de32cf1684e2a1a10f9a60a1a6bcfc2f3e54eb325d |
|
MD5 | cd77eba2c894264bf5260860c9cfaf34 |
|
BLAKE2b-256 | 5d378859776a53ccf8e05796b366a4d83de69e75560c7963921f16c12382d25e |