pentesting 0.101.2 → 0.101.4

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 +4 -14
  2. package/package.json +98 -98
package/README.md CHANGED
@@ -75,14 +75,10 @@ Provider variables are optional — the TUI launches without them and lets you l
75
75
 
76
76
  ### Capability record
77
77
 
78
- | Date | Record | Test conditions |
79
- | --- | --- | --- |
80
- | 2026-04 | Project work began | Initial implementation and baseline work |
81
- | 2026-07-15 | First project-reported result in which Pentesting exceeded Claude Code on the tested penetration-testing capability set; reported margin: approximately 40% | Pentesting with MiniMax M3 versus Claude Code with Sonnet 5; identical prompts; CTF tasks ranging from easy to hard; a 60-minute test window for each system |
82
-
83
- This is a project-maintained, task-specific record, not an independent or general-purpose benchmark. It does not claim broader general-purpose superiority.
84
-
85
- > Claude Code's strength is generality, an area where Pentesting was weaker. Even so, it was strong enough to become a foundation that other products wrapped for penetration-testing workflows. To me, it felt like a formidable wall—and, at the same time, the goal I wanted to surpass.
78
+ | Date | Result | Test setup | Note |
79
+ | --- | --- | --- | --- |
80
+ | 2026-04 | Project work began | Initial implementation and baseline work | — |
81
+ | 2026-07-15 | ~40% higher pentesting score | Pentesting (MiniMax M3) vs. Claude Code v2.1.210 (Sonnet 5); same prompts, easy-to-hard CTFs, 60 minutes each | Time-bound internal test; both agents continue to evolve |
86
82
 
87
83
  ---
88
84
 
@@ -118,9 +114,3 @@ This is a project-maintained, task-specific record, not an independent or genera
118
114
  > Each voice sings its most beautiful song from its own place, yet when combined, they create one grand, beautiful melody. I believe this structure is no different from AI agents.
119
115
  >
120
116
  > — *agnusdei1207*
