Skip to main content

Obscure numerical IDs in URLs

Reason this release was yanked:

Incorrect version number

Project description

=======================================
Flask-Obscure
=======================================

.. currentmodule:: flask_obscure

.. toctree::
:maxdepth: 2
:hidden:

self
api

Showing a steadily increasing sequence of integer IDs leaks information to customers, competitors, or malicious entities about the number and frequency of customers, orders, etc. Some URL example include::

/customer/123
/order/308

This module impliments routing variable converters in `Flask`_ and `Jinja2`_ filters to obscure sequential integer IDs.
This is based on the `Obscure`_ python module, which is installed automagically when you install this module.

Features
=======================================

* Automatically obscures sequential integer IDs in the variable
part of a URL when using :func:`flask.url_for`
* Automatically converts obscured IDs back to your sequential
integer IDs in the parameter of the function bound to the URL.
* Jinja filters automatically available.
* Provide five different converters and filters.


Converters and Filters
=======================================

There are five new converters: ``num``, ``hex``, ``b32``, ``b64``, and ``tame``.
Lets assume we are using :func:`flask.url_for` to create the URLs for two sequential customer IDs.

``num``
Non-sequential numbers::

/customer/3303953358
/customer/1151314503

``hex``
Hexadecimal displays in eight characters::

/customer/c4ee53c3
/customer/449faa47

``b32``
Base32 displays in seven characters::

/customer/YTXFHTQ
/customer/ISP2URY

``b64``
Base64 URL safe displays in six cahracters::

/customer/xO5Tzg
/customer/RJ-qRw

``tame``
Is a Base32 with a rotated, alternate alphabet.
The letters 'I', 'O', and 'U' are replaced with the numbers '8', '9', and '0' to avoid common offensive words.
Otherwise, it performs just like Base32.


Install
=======================================

Pip is our friend. It will also install the `Obscure`_ module as well. ::

$ pip install flask_obscure

Configure
=======================================

The :class:`Obscure` class needs a ``salt`` or random number to make your obscured number sequence unique. Pick any 32-bit number or use the following snippit to generate one for you::

python -c "import os; print(int(os.urandom(4).encode('hex'),16))"

:class:`Obscure` uses the value ``OBSCURE_SALT`` in the flask configuration file if not given as the second parameter to either the constructor or :meth:`Obscure.init_app`.

.. warning::
If your source goes to a public repository, you will want
to place ``OBSCURE_SALT`` in the :class:`flask.Flask` instance path.

Usage
=======================================

Import the class :class:`Obscure` and initialize the with the :class:`flask.Flask` appliation by either using the constructor

.. code-block:: python
:emphasize-lines: 5

from flask import Flask
from flask.ext.obscure import Obscure

app = Flask(app)
obscure = Obscure(app)

or by using delayed initialization with :meth:`Obscure.init_app`

.. code-block:: python
:emphasize-lines: 2

obscure = Obscure()
obscure.init_app(app)


URL Routing Variables
---------------------------------------

When creating your routes with variables, you have five converters.
The converter is similar to any of the other built in coverters.
It takes the obscured ID given in the variable portion of the URL and converts it to your sequential ID in the callable bound to the URL.

Lets look at an example using ``num`` as the converter in the route.

.. code-block:: python

@app.route('/customers/<num:cust_id>', endpoint='get-cust')
def get(cust_id):
# flask.request.url is '/customers/3303953358'
# cust_id is the sequential ID of 1
customer = get_customer_by_id(cust_it)

url = flask.url_for('get-cust', cust_id=customer.customer_id)
# when you create the URL, it is automatically obscured
# /customers/3303953358


Jinja2 Filters
---------------------------------------

The URL is not the only place you can have leaking interger IDs. It can
also happen in the data returned from your routing function. If you are
using Jinja2 for templating, those same converters are available as filters.

.. code-block:: html+jinja

<h1>Invoice #{{ invoice_number|tame }}</h1>

Within Code
---------------------------------------

To obscure numbers within your code, use the methods of the :class:`flask_obscure.Obscure` instance object, which in turn is inherited from the python module `Obscure`_. Assuming we used one of the code blocks from `configure`

.. code-block:: python

visible_customer_id = obscure.encode_tame(customer_id)

Contribute
=======================================

| Issue Tracker: `http://github.com/jidn/flask-obscure/issues`
| Source Code: `http://github.com/jidn/flask-obscure`


.. Indices and tables
=======================================

* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`

.. _Obscure: http://github.com/jidn/obscure
.. _Flask: http://flask.pocoo.org/
.. _Jinja2: http://jinja.pocoo.org/

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

Flask-Obscure-1.0.tar.gz (5.3 kB view hashes)

Uploaded Source

Built Distribution

Flask_Obscure-1.0-py2-none-any.whl (8.1 kB view hashes)

Uploaded Python 2

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