Skip to main content

Django app to obfuscate text data.

Project description

https://img.shields.io/pypi/v/django-db-obfuscator.svg https://img.shields.io/travis/oesah/django-db-obfuscator.svg Documentation Status Updates

Django app to obfuscate text data. Originally develop by Dipcode Software.

Compatibility

Tested with python 3.6, 3.7, 3.8 and Django 1.11 & 2.2: Travis CI

How to install

To install the app run:

$ pip install django-db-obfuscater

or add it to the list of requirements of your project.

Then add ‘obfuscator’ to your INSTALLED_APPS.

INSTALLED_APPS = [
    ...
    'obfuscator',
]

Example usage

On you django project settings, configure the model names and field names to be obfuscated:

OBFUSCATOR = {
    'FIELDS': {
        'app_label.ModelClass1': ['field1', 'field2', 'field3'],
        'app_label.ModelClass2': ['field1'],
        // ...
    }
}

Run the management command to start obfuscation:

$ python manage.py obfuscate

You can run the management command passing as arguments: a model class path and a list of fields to obfuscate (thus will ignore FIELDS setting):

$ python manage.py obfuscate --model=app_label.ModelClass1 --fields=field1, field2, field3

Settings reference

OBFUSCATOR_CLASS

Default: obfuscator.utils.ObfuscatorUtils

Path to class where obfuscator methods are defined. By default, the class define tow obfuscator methods: * text - Obfuscate simple text data, respecting max-length field parameter; * email - Obfuscate email data. Only text before @ is obfuscated, respecting max-length field parameter.

This class also define an obfuscate method. This method use fields mapping (see FIELDS_MAPPING setting) to route the field type with the obfuscate method.

You can redefine this class by subclassing the default class and changing this setting to point to your class.

FIELDS_MAPPING

Default:

OBFUSCATOR = {
    'FIELDS_MAPPING': {
        models.CharField: 'text',
        models.TextField: 'text',
        models.EmailField: 'email',
        models.IntegerField: 'number',
        models.URLField: 'text',
        // ...
    }
}

Map django model field types with obfuscator methods.

FIELDS

Default: {}

Fields to be obfuscated and respective model class path. Must be a dict with keys as python dot notation to path where the models are declared and the values must be declared as lists of model fields.

If no value defined, the management command will do nothing.

Example:

OBFUSCATOR = {
    'FIELDS': {
        'contenttypes.ContentType': ['model', 'label'],
        // ...
    }
}

License

MIT license, see the LICENSE file. You can use obfuscator in open source projects and commercial products.

TODO

  • add logic to handle superusers, if needed

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-db-obfuscator-0.5.1.tar.gz (12.7 kB view details)

Uploaded Source

Built Distribution

django_db_obfuscator-0.5.1-py2.py3-none-any.whl (10.9 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file django-db-obfuscator-0.5.1.tar.gz.

File metadata

  • Download URL: django-db-obfuscator-0.5.1.tar.gz
  • Upload date:
  • Size: 12.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.6.7

File hashes

Hashes for django-db-obfuscator-0.5.1.tar.gz
Algorithm Hash digest
SHA256 62cd3261193f55e3436a53680f7662505df9b7441879ea107db6b7c8a1c650ec
MD5 a07ded4eecd4d4f2b24177fe10949fe6
BLAKE2b-256 c97616f38cebeae72c2038f448a0cf6f95306cb5a1db9b889a1eb2ee88212f9e

See more details on using hashes here.

File details

Details for the file django_db_obfuscator-0.5.1-py2.py3-none-any.whl.

File metadata

  • Download URL: django_db_obfuscator-0.5.1-py2.py3-none-any.whl
  • Upload date:
  • Size: 10.9 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.6.7

File hashes

Hashes for django_db_obfuscator-0.5.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 33ca42429f188e48214988a320311f3929ff6940a2708cc1dd83d0769001ec4c
MD5 d51dc4e5f000de0e3d9db855bf3cf12d
BLAKE2b-256 8a81728d590a59f1ec172d8dcbd5e03907c5b7b17a3f15d0cb9a453eec3d4bad

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page