Giter VIP home page Giter VIP logo

django-dreiattest's Introduction

django-dreiattest

dreiattest leverages pyttest and integrates it into django. It handles routing, different config options and persistence of tokens and public keys. To use dreiAttest you need to use the corresponing libraries for iOS and Android / Kotlin Multiplatform.

Installation

dreiAttest is available on PyPI and can be installed via $ python -m pip install dreiattest-django.

After the installation make sure to add dreiattest to your INSTALLED_APPS and trigger all migrations with python manage.py migrate dreiattest. Also, you need to register the default endpoints in your urls.py

urlpatterns = [
    path('admin/', admin.site.urls),
    path('', include('dreiattest.urls')),
    ...
]

Config

There are multiple settings you can and or have to set in your settings.py. The following are mandatory:

  • Apple: DREIATTEST_APPLE_APPID
  • Google (Legacy: Safety Net): DREIATTEST_GOOGLE_APK_NAME, DREIATTEST_GOOGLE_APK_CERTIFICATE_DIGEST
  • Google Play Integrity API: DREIATTEST_GOOGLE_APK_NAME, DREIATTEST_GOOGLE_DECRYPTION_KEY, DREIATTEST_GOOGLE_VERIFICATION_KEY

These are all the possible config values and what they do.

  • DREIATTEST_BASE_URL: Our different endpoints like /key and /nonce will be bellow this slug
  • DREIATTEST_UID_HEADER: Header containing the DeviceSession uid
  • DREIATTEST_ASSERTION_HEADER: Header containing the assertion
  • DREIATTEST_USER_HEADERS_HEADER: Header containing the list of comma separated headers that are included in the assertion
  • DREIATTEST_NONCE_HEADER: Header containing the server nonce that was used inside the attestation
  • DREIATTEST_BYPASS_HEADER: Header containing the shared secret to bypass the verification process. Helpfull for debugging
  • DREIATTEST_APPLE_APPID: Header containing the apple app id
  • DREIATTEST_GOOGLE_APK_NAME: Header containing the google apk name
  • DREIATTEST_GOOGLE_DECRYPTION_KEY: A Base64 encoded AES key secret as described here
  • DREIATTEST_GOOGLE_VERIFICATION_KEY: A Base64 encoded public key as described here
  • DREIATTEST_PRODUCTION: Indicating if we're in a production environment or not. Some extra verifications are made if this is true. Those are described in the pyttest readme.
  • DREIATTEST_GOOGLE_APK_CERTIFICATE_DIGEST: SHA256 hex of the Google APK Certificate
  • DREIATTEST_PLUGINS: List of classes implementing BasePlugin - gives you the option to handle extra verification
  • DREIATTEST_BYPASS_SECRET: DANGERZONE If this is set and DREIATTEST_BYPASS_HEADER is sent by the client, the veirification is skipped.

You can find the default value (if any) for each of them in the settings.py

Usage

All that's left is to add the signature_required view decorator.

from dreiattest.decorators import signature_required

@signature_required()
def demo(request: WSGIRequest):
    return JsonResponse({'foo': 'bar'})

Error Handling

The main two exceptions that should be handled by you are PyAttestException and DreiAttestException. dreiattest ships with the HandleDreiattestExceptionsMiddleware you could use if you don't want to handle those errors by yourself. The middleware only catches those two exception classes and returns a JsonResponse with status code 400.

MIDDLEWARE = [
    ...
    'dreiattest.middlewares.HandleDreiattestExceptionsMiddleware',
]

Typical Flow

  1. CLIENT (could be android or google) makes a request to dreiattest/nonce with a device session identifier to obtain a server nonce. The session id as well as the nonce are persisted on the server.
  2. CLIENT sends an attestation to dreiattest/key. This request again holds the device session identifier as well as the nonce from step 1. The nonce will be marked as "used" and used to verify the attestation. The public key from the client is then assigned to the device session and also persisted in the database.
  3. CLIENT sends a request to any view decorated with @signature_required. The request holds an assertion which will be verified before the actual django view is executed.

Publishing / Contributing

  • Create a branch from master for possible pull requests
  • To publish a new version to pypi:
    • Update the version in __version__.py
    • Trigger $ pipenv run upload - This will automatically create and push the correct tag in git and upload that version to pypi

django-dreiattest's People

Contributors

kaiwidmer avatar lailabecker avatar melbic avatar sidneywidmer avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

django-dreiattest's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.