Networking Tools scripts - Top 4 Download

Networking Tools script downloads

TransConnect

This is a program that allows users behind a HTTP proxy like squid to use applications like telnet,ssh, irc, fetchmail etc as if they were directly connected to the internet. ...

Easy Firewall Generator

This program generates an iptables firewall script for use with the 2.4 or later linux kernel. It is intended for use on a single system connected to the Internet or a gateway system for a private, internal network.It provides a range of options, but is not intended to cover every possible ...

libASSA

libASSA is a UNIX/Linux Object-Oriented C networking (BSD sockets) library and application framework based on Adaptive Communication Patterns. libASSA is designed to improve productivity of writing network-oriented client/server applications. ...

Module For Running Simple Proxies

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 stopped. ...
Python

Pinhole

Pinhole is a simple network utility that forwards a port to the host specified. The optional newport parameter may be used to redirect to a different port on the target host. Uses threads gratuitously. ...
Python

Refining an FTP Site List

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 that are not down. The isFTPSiteUp() function checks a particular FTP site to see if it is up. ...
Python

Simple SNTP client

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. ...
Python

Network Ping Pong using Twisted Prespective Broker

This is a simple program using Twisted Perspective Broker and showing use of Twisted Deferreds and other callback mechanisms. It starts the server without arguments and the client with the host name of the server. ...
Python

Using wxPython with Twisted Python

When using wxPython with Twisted in the way described in the Twisted docs wxPython will be stuck on menus and modal dialogs. This is due to the fact that wxPython uses private eventloops for menus and modal dialogs. This script is simple and works nicely on platforms using the select reactor. ...
Python

wx twisted support using threads

This module enables wxPython and twisted to peacefully co-exist. It does this by running wxPython in the main thread and starting a secondary thread for the twisted library. It also provides a set of tools to enable communication between the two librarys. ...
Python

Python portscanners

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

Simple ldap with python

Simple ldap with python script shows some example of ldap library use with python. ...
Python

Simplest HTTPS with basic proxy authentication

This is just about the most simple snippet of how to do proxy authentication with SSL using python. The current homepage only supports ssl through a proxy _without_ authentication. This example does basic proxy auth that a lot of proxy servers can support. ...
Python

When to not just use socket close

This script implements a "broken" client/server to show how sock.shutdown can be more useful than a simple socket.close operation. ...
Python

Asynchronous port forwarding

This script forward the TCP traffic from your machine to another host, and back in the the other way. It uses asynchronous socket thanks to ye olde asyncore module, which was used by Zope up until recently (they integrated the Twisted reactor). As a consequence, it should be able to handle a ...
Python

Wake On Lan

This script switches on remote computers using WOL. ...
Python

IPv6 Multicast

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. ...
Python

Remote Shutdown on Windows

Remote Shutdown on Windows script shuts down or reboots a remote computer. ...
Python

Get the MAC address of a remote computer

This script uses the Internet Protocol Helper functions on Win32 and helps you to find the MAC adress of a remote computer. ...
Python

Get the IP address of a network interface

This script uses the Linux SIOCGIFADDR ioctl to find the IP address associated with a network interface, given the name of that interface, e.g. "eth0". The address is returned as a string containing a dotted quad. ...
Python