All Projects → censys → nmap-censys

censys / nmap-censys

Licence: GPL-3.0 license
NSE script which leverages the Censys Search API for passive data collection

Programming Languages

lua
6591 projects

Projects that are alternatives of or similar to nmap-censys

active-scanning-techniques
A compilation of network scanning strategies to find vulnerable devices
Stars: ✭ 61 (+79.41%)
Mutual labels:  nmap
hassh-utils
hassh-utils: Nmap NSE Script and Docker image for HASSH - the SSH client/server fingerprinting method (https://github.com/salesforce/hassh)
Stars: ✭ 41 (+20.59%)
Mutual labels:  nmap
Nmap-Reference-Guide
Nmap Reference Guide(Nmap参考指南)
Stars: ✭ 54 (+58.82%)
Mutual labels:  nmap
mmhdan
Calculate fingerprints of a website for OSINT search
Stars: ✭ 35 (+2.94%)
Mutual labels:  censys
Kali-Linux-Tools-With-Python
Hacking Tools
Stars: ✭ 27 (-20.59%)
Mutual labels:  nmap
asnap
asnap aims to render recon phase easier by providing updated data about which companies owns which ipv4 or ipv6 addresses and allows the user to automate initial port and service scanning.
Stars: ✭ 28 (-17.65%)
Mutual labels:  nmap
SaltwaterTaffy
An nmap wrapper library for .NET
Stars: ✭ 44 (+29.41%)
Mutual labels:  nmap
showme
Rapid diagnostic system status tool (performance monitoring, network scanning, mysql performance monitoring, kubectl status)
Stars: ✭ 24 (-29.41%)
Mutual labels:  nmap
Mimir
OSINT Threat Intel Interface - CLI for HoneyDB
Stars: ✭ 104 (+205.88%)
Mutual labels:  nmap
d9scan
Network Scanner with Backdoor Detection, other Nmap resources and syn-protection detection
Stars: ✭ 23 (-32.35%)
Mutual labels:  nmap
massnmap
Scans an internal network using massscan and nmap
Stars: ✭ 18 (-47.06%)
Mutual labels:  nmap
nmap-nse-modules
My collection of nmap nse modules
Stars: ✭ 59 (+73.53%)
Mutual labels:  nmap
nmap-docker-image
Nmap Docker Image
Stars: ✭ 30 (-11.76%)
Mutual labels:  nmap
MassVulScan
Bash script which quickly identifies open network ports and any associated vulnerabilities / Script Bash qui permet d'identifier rapidement les ports réseaux ouverts et les éventuelles vulnérabilités associées.
Stars: ✭ 56 (+64.71%)
Mutual labels:  nmap
Reconky-Automated Bash Script
Reconky is an great Content Discovery bash script for bug bounty hunters which automate lot of task and organized in the well mannered form which help them to look forward.
Stars: ✭ 167 (+391.18%)
Mutual labels:  nmap
ivre
Network recon framework. Build your own, self-hosted and fully-controlled alternatives to Shodan / ZoomEye / Censys and GreyNoise, run your Passive DNS service, collect and analyse network intelligence from your sensors, and much more!
Stars: ✭ 2,712 (+7876.47%)
Mutual labels:  nmap
nmap-nse-scripts
Nmap NSE scripts that have been customised or created
Stars: ✭ 73 (+114.71%)
Mutual labels:  nmap
RedTeam toolkit
Red Team Toolkit is an Open-Source Django Offensive Web-App which is keeping the useful offensive tools used in the red-teaming together.
Stars: ✭ 301 (+785.29%)
Mutual labels:  nmap
ObsidianSailboat
Nmap and NSE command line wrapper in the style of Metasploit
Stars: ✭ 36 (+5.88%)
Mutual labels:  nmap
HostEnumerator
A tool that automates the process of enumeration
Stars: ✭ 29 (-14.71%)
Mutual labels:  nmap

Introduction

NSE script using the Censys Search API, allowing you to passively gather information about hosts.

Installation

Simple place the censys-api.nse script into your nmap scripts folder. e.g:

cp censys-api.nse /usr/share/nmap/scripts/

If nmap is installed on macOS via Homebrew, the scripts folder might instead be located at /usr/local/share/nmap/scripts/.

cp censys-api.nse /usr/local/share/nmap/scripts/

Usage

Invoke the script like you would any other NSE script:

nmap -sn -Pn -n --script censys-api scanme.nmap.org

API Keys

The Censys API ID and secret can be set with the apiid and apisecret script arguments, CENSYS_API_ID and CENSYS_API_SECRET environment variables, or hardcoded in the .nse file itself. You can get free API credentials from https://search.censys.io/account/api.

Saving to a File

The results can be written to file with the outfile script argument censys-api.outfile.

Warning

nmap will still scan the target host normally. If you only want to look up the target in Censys you need to include the -sn -Pn -n flags.

Example Output

$ nmap -sn -Pn -n --script censys-api scanme.nmap.org
Starting Nmap 7.92 ( https://nmap.org ) at 2021-12-03 12:02 EST
Nmap scan report for scanme.nmap.org (45.33.32.156)
Host is up.

Host script results:
| censys-api: Report for 45.33.32.156 ()
| PORT  PROTO  SERVICE  PRODUCT  VERSION
| 22    TCP    SSH      OpenSSH  6.6.1p1
| 80    TCP    HTTP     HTTPD    2.4.7
| 123   UDP    NTP               
|_9929  TCP    UNKNOWN           

Post-scan script results:
|_censys-api: Censys done: 1 hosts up.
Nmap done: 1 IP address (1 host up) scanned in 0.67 seconds

Help

nmap --script-help censys-api.nse
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].