fix some readmes, added some inits, partially done writing the scapy scripts

This commit is contained in:
Mari Wahl 2014-12-24 09:53:20 -05:00
parent ffb92e0614
commit d29d4e115d
21 changed files with 107 additions and 39 deletions

View file

@ -0,0 +1,19 @@
#!/usr/bin/env python
__author__ = "bt3"
from scapy.all import *
HOST ='www.google.com'
def tr():
print traceroute(HOST)
def pi():
print arping('192.168.1.114')
#pi()
#tr()
print sniff(iface="wlp1s0",prn=lambda x:x.sprintf("{Dot11Beacon:%Dot11.addr3%\t%Dot11Beacon.info%\t%PrismHeader.channel%\tDot11Beacon.cap%}"))