Databunker project was born to give a simple solution for any organization to become privacy by design compliant and GDPR compliant and that is where the product really shines.
It’s architecture design ideas crystallize is a simple solution that provides organizations an easy to use API to store and retrieve personal customer records. The product itself takes to care for most of the GDPR requirements.
For example, upon user record creation request, Databunker knows to extract email, phone, login name, and build an encrypted search index. Using this information, the service can grant the user temporary access to view, and initiate personal information change or manage privacy consents.
Databunker product gives your customers passwordless access to the Databunker privacy portal. We send your customer a one-time login code by SMS or email to give them access to their account at Databunker.
The service live demo is available at https://demo.databunker.org/
Demo user credentials:
The easiest way to get started with Databunker is to run it as a Docker container:
docker run -p 3000:3000 -d --rm --name dbunker securitybunker/databunker demo
This command starts a local container with a DEMO
root access key. You can use it for the development or testing purposes. For a production installation, follow this installation guide.
You can interact with Databunker using:
3000
: localhost:30003000
: localhost:3000curl -s http://localhost:3000/v1/user -X POST -H "X-Bunker-Token: DEMO" \
-H "Content-Type: application/json" \
-d '{"first":"John","last":"Doe","login":"john","phone":"4444","email":"user@gmail.com"}'
curl -s -H "X-Bunker-Token: DEMO" -X GET http://localhost:3000/v1/user/email/user@gmail.com
curl -s -H "X-Bunker-Token: DEMO" -X GET http://localhost:3000/v1/user/login/john
For a full list of commands, follow the API document.