https://github.com/werrett/nmap-cookbook
Simple Chef Cookbook for Nmap - The "Network Mapper"
https://github.com/werrett/nmap-cookbook
Last synced: about 1 year ago
JSON representation
Simple Chef Cookbook for Nmap - The "Network Mapper"
- Host: GitHub
- URL: https://github.com/werrett/nmap-cookbook
- Owner: werrett
- License: mit
- Created: 2014-03-23T02:16:41.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-09-08T04:46:56.000Z (almost 12 years ago)
- Last Synced: 2025-02-16T04:43:54.030Z (over 1 year ago)
- Language: Ruby
- Homepage:
- Size: 148 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Nmap Cookbook
Cookbook to install [Nmap](http://nmap.org/), the "Network Mapper", and friends
(nping, ncat, ...) from source.
Follows a generic Chef [install-from-source method](http://stackoverflow.com/a/8642173).
# Requirements
Requires the following packages on Ubuntu:
* build-essential
* libpcap-dev
* liblua5.1-0-dev
* libpcre3-dev
* libssl-dev
* libstdc++6
Note: Only tested under Ubuntu 12.04 LTS 64-bit.
# Usage
To spin up an Ubuntu install using [Vagrant](http://vagrantup.com).
```
git clone https://github.com/werrett/nmap-cookbook.git nmap-vm
cd nmap-vm
vagrant up --provision
...
vagrant ssh
nmap -v
nmap -sT -F localhost
```
# Attributes
* version - Version of Nmap to install.
* binary - Install location for the Nmap binaries.
* url - URL to pull Nmap source from.
* configure_options - Arguments passed to `configure`.
* make_options - Arguments passed to `make`.
* install_options - Arguments passed to `make install`.
# Author
Jonathan Werrett ()