Automated reconnaissance and penetration testing framework. Built for red teamers by a red teamer.
# Automated recon pipeline
async def recon_target(target):
await gather(
dns_enum(target),
subdom_scan(target),
port_scan(target),
tech_detect(target)
)
return AttackSurface(target)