	-synack.py	3-way handshake
	-ack.py 	arp cache poisoning

To see available functions and commands in scapy, in the console use:
	-ls()		list of functions	
	-lsc()		list of commands


To block outgoing RST packets (needed to complete the manual 3-way handshake) set the following iptables rule:

	iptables -A OUTPUT -s 192.168.56.104 -p tcp --tcp-flags RST RST -j DROP

where 192.168.56.104 is the source IP address.

Scripts are provided as-is. Values may need be changed depending on environment. 

