Networking Tools



Simple session handling example Download

Friday, June 27th, 2008

This script is a very simple session handling example that uses plain Python CGI (tested only under Python 2.2+). Its goal is to show how cookies are set via HTTP and how easil

Python portscanners Download

Monday, June 23rd, 2008

This script presents a couple of multithreaded portscanners. The second one use the Queue module.

Module For Running Simple Proxies Download

Sunday, June 22nd, 2008

Proxies can be useful at times but may not be simple to create and run. This script provides a single class that can build proxy objects capable of being both started and

Change image properties Download

Sunday, June 22nd, 2008

Change image properties code allows you to remove the image border.
Download from:

Getting items in batches Download

Friday, June 20th, 2008

This script is useful when you want to get the items from a sequence (or other iterable) a batch at a time, including a short batch at the end if need be.

Refining an FTP Site List Download

Friday, June 20th, 2008

This script introduces a pair of functions for checking whether FTP sites are up. The refineFTPList() function will take in a list of FTP sites and returns a list of sites

Replacing a portion of a string Download

Thursday, June 19th, 2008

This script allows you to replace a portion of a string at a given position.
Download from:

Split string on capitalized/uppercase char Download

Wednesday, June 18th, 2008

This function accepts a string and returns a string with whitespace(one space) inserted between words with leading capitalized letters.

Change line endings Download

Wednesday, June 18th, 2008

When working between platforms, it is often necessary to convert the line endings on files for them to work, especially when it comes to code. Pass Unix Python code with and it

IPv6 Multicast Download

Tuesday, June 17th, 2008

IPv6 can be tricky in many ways, and multicast makes it even more fun. This script is intended to give you a working implementation to start from.