This site is the archived OWASP Foundation Wiki and is no longer accepting Account Requests.
To view the new OWASP Foundation website, please visit https://owasp.org

ESAPI Python Readme

From OWASP
Revision as of 18:51, 10 March 2010 by Deleted user (talk | contribs) (Created page with '---- '''OWASP ESAPI - Python Edition''' <br>'''Python Edition of OWASP ESAPI v1 BETA Has Been Released''' I'm pleased to announce that a beta of version 1 has been released. To…')

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

OWASP ESAPI - Python Edition


Python Edition of OWASP ESAPI v1 BETA Has Been Released

I'm pleased to announce that a beta of version 1 has been released. To get a copy, go to our Google Code site to clone the Mercurial repository or download an archive. Documentation for the API is available here.

This beta has been tested on Python 2.6 on Windows and Linux, but other versions have not been tested. If you take a look, I would appreciate it if you would send me an email about your experience.


README

Requirements:

If you have setuptools installed, you should be able to install all except KeyCzar and Visual C++ 2008 by doing 'easy_install <packagename>' in a shell or command prompt.


Installation:

  • Install any of the missing dependencies listed above.
  • Extract the ESAPI on Python package.
  • Add the extracted folder to your Python path. One way to do this is to create a text file, such as 'esapi.pth', in your Python installation's Lib\site-packages folder. Copy the path of the folder you extracted into this text file. The path should have the 'esapi' folder inside.
  • Start a new interactive Python console and enter 'import esapi'. If you get no output, it ran successfully. If you got "ImportError: No module named esapi", double check the step above.
  • By default, ESAPI is set up for Linux. If you are running ESAPI on Windows, you will need to modify the Encryptor_KeysLocation and Executor_WorkingDirectory settings in esapi/conf/settings.py. You should use forward slashes in the paths.
  • See "To set up a crypto keyring" to generate the keys necessary for crypto.
  • Run the unit tests by opening a shell or command prompt in esapi/test and running runTests.bat or runTests.sh, depending on your platform. If you get around 7 errors relating to crypto, please ensure you have followed the steps under "To set up a crypto keyring".
  • Note: Running all tests may appear to block or pause, particularly on Windows. This may be be due to exhaustion of the entropy pool. If it blocks, try moving the mouse, typing, or generating some disk activity.


To adapt and integrate with your project:

  • You can use as much or as little of ESAPI as you would like. You'll want to do a 'from esapi.core import ESAPI' and use the methods that class provides.


To set up a crypto keyring:

  • Select a root directory for your keyring, like /esapi/keyring/, and set Encryptor_KeysLocation in settings.py to this string if you have not already.
  • Open a python interactive shell and execute:
    • from esapi.core import ESAPI
    • ESAPI.encryptor().gen_keys()
  • Modify esapi/conf/settings.py according to the output by replacing the Encryptor_MasterSalt line with the one given.


To enable internationalization:

  • Set the 'LANGUAGE' environment variable with your locale
  • On *nix: export LANGUAGE=en_US
  • On Windows: set LANGUAGE=en_US
  • Please note that as of this writing, no translation files are available. A GNU gettext .po file is available in esapi/conf/locale .