Downloads:
560,215
Downloads of v 7.31.0.20161213:
1,567
Last Update:
13 Dec 2016
Package Maintainer(s):
Software Author(s):
- Fyodor
Tags:
nmap foss cross-platform port scanner network infosec- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Nmap
This is not the latest version of Nmap available.
- 1
- 2
- 3
7.31.0.20161213 | Updated: 13 Dec 2016
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
560,215
Downloads of v 7.31.0.20161213:
1,567
Maintainer(s):
Software Author(s):
- Fyodor
Nmap 7.31.0.20161213
This is not the latest version of Nmap available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Fyodor. The inclusion of Fyodor trademark(s), if any, upon this webpage is solely to identify Fyodor goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Nmap, run the following command from the command line or from PowerShell:
To upgrade Nmap, run the following command from the command line or from PowerShell:
To uninstall Nmap, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download nmap --internalize --version=7.31.0.20161213 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade nmap -y --source="'INTERNAL REPO URL'" --version="'7.31.0.20161213'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade nmap -y --source="'INTERNAL REPO URL'" --version="'7.31.0.20161213'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install nmap
win_chocolatey:
name: nmap
version: '7.31.0.20161213'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'nmap' do
action :install
source 'INTERNAL REPO URL'
version '7.31.0.20161213'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller nmap
{
Name = "nmap"
Version = "7.31.0.20161213"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'nmap':
ensure => '7.31.0.20161213',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 13 Dec 2016.
Nmap ("Network Mapper") is a free and open source utility for network discovery and security auditing. Many systems and network administrators also find it useful for tasks such as network inventory, managing service upgrade schedules, and monitoring host or service uptime. Nmap uses raw IP packets in novel ways to determine what hosts are available on the network, what services (application name and version) those hosts are offering, what operating systems (and OS versions) they are running, what type of packet filters/firewalls are in use, and dozens of other characteristics. It was designed to rapidly scan large networks, but works fine against single hosts. Nmap runs on all major computer operating systems, and official binary packages are available for Linux, Windows, and Mac OS X. In addition to the classic command-line Nmap executable, the Nmap suite includes an advanced GUI and results viewer (Zenmap), a flexible data transfer, redirection, and debugging tool (Ncat), a utility for comparing scan results (Ndiff), and a packet generation and response analysis tool (Nping).
Features
- Host discovery – Identifying hosts on a network. For example, listing the hosts that respond to TCP and/or ICMP requests or have a particular port open.
- Port scanning – Enumerating the open ports on target hosts.
- Version detection – Interrogating network services on remote devices to determine application name and version number.
- OS detection – Determining the operating system and hardware characteristics of network devices.
- Scriptable interaction with the target – using Nmap Scripting Engine (NSE) and Lua programming language.
$ErrorActionPreference = 'Stop'
$packageName = 'nmap'
$softwareNamePattern = 'Nmap *'
[array] $key = Get-UninstallRegistryKey $softwareNamePattern
if ($key.Count -eq 1) {
$key | % {
$packageArgs = @{
packageName = $packageName
silentArgs = "/x86=0 /S"
fileType = 'EXE'
validExitCodes = @(0)
file = ''
}
$packageArgs.file = "$($_.UninstallString.Replace(' /x86=0', ''))" #"C:\Program Files\OpenSSH\uninstall.exe" /x86=0
Uninstall-ChocolateyPackage @packageArgs
}
}
elseif ($key.Count -eq 0) {
Write-Warning "$packageName has already been uninstalled by other means."
}
elseif ($key.Count -gt 1) {
Write-Warning "$key.Count matches found!"
Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
Write-Warning "Please alert package maintainer the following keys were matched:"
$key | % {Write-Warning "- $_.DisplayName"}
}
md5: 33A1DD1128634B27C302BCC242D66142 | sha1: E738863F723E12A893CC435C6707CE51E2BB942C | sha256: A11E24D481C3CCBDC7AD30AF36F27B1557E5C94CCAC410BB0829EE82DCD3FD9E | sha512: E032EB6F23BDB76A187DA2601819A26638776110B28EB2B7C2162135E18971B9E7371DD9F1C5BE29B7AA223D306F7D651FACAFD7E85B742F055009DA8FC60DEB
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
Package can be verified like this:
1. Go to
x32: https://nmap.org/dist/nmap-7.31-setup.exe
to download the installer.
2. You can use one of the following methods to obtain the SHA256 checksum:
- Use powershell function 'Get-FileHash'
- Use Chocolatey utility 'checksum.exe'
checksum32: A11E24D481C3CCBDC7AD30AF36F27B1557E5C94CCAC410BB0829EE82DCD3FD9E
Using AU:
Get-RemoteChecksum https://nmap.org/dist/nmap-7.31-setup.exe
File 'COPYING' is obtained from:
https://svn.nmap.org/nmap-releases/nmap-7.31/COPYING
Log in or click on link to see number of positives.
- nmap-7.31-setup_x32.exe (a11e24d481c3) - ## / 54
- nmap.7.31.0.20161213.nupkg (6a65eedca162) - ## / 52
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Nmap 7.95.0 | 79101 | Tuesday, April 23, 2024 | Approved | |
Nmap 7.93 | 153205 | Friday, September 2, 2022 | Approved | |
Nmap 7.92.0.20220321 | 34304 | Monday, March 21, 2022 | Approved | |
Nmap 7.92 | 67544 | Sunday, August 8, 2021 | Approved | |
Nmap 7.80 | 97050 | Saturday, August 10, 2019 | Approved | |
Nmap 7.70 | 37626 | Wednesday, April 25, 2018 | Approved | |
Nmap 7.60 | 16563 | Wednesday, August 2, 2017 | Approved | |
Nmap 7.50 | 5226 | Wednesday, June 14, 2017 | Approved | |
Nmap 7.40 | 13262 | Wednesday, December 21, 2016 | Approved | |
Nmap 7.31.0.20161213 | 1567 | Tuesday, December 13, 2016 | Approved | |
Nmap 7.31 | 6173 | Friday, October 21, 2016 | Approved | |
Nmap 7.30 | 2185 | Thursday, September 29, 2016 | Approved | |
Nmap 7.12 | 23111 | Wednesday, March 30, 2016 | Approved | |
Nmap 7.11 | 981 | Tuesday, March 22, 2016 | Approved | |
Nmap 7.10 | 1169 | Thursday, March 17, 2016 | Approved | |
Nmap 7.01 | 3661 | Wednesday, December 9, 2015 | Approved | |
Nmap 7.00 | 559 | Thursday, November 19, 2015 | Approved | |
Nmap 6.201.0.20150711 | 477 | Sunday, July 12, 2015 | Approved | |
Nmap 6.47 | 9497 | Saturday, August 23, 2014 | Approved | |
nmap 6.46 | 1852 | Friday, April 18, 2014 | Approved | |
nmap 6.45 | 720 | Saturday, April 12, 2014 | Approved | |
nmap 6.40 | 1832 | Tuesday, September 10, 2013 | Approved | |
nmap 6.25 | 1440 | Tuesday, January 29, 2013 | Approved | |
nmap 6.0.1 | 807 | Sunday, August 5, 2012 | Approved |
Copyright 1996-2016
-
- chocolatey-core.extension (≥ 1.0.4)
Ground Rules:
- This discussion is only about Nmap and the Nmap package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Nmap, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.