Skip to content
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

📄 Tidy up nmap docs #5002

Merged
merged 1 commit into from
Dec 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions providers/nmap/resources/nmap.lr
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ nmap.host @defaults("name") {
name string
// Distance to the host
distance() dict
// Information about the operating system of the host
// Information about the host operating system
os() dict
//
endTime() time
Expand All @@ -42,7 +42,7 @@ nmap.host @defaults("name") {
hostnames() []dict
// Ports on the host
ports() []nmap.port
// State of the host (e.g., up, down)
// State of the host (e.g., up or down)
state() string
}

Expand All @@ -54,13 +54,13 @@ private nmap.port @defaults("port service"){
service string
// Method used to discover the port (e.g., SYN scan)
method string
// Protocol used (e.g., TCP, UDP)
// Protocol used (e.g., TCP or UDP)
protocol string
// Product running on the port
product string
// Version of the product
// Version of the product running on the port
version string
// State of the port (e.g., open, closed)
// State of the port (e.g., open or closed)
state string
}

Expand Down
Loading