-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Momchill Zarev
authored and
Momchill Zarev
committed
Dec 10, 2023
1 parent
5cea35b
commit 203c543
Showing
3 changed files
with
50,885 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,36 @@ | ||
# nbscan | ||
NetBIOS scanner | ||
nbscan | ||
=== | ||
|
||
nbscan is a NetBIOS discovery tool written in Go. | ||
|
||
## Download | ||
|
||
Binary packages are available [here](https://github.com/momchill/nbscan/releases/latest). | ||
|
||
## Install | ||
|
||
If you have Go installed, you can build your own binary by running: | ||
``` | ||
$ go build nbscan.go | ||
``` | ||
|
||
## Usage | ||
|
||
``` | ||
Usage: nbscan [options] <net to scan> ... | ||
Options: | ||
-json Output json format | ||
-m Print MAC address | ||
-q Suppress error messages | ||
-r Set the maximum packets per second rate. 0 disables rate limiter (default 250) | ||
-t Set the maximum timeout / wait time for response in seconds (default 1) | ||
-v Log more info to stderr | ||
``` | ||
|
||
### Local Network Discovery | ||
Identify computers on the local network. | ||
|
||
``` | ||
$ nbscan -m 192.168.0.0/24 | ||
``` |
Oops, something went wrong.