mirror of
https://github.com/autistic-symposium/sec-pentesting-toolkit.git
synced 2025-04-27 02:59:08 -04:00
8 lines
132 B
Python
Executable File
8 lines
132 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
__author__ = "bt3"
|
|
|
|
from scapy.all import *
|
|
|
|
send(IP(dst='192.168.1.114')/UDP()/fuzz(DNS()), inter=1,loop=1)
|