pentesting 0.8.12 → 0.8.13
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 +7 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,10 +21,16 @@
|
|
|
21
21
|
## Quick Start
|
|
22
22
|
|
|
23
23
|
```bash
|
|
24
|
+
# Docker required for security tools (nmap, rustscan, etc.)
|
|
25
|
+
# Install: https://docs.docker.com/get-docker/
|
|
26
|
+
open -a Docker # macOS - start Docker Desktop
|
|
27
|
+
|
|
24
28
|
npm install -g pentesting
|
|
25
29
|
|
|
26
|
-
#
|
|
30
|
+
# Set API key
|
|
27
31
|
export PENTEST_API_KEY="your_api_key"
|
|
32
|
+
|
|
33
|
+
# Optional: Custom API endpoint
|
|
28
34
|
export PENTEST_BASE_URL="https://api.z.ai/api/anthropic"
|
|
29
35
|
export PENTEST_MODEL="glm-4.7"
|
|
30
36
|
|