netprober 1.4.0 → 1.5.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 +6 -3
- package/dist/netprober.bundled.mjs +37 -37
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# 🔍 netprober
|
|
4
4
|
|
|
5
|
-
**
|
|
5
|
+
**Concurrent Host/IP Prober with custom DNS resolution, port scanning, ping and curl support**
|
|
6
6
|
|
|
7
7
|

|
|
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
|
|
44
|
+
### Run directly with Bun
|
|
43
45
|
|
|
44
46
|
> Requires [Bun](https://bun.sh) — install it first
|
|
45
47
|
|
|
@@ -88,6 +90,7 @@ netprober [options]
|
|
|
88
90
|
| `--ping` | Enable ICMP ping checks | `false` |
|
|
89
91
|
| `--curl` | Enable HTTPS curl checks | `false` |
|
|
90
92
|
| `-v, --verbose` | Show all IPs, not just live ones | `false` |
|
|
93
|
+
| `-p, --ports` | ports (e.g. 80,443,8000-8100) | `443` |
|
|
91
94
|
|
|
92
95
|
---
|
|
93
96
|
|