Security Systems



Dictionary with attribute-style access Download

Saturday, May 24th, 2008

This script defines a dictionary with attribute-style access. It maps attribute access to the real dictionary.

It can be easier to read and type data access us

Get names of all "up" network interfaces Download

Wednesday, May 21st, 2008

This script uses the SIOCGIFCONF ioctl to obtain a list of interfaces and extracts those names, returning them in a list of strings.

Port Forwarding Download

Monday, May 19th, 2008

This script allows you to do port forwarding.
Download from:

Doctester for your documentation Download

Wednesday, May 14th, 2008

The doctester extracts code from stdin and tests it using the doctest module in the standard library.

It can be invoked from the command line, but it is best calle

web2ldap Download

Tuesday, May 13th, 2008

web2ldap is a full-featured web-based LDAPv3 client.
Features:

generic LDAPv3 client which does not make any assumptions about

md5diff Download

Sunday, May 11th, 2008

This script reads the content of the two md5 files in two lists. It will compare and differentiate the two md5 files.

xmlrpc server/client Download

Sunday, May 11th, 2008

xmlrpc server/client script does cookie handling and supports basic authentication. The client sends a request with basic authentication and the server on successful authentica

Python Cryptography Toolkit Download

Saturday, May 10th, 2008

The Toolkit is a collection of cryptographic algorithms and protocols, implemented for use from Python. Among the contents of the package there are:

Cross-site scripting (XSS) defense Download

Monday, May 5th, 2008

This script cleanses user input of potentially dangerous HTML or scripting code that can be used to launch "cross-site scripting" ("XSS") attacks, or r

Hamming distance Download

Sunday, May 4th, 2008

This script will calculate the Hamming distance (or number of differences) between two strings of the same length.