netprober 1.4.0 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  # 🔍 netprober
4
4
 
5
- ** Concurrent Host/IP Prober with custom DNS resolution, port scanning, ping and curl support **
5
+ **Concurrent Host/IP Prober with custom DNS resolution, port scanning, ping and curl support**
6
6
 
7
7
  ![preview](images/1.png)
8
8
 
@@ -11,8 +11,10 @@
11
11
  - **Live terminal summary** — progress bar, stats, and per-IP results update in real time
12
12
  - **CIDR expansion** — sweep entire subnets like `10.0.0.0/24` natively
13
13
  - **Concurrent probing** — tunable worker pool, non-blocking by default
14
- - **Multiple check modes** — multi port, ICMP ping, and HTTPS curl independently toggled
14
+ - **Multiple check modes** — multi port, ICMP ,ping, and HTTPS curl independently toggled
15
15
  - **Structured output** — results written to separate files as they land, no waiting
16
+ - **Support ip v4&v6**
17
+ - **Detect Providers**
16
18
 
17
19
  ---
18
20
 
@@ -39,7 +41,7 @@ netprober --help
39
41
 
40
42
  ---
41
43
 
42
- ### Run directly with Bun (no install)
44
+ ### Run directly with Bun
43
45
 
44
46
  > Requires [Bun](https://bun.sh) — install it first
45
47
 
@@ -53,18 +55,9 @@ bun ./src/index.ts --help
53
55
 
54
56
  ### Download prebuilt binary
55
57
 
56
- A standalone binary is available for **Linux x86-64 (amd64)** — no Node, no Bun required.
58
+ A standalone binary is available:
59
+ [**Releases**](https://github.com/maanimis/netprober/releases) page
57
60
 
58
- 1. Head to the [**Releases**](https://github.com/maanimis/netprober/releases) page
59
- 2. Download `netprober-linux-amd64`
60
- 3. Make it executable and run:
61
-
62
- ```bash
63
- chmod +x netprober-linux-amd64
64
- ./netprober-linux-amd64 --help
65
- ```
66
-
67
- > ⚠️ Only `linux/amd64` is currently available as a prebuilt binary. For other platforms, use the npm package or run with Bun directly.
68
61
 
69
62
  ---
70
63
 
@@ -88,6 +81,7 @@ netprober [options]
88
81
  | `--ping` | Enable ICMP ping checks | `false` |
89
82
  | `--curl` | Enable HTTPS curl checks | `false` |
90
83
  | `-v, --verbose` | Show all IPs, not just live ones | `false` |
84
+ | `-p, --ports` | ports (e.g. 80,443,8000-8100) | `443` |
91
85
 
92
86
  ---
93
87