This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
MAX=200 # maximum wait between frames | |
DELAY=0.2 # speed things up a bit | |
TIMING=$1 | |
SCRIPT=$2 | |
W=$WINDOWID # Note: not alway present. Terminator not, xterm it is. | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
''' | |
https://www.tutorialspoint.com/execute_python_online.php | |
https://hpd.gasmi.net/ | |
https://gist.github.com/olijf/ | |
''' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
""" | |
Create UDP packet containing RESET. | |
""" | |
from scapy.all import * | |
from binascii import hexlify | |
packet = IP(src='192.168.0.5', dst='192.168.0.11')/UDP(dport=17861, sport=17861)/Raw('RESET') |