This talk is for all the nmap lovers out there! Anyone familiar with nmap knows that it is great for ad-hoc scanning, but doesn't scale when it comes to scheduling, organizing scan results, and automation in general. Scantron solves that and rests on the shoulders of previous frameworks like dnmap, minions, and rainmap.Scantron is an open-sourced distributed nmap / masscan scanner comprised of two components. The first is a Master node that consists of a web front end used for scheduling scans and storing nmap / masscan scan targets and results. The second component is the scanning agents that pull scan jobs from Master and conduct the actual nmap / masscan scanning.A majority of the application's logic is purposely placed on Master to make the agent(s) as "dumb" as possible. All nmap target files and nmap results reside on Master and are shared through a network file share (NFS) leveraging SSH tunnels. The agents call back to Master periodically using a REST API to check for scan tasks and provide scan status updates.Scantron was developed inhouse by the Threat and Vulnerability Analysis team at Rackspace to automate penetration testing scanning and provide network segmentation validation.