Raw Network access in Python

Ever think of sniffing or forging packet in Python ? I spent a part of time hacking some UDP packet for my work and building Ethercap rules is a bit hard now you can do this with : http://oss.coresecurity.com/projects/pcapy.html http://oss.coresecurity.com/projects/impacket.html

tag: ,

Last PPP Ip .

#!/usr/bin/python “”" A really simple piece of code that i use to track down my dynamics IP (assigned by my isp while using ppp). “”" filename = ‘/home/soif/Perso/Data/lastIp.sqlite’ import sys,os,time try: import sqlite except ImportError: print “Please install python sqlite … Continue reading

tag: , ,