Networking Tools scripts - Top 4 Download

Networking Tools script downloads

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

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

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

Wake On Lan

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

Remote Shutdown on Windows

Remote Shutdown on Windows script shuts down or reboots a remote computer. ...
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

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

Data over ICMP

This script provides you a simple beta-tool that fills the DATA field of an address packet with strings, then send the packet(s) to an host specified. You can observe the strings received by putting an ICMP sniffer on the remote machines. ...
Python

Authenticate with twisted web xmlrpc

These classes subclass several of the culprits in twisted.web.xmlrpc that are responsible for not being able to make autenticated XML-RPC calls. ...
Python

Simple session handling example

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 easily they can be used for session management. ...
Python

AdvDSN

The component allows you to add or delete ODBC Datasource Names. Works with all ODBC supported databases. Including MS-SQL Server, MS-Access, Oracle, and MySQL ODBC drivers. Complete DSN management. Access to the component can also be turned on or off for any website on the server, thus making it ideal for ...
ASP.NET