Scapy DHCP listener in Python
This script listens for DHCP Request and Discover packets on the LAN using scapy. A little background on the DHCP protocolHosts issue a DHCP Discover packet to destination 255.255.255.255 to request...
This script listens for DHCP Request and Discover packets on the LAN using scapy. A little background on the DHCP protocolHosts issue a DHCP Discover packet to destination 255.255.255.255 to request...
This script listens for ARP request packets using scapy to learn the IP and Mac Address of LAN hosts. A little background on the ARP protocolARP is the protocol that hosts use to discover the mac...
This python code will take a list of RSS newsfeed urls, fetch and combine all the news headlines into one list. The feedparser package is required, install it with the following command. pip install...
I've been reading great things about PHP 7, specifically the PHP7 infographic created by Zend. So today I decided to create a ubuntu droplet and go to work compiling php7 from source. I ran into a...