mirror of
https://github.com/autistic-symposium/sec-pentesting-toolkit.git
synced 2025-05-02 14:56:10 -04:00
scapy scripts (including ddos)
This commit is contained in:
parent
2acc68c3dd
commit
8ca96e0b02
28 changed files with 172723 additions and 125 deletions
9
Network_and_802.11/scapy/tools.py
Executable file → Normal file
9
Network_and_802.11/scapy/tools.py
Executable file → Normal file
|
@ -12,8 +12,11 @@ def tr():
|
|||
def pi():
|
||||
print arping('192.168.1.114')
|
||||
|
||||
#pi()
|
||||
def fuzz_dns():
|
||||
send(IP(dst='192.168.1.114')/UDP()/fuzz(DNS()), inter=1,loop=1)
|
||||
|
||||
#tr()
|
||||
def fuzz_tcp():
|
||||
send(IP(dst="192.168.1.114")/fuzz(UDP()/NTP(version=4)), loop=1)
|
||||
|
||||
print sniff(iface="wlp1s0",prn=lambda x:x.sprintf("{Dot11Beacon:%Dot11.addr3%\t%Dot11Beacon.info%\t%PrismHeader.channel%\tDot11Beacon.cap%}"))
|
||||
if __name__ == '__main__':
|
||||
fuzz_tcp()
|
Loading…
Add table
Add a link
Reference in a new issue