Sanitized sensitive information from your database dumps
Project description
django-sanitized-dump
Sanitize sensitive information from your database dumps 💩
Supports:
- PostgreSQL
- MySQL
Getting started
pip install django-sanitized-dump
orpip install django-sanitized-dump[MySQL]
if you use MySQL- Add
sanitized_dump
toINSTALLED_APPS
- Initialize config file:
./manage.py init_sanitizer
- Check your newly created
.sanitizerconfig
file and modify the sanitation strategy to fit your requirements. - Run
./manage.py check_sanitizerconfig
to verify that your.sanitizerconfig
includes all models and fields - Get sanitized database dump:
./manage.py create_sanitized_dump > dump.sql
DB Sanitation
Heavy lifting of the DB sanitation is done by: https://github.com/andersinno/python-database-sanitizer
Configuration
Configuration file is used to define a strategy on how to sanitize your data. Strategy defines a sanitation function for each model field.
Example config
config:
addons:
- "ai-sanitizers"
- "some-other-lib"
strategy:
user:
first_name: "name.first_name"
last_name: "name.last_name"
education:
created: null
modified: null
id: null
field: "education.field"
school: "education.school"
started: "datetime.datetime"
credits: null
information: "string.loremipsum_preserved"
file_file: null
Example custom sanitizers
# /sanitizers/name.py
def sanitize_first_name(value):
return faker.first_name()
def sanitize_last_name(value):
return faker.last_name()
# /sanitizers/education.py
def sanitize_field(value):
return "Some field"
def sanitize_schoo(value):
return "My school"
Validating sanitizer return value
Note: This should not be done in the initial implementation of the sanitizer but is up to the sanitizer functions. This is just a nice to have but not of a high priority.
Check that the returned value is of the same type as the argument value passed to the sanitizer. For instance, if a MySQL DATETIME value is passed to the sanitizer, a MySQL DATETIME value shoud be returned as well.
Configuration method resolution order
- Custom sanitizers inside ./sanitizers
- Addon sanitizers (
config.addons
) - Core sanitizers
Django Management Commands
Sanitized Dump
./manage.py create_sanitized_dump > dump.sql
- Warn about unhandled fields
- Creates a database dump (
mysqldump
/pgdump
) - Run sanitizer
Check Sanitized Dump
./manage.py check_sanitizerconfig
- Returns an error code if there are unhandled database fields
Check can be used in CI environments for detecting changes in models, that are not present in sanitizer configuration.
Init Sanitizer
./manage.py init_sanitizer
- Create configuration from current database state
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
Built Distribution
Hashes for django-sanitized-dump-1.0.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | d43b6d104f45cf3b542b53143d28abffead5b854b3da0f086809cedef74bc714 |
|
MD5 | a526fbda4f9e69bf13454df2fbe4bdcd |
|
BLAKE2b-256 | 7216826c2508362b218ba12d1743048f0a6931ce891565d434d824ddc25043f0 |
Hashes for django_sanitized_dump-1.0.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | acf87598ccf4f415ea6967ed965be771738327fa4231eb4f312afea565f7b730 |
|
MD5 | c5e977412432eed603a7a50b97614688 |
|
BLAKE2b-256 | d57466b805a287fffaccdaf7fd59b452a674fe63643c9d83aa5de77df9db64fd |