Networking Tools



PyHeartbeat Download

Tuesday, June 3rd, 2008

PyHeartbeat detects inactive computers by sending and receveing "heartbeats" as UDP packets on the network, and keeping track of how much time passed since each known

Indices of a SubString in a Given String Download

Monday, June 2nd, 2008

This script uses string.index(sub) function which returns a list of indices of ALL occurances of a substring in the string.

Read a file text backwards Download

Saturday, May 31st, 2008

This script provides a class which will read a text file in reverse… It basically reads a block of data from the end of the file as a list and keeps popping items off of that

A quick and dirty Client and Server Socket class Download

Friday, May 30th, 2008

A quick and dirty Client and Server Socket class presents you a client-server model.
Download from:

Colormap Download

Friday, May 30th, 2008

This script contains some functions that when given a magnitude ‘mag’ between cmin and cmax, return a colour tuple (red, green, blue) on a 0 to 255 scale. The tuple can co

An IPv4 class Download

Wednesday, May 28th, 2008

This script is a complete IPv4 class that can represent a host or network, and iterate over networks. Supports slash notation, stringifying, and range generation (among ot

Using the Win32 IPHelper API Download

Wednesday, May 28th, 2008

This function will return a list of ports (TCP/UDP) that the current machine is listening on. It’s basically a replacement for parsing netstat output but also serves as a good

BackCrawler Download

Wednesday, May 28th, 2008

BackCrawler is a crude web spider with only one purpose: mercilessly suck the background images from all web pages it can find. Understands frames and redirects, uses MD5 to el

APing Download

Tuesday, May 27th, 2008

APing is the advancthat can execute four type Python from scratch that can execute four type of ICMP probes :
- echo request - address ma :

Simple SNTP client Download

Monday, May 26th, 2008

This script uses the SNTP protocol (as specified in RFC 2030) to contact the server specified in the command line and report the time as returned by that server.