pentesting 0.8.11 → 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.
Files changed (2) hide show
  1. package/README.md +7 -1
  2. 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
- # GLM example
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pentesting",
3
- "version": "0.8.11",
3
+ "version": "0.8.13",
4
4
  "description": "Autonomous Penetration Testing AI Agent",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",