mirror of
https://github.com/autistic-symposium/sec-pentesting-toolkit.git
synced 2025-04-26 02:29:07 -04:00
23 lines
394 B
Python
23 lines
394 B
Python
#!/usr/bin/env python
|
|
|
|
__author__ = "Mia Stein"
|
|
|
|
from scapy.all import *
|
|
|
|
HOST ='www.google.com'
|
|
|
|
def tr():
|
|
print traceroute(HOST)
|
|
|
|
def pi():
|
|
print arping('192.168.1.114')
|
|
|
|
def fuzz_dns():
|
|
send(IP(dst='192.168.1.114')/UDP()/fuzz(DNS()), inter=1,loop=1)
|
|
|
|
def fuzz_tcp():
|
|
send(IP(dst="192.168.1.114")/fuzz(UDP()/NTP(version=4)), loop=1)
|
|
|
|
if __name__ == '__main__':
|
|
fuzz_tcp()
|