netprober 1.2.0 → 1.3.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 +21 -4
- package/dist/netprober.bundled.mjs +36 -36
- package/images/1.png +0 -0
- package/package.json +11 -2
package/README.md
CHANGED
|
@@ -20,6 +20,27 @@ DNS resolution · Port 443 · ICMP ping · HTTPS curl · CIDR sweep
|
|
|
20
20
|
|
|
21
21
|
## 📦 Installation
|
|
22
22
|
|
|
23
|
+
### Via npm / pnpm / bun (global CLI)
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
# npm
|
|
27
|
+
npm install -g netprober
|
|
28
|
+
|
|
29
|
+
# pnpm
|
|
30
|
+
pnpm add -g netprober
|
|
31
|
+
|
|
32
|
+
# bun
|
|
33
|
+
bun add -g netprober
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
Then use it anywhere:
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
netprober --help
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
23
44
|
### Run directly with Bun (no install)
|
|
24
45
|
|
|
25
46
|
> Requires [Bun](https://bun.sh) — install it first
|
|
@@ -117,11 +138,7 @@ netprober -i targets.txt -o live.txt --output-ports open443.txt
|
|
|
117
138
|
All files are written **in real time** as results come in — no waiting for the run to finish.
|
|
118
139
|
|
|
119
140
|
---
|
|
120
|
-
## Acknowledgements
|
|
121
|
-
|
|
122
|
-
Provider list sourced from: [Expen1/MonPing](https://github.com/Expen1/MonPing/blob/ac17f7726aacb8d27f6181e9b12ea3d16f758320/monping.py#L53)
|
|
123
141
|
|
|
124
|
-
---
|
|
125
142
|
## 📄 License
|
|
126
143
|
|
|
127
144
|
MIT © [maanimis](https://github.com/maanimis)
|