121
-
122
- ### First principles
123
-
124
- > Since the AI era began, I have studied many highly starred agent systems, but their machinery often obscured a clear philosophy. The ideas that actually improved performance came from observing myself and returning to computer science fundamentals—Kruskal and Prim, divide and conquer, backtracking, Monte Carlo methods, and time/space complexity. My conclusion is simple: observe yourself, master the fundamentals, and build from there.
125
-
126
- > I use Pentesting to study CTFs and penetration testing.
package/package.json CHANGED
@@ -1,98 +1,98 @@
1
- {
2
- "name": "pentesting",
3
- "version": "0.101.2",
4
- "builderReleaseTag": "v0.101.2",
5
- "description": "Penetration testing AI agent powered by Rust, with audited reverse-shell capture, verified PTY upgrades, and evidence-first orchestration.",
6
- "license": "MIT",
7
- "author": "agnusdei1207",
8
- "type": "module",
9
- "bin": {
10
- "pentesting": "bin/pentesting.mjs"
11
- },
12
- "files": [
13
- "bin",
14
- "lib",
15
- "scripts/postinstall.mjs",
16
- "README.md",
17
- "ARCHITECTURE.md",
18
- "pentesting-logo.svg"
19
- ],
20
- "engines": {
21
- "node": ">=18.18.0"
22
- },
23
- "repository": {
24
- "type": "git",
25
- "url": "git+https://github.com/agnusdei1207/pentesting-public.git"
26
- },
27
- "homepage": "https://agnusdei1207.github.io/pentesting-public/",
28
- "bugs": {
29
- "url": "https://github.com/agnusdei1207/pentesting-public/issues"
30
- },
31
- "keywords": [
32
- "penetration-testing",
33
- "pentesting",
34
- "security",
35
- "hacking",
36
- "hacker",
37
- "ai",
38
- "autonomous",
39
- "rust",
40
- "tui",
41
- "cli",
42
- "nmap",
43
- "metasploit",
44
- "sqlmap",
45
- "kali"
46
- ],
47
- "scripts": {
48
- "postinstall": "node ./scripts/postinstall.mjs",
49
- "prepublishOnly": "npm run verify",
50
- "consistency": "bash scripts/check-project-consistency.sh",
51
- "audit": "bash scripts/audit-project.sh",
52
- "test": "node --test tests/*.test.mjs",
53
- "preflight:local": "bash scripts/preflight-local.sh",
54
- "refactor:stability": "bash scripts/refactor-stability.sh",
55
- "verify": "npm run consistency && npm run test",
56
- "check": "npm run check:docker",
57
- "pentesting:help": "bash scripts/pentesting-release-help.sh",
58
- "pentesting:status": "bash scripts/pentesting-release-status.sh",
59
- "pentesting:test": "npm run test",
60
- "pentesting:verify": "npm run verify",
61
- "pentesting:pack:dry-run": "npm pack --dry-run",
62
- "pentesting:check": "bash scripts/check-pentesting-package.sh",
63
- "pentesting:publish": "bash scripts/publish-pentesting-package.sh",
64
- "pentesting:publish:dry-run": "DRY_RUN=true bash scripts/publish-pentesting-package.sh",
65
- "release:npm": "bash scripts/publish-pentesting-package.sh patch",
66
- "release:npm:minor": "bash scripts/publish-pentesting-package.sh minor",
67
- "release:npm:major": "bash scripts/publish-pentesting-package.sh major",
68
- "release:npm:dry": "DRY_RUN=true bash scripts/publish-pentesting-package.sh patch",
69
- "release:npm:minor:dry": "DRY_RUN=true bash scripts/publish-pentesting-package.sh minor",
70
- "release:npm:major:dry": "DRY_RUN=true bash scripts/publish-pentesting-package.sh major",
71
- "public:sync": "bash scripts/sync-public-repo.sh",
72
- "public:mirror-release": "bash scripts/mirror-public-release.sh",
73
- "release:backfill": "bash scripts/backfill-release-local.sh",
74
- "check:docker": "npm run docker:build && docker run -it --rm --memory 2g --memory-swap 2g --cpus 2 --pids-limit 512 -v builder-workspace:/workspace -v pentesting-config:/root/.pentesting -e OPENAI_API_KEY -e OPENAI_BASE_URL -e OPENAI_MODEL -e OPENAI_MAX_TOKENS agnusdei1207/pentesting:latest",
75
- "docker:build": "bash scripts/dbuild-image.sh app",
76
- "docker:base:build": "bash scripts/dbuild-image.sh bases",
77
- "release:patch": "./scripts/release-all.sh patch",
78
- "release:minor": "./scripts/release-all.sh minor",
79
- "release:major": "./scripts/release-all.sh major"
80
- },
81
- "devDependencies": {
82
- "@ai-sdk/google-vertex": "^4.0.47",
83
- "@types/node": "^24.10.1",
84
- "@types/tmp": "^0.2.6",
85
- "ai": "^6.0.77",
86
- "csv-parse": "^6.1.0",
87
- "handlebars": "^4.7.9",
88
- "p-limit": "^7.2.0",
89
- "pino": "^10.1.0",
90
- "pino-pretty": "^13.1.2",
91
- "strip-ansi": "^7.1.2",
92
- "tmp": "^0.2.5",
93
- "tsx": "^4.20.6",
94
- "yaml": "^2.8.3",
95
- "yargs": "^18.0.0",
96
- "zod": "^3.24.1"
97
- }
98
- }
1
+ {
2
+ "name": "pentesting",
3
+ "version": "0.101.4",
4
+ "builderReleaseTag": "v0.101.2",
5
+ "description": "Penetration testing AI agent powered by Rust, with audited reverse-shell capture, verified PTY upgrades, and evidence-first orchestration.",
6
+ "license": "MIT",
7
+ "author": "agnusdei1207",
8
+ "type": "module",
9
+ "bin": {
10
+ "pentesting": "bin/pentesting.mjs"
11
+ },
12
+ "files": [
13
+ "bin",
14
+ "lib",
15
+ "scripts/postinstall.mjs",
16
+ "README.md",
17
+ "ARCHITECTURE.md",
18
+ "pentesting-logo.svg"
19
+ ],
20
+ "engines": {
21
+ "node": ">=18.18.0"
22
+ },
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "git+https://github.com/agnusdei1207/pentesting-public.git"
26
+ },
27
+ "homepage": "https://agnusdei1207.github.io/pentesting-public/",
28
+ "bugs": {
29
+ "url": "https://github.com/agnusdei1207/pentesting-public/issues"
30
+ },
31
+ "keywords": [
32
+ "penetration-testing",
33
+ "pentesting",
34
+ "security",
35
+ "hacking",
36
+ "hacker",
37
+ "ai",
38
+ "autonomous",
39
+ "rust",
40
+ "tui",
41
+ "cli",
42
+ "nmap",
43
+ "metasploit",
44
+ "sqlmap",
45
+ "kali"
46
+ ],
47
+ "scripts": {
48
+ "postinstall": "node ./scripts/postinstall.mjs",
49
+ "prepublishOnly": "npm run verify",
50
+ "consistency": "bash scripts/check-project-consistency.sh",
51
+ "audit": "bash scripts/audit-project.sh",
52
+ "test": "node --test tests/*.test.mjs",
53
+ "preflight:local": "bash scripts/preflight-local.sh",
54
+ "refactor:stability": "bash scripts/refactor-stability.sh",
55
+ "verify": "npm run consistency && npm run test",
56
+ "check": "npm run check:docker",
57
+ "pentesting:help": "bash scripts/pentesting-release-help.sh",
58
+ "pentesting:status": "bash scripts/pentesting-release-status.sh",
59
+ "pentesting:test": "npm run test",
60
+ "pentesting:verify": "npm run verify",
61
+ "pentesting:pack:dry-run": "npm pack --dry-run",
62
+ "pentesting:check": "bash scripts/check-pentesting-package.sh",
63
+ "pentesting:publish": "bash scripts/publish-pentesting-package.sh",
64
+ "pentesting:publish:dry-run": "DRY_RUN=true bash scripts/publish-pentesting-package.sh",
65
+ "release:npm": "bash scripts/publish-pentesting-package.sh patch",
66
+ "release:npm:minor": "bash scripts/publish-pentesting-package.sh minor",
67
+ "release:npm:major": "bash scripts/publish-pentesting-package.sh major",
68
+ "release:npm:dry": "DRY_RUN=true bash scripts/publish-pentesting-package.sh patch",
69
+ "release:npm:minor:dry": "DRY_RUN=true bash scripts/publish-pentesting-package.sh minor",
70
+ "release:npm:major:dry": "DRY_RUN=true bash scripts/publish-pentesting-package.sh major",
71
+ "public:sync": "bash scripts/sync-public-repo.sh",
72
+ "public:mirror-release": "bash scripts/mirror-public-release.sh",
73
+ "release:backfill": "bash scripts/backfill-release-local.sh",
74
+ "check:docker": "npm run docker:build && docker run -it --rm --memory 2g --memory-swap 2g --cpus 2 --pids-limit 512 -v builder-workspace:/workspace -v pentesting-config:/root/.pentesting -e OPENAI_API_KEY -e OPENAI_BASE_URL -e OPENAI_MODEL -e OPENAI_MAX_TOKENS agnusdei1207/pentesting:latest",
75
+ "docker:build": "bash scripts/dbuild-image.sh app",
76
+ "docker:base:build": "bash scripts/dbuild-image.sh bases",
77
+ "release:patch": "./scripts/release-all.sh patch",
78
+ "release:minor": "./scripts/release-all.sh minor",
79
+ "release:major": "./scripts/release-all.sh major"
80
+ },
81
+ "devDependencies": {
82
+ "@ai-sdk/google-vertex": "^4.0.47",
83
+ "@types/node": "^24.10.1",
84
+ "@types/tmp": "^0.2.6",
85
+ "ai": "^6.0.77",
86
+ "csv-parse": "^6.1.0",
87
+ "handlebars": "^4.7.9",
88
+ "p-limit": "^7.2.0",
89
+ "pino": "^10.1.0",
90
+ "pino-pretty": "^13.1.2",
91
+ "strip-ansi": "^7.1.2",
92
+ "tmp": "^0.2.5",
93
+ "tsx": "^4.20.6",
94
+ "yaml": "^2.8.3",
95
+ "yargs": "^18.0.0",
96
+ "zod": "^3.24.1"
97
+ }
98
+ }