-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
⭐️ nmap provider #4168
base: main
Are you sure you want to change the base?
⭐️ nmap provider #4168
Conversation
This comment has been minimized.
This comment has been minimized.
Test Results3 115 tests +1 3 113 ✅ ±0 1m 36s ⏱️ +14s For more details on these failures, see this check. Results for commit 6b9b283. ± Comparison against base commit 5788fb4. ♻️ This comment has been updated with latest results. |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
f7b3fb6
to
d51bd70
Compare
d51bd70
to
cf05132
Compare
cf05132
to
d4657a4
Compare
Co-authored-by: Tim Smith <tsmith84@gmail.com>
d4657a4
to
6b9b283
Compare
@check-spelling-bot Report🔴 Please reviewSee the 📂 files view, the 📜action log, or 📝 job summary for details. Unrecognized words (9)kqueue Previously acknowledged words that are now absentgibibytes SSPR 🫥To accept these unrecognized words as correct and remove the previously acknowledged and now absent words, you could run the following commands... in a clone of the git@github.com:mondoohq/cnquery.git repository curl -s -S -L 'https://raw.githubusercontent.com/check-spelling/check-spelling/v0.0.22/apply.pl' |
perl - 'https://github.com/mondoohq/cnquery/actions/runs/11179647898/attempts/1' Available 📚 dictionaries could cover words (expected and unrecognized) not in the 📘 dictionaryThis includes both expected items (108) from .github/actions/spelling/expect.txt and unrecognized words (9)
Consider adding them (in with:
extra_dictionaries:
cspell:node/dict/node.txt
cspell:public-licenses/src/generated/public-licenses.txt
cspell:fullstack/dict/fullstack.txt
cspell:php/dict/php.txt
cspell:python/src/python/python-lib.txt To stop checking additional dictionaries, add (in check_extra_dictionaries: '' If the flagged items are false positivesIf items relate to a ...
|
nmap provider
Nmap, short for Network Mapper, is a powerful and versatile open-source tool used for network discovery and security auditing. This tool is widely utilized by network administrators, security professionals, and penetration testers to map out network structures, discover hosts, identify services, and detect vulnerabilities.
The nmap provider maps primary objects and attributes that nmap uses to store and manage information about scanned targets, discovered hosts, and their associated ports and services.
Pre-requisites
This provider requires the nmap tool to be installed on your system. You can download and install nmap from the official website.
Get Started
Example
Scan active IP address in network
Host scan with specific ip
Advanced Usage
Discover all exposed hosts on a network.
cnquery shell nmap --networks "192.168.0.0/20" --discover hosts
Connect to a specific IP address and display all open ports.
TODO