https://github.com/kost/docker-nmap
A Docker container for Nmap
https://github.com/kost/docker-nmap
Last synced: 7 months ago
JSON representation
A Docker container for Nmap
- Host: GitHub
- URL: https://github.com/kost/docker-nmap
- Owner: kost
- License: mit
- Created: 2015-06-01T04:11:13.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-06-05T14:03:10.000Z (over 10 years ago)
- Last Synced: 2025-03-26T04:42:43.729Z (9 months ago)
- Size: 129 KB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# k0st/nmap
A Docker container for Nmap (23.95 MB).
Image is based on the [gliderlabs/alpine](https://registry.hub.docker.com/u/gliderlabs/alpine/) base image
## Docker image size
[](https://imagelayers.io/?images=k0st/nmap:latest 'latest')
## Docker image usage
```
docker run k0st/nmap [Nmap options]
```
## Examples
Run scan on scanme.nmap.org using nmap -A flag:
```
docker run k0st/nmap -A scanme.nmap.org
```
Run scan on scanme.nmap.org using nmap -sT -T4 flag:
```
docker run k0st/nmap -sT -T4 scanme.nmap.org
```
Automatically delete container after scanning:
```
docker run --rm=true k0st/nmap -A scanme.nmap.org
```
Use host data dir (/path/to/output/dir/on/host) for output of nmap scan:
```
docker run -v /path/to/output/dir/on/host:/work:rw k0st/nmap -oA scan -A scanme.nmap.org
```