mirror of
https://github.com/autistic-symposium/sec-pentesting-toolkit.git
synced 2025-05-02 14:56:10 -04:00
fix some readmes, added some inits, partially done writing the scapy scripts
This commit is contained in:
parent
ffb92e0614
commit
d29d4e115d
21 changed files with 107 additions and 39 deletions
19
Network_and_802.11/scapy/tools.py
Normal file
19
Network_and_802.11/scapy/tools.py
Normal 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%}"))
|
Loading…
Add table
Add a link
Reference in a new issue