# aws-nmap **Repository Path**: mirrors_sporkmonger/aws-nmap ## Basic Information - **Project Name**: aws-nmap - **Description**: Scan Public/Elastic IPs on AWS with nmap. - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-26 - **Last Updated**: 2026-07-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ======= aws-nmap ======= This package provides a simple way to nmap over all public/elastic IPs on an AWS account. Install: $ pip install aws-nmap Usage: $ aws-nmap -sC -sV Alternatively you can: $ aws ec2 describe-instances --query "Reservations[*].Instances[*].PublicIpAddress" --output=text > /tmp/publicips.txt $ nmap -iL /tmp/publicips.txt -sC -sV Assuming you want to look that up every time.