pentesting 0.100.11 → 0.100.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/ARCHITECTURE.md +8 -4
- package/README.md +6 -3
- package/package.json +2 -2
package/ARCHITECTURE.md
CHANGED
|
@@ -422,10 +422,14 @@ Compilation is outside the application runtime boundary and is always executed
|
|
|
422
422
|
through resource-capped Docker wrappers. Host Cargo is not an emergency
|
|
423
423
|
fallback. `dbuild.sh` owns individual Cargo commands, `dverify.sh` owns
|
|
424
424
|
sequential gate profiles, and `dbuild-image.sh` owns BuildKit. Each path shares
|
|
425
|
-
storage admission, effective-limit inspection, a machine-wide lock, watchdogs,
|
|
426
|
-
and structured failure reports. Automated CI/CD is disabled; maintainers invoke
|
|
427
|
-
these wrappers explicitly. The
|
|
428
|
-
normative contract is [Docker-only build safety](https://github.com/agnusdei1207/pentesting/blob/main/docs/BUILD_SAFETY.md).
|
|
425
|
+
storage admission, effective-limit inspection, a machine-wide lock, watchdogs,
|
|
426
|
+
and structured failure reports. Automated CI/CD is disabled; maintainers invoke
|
|
427
|
+
these wrappers explicitly. The
|
|
428
|
+
normative contract is [Docker-only build safety](https://github.com/agnusdei1207/pentesting/blob/main/docs/BUILD_SAFETY.md).
|
|
429
|
+
|
|
430
|
+
Patch publication performs one Cross build. The version-checked, checksummed
|
|
431
|
+
AMD64 musl artifact is uploaded to GitHub and packaged into Docker from a
|
|
432
|
+
minimal context; its dependency cache stays in a versioned Docker volume.
|
|
429
433
|
|
|
430
434
|
The measured next-stage simplification and deletion plan is indexed at
|
|
431
435
|
[Minimal Core plan](https://github.com/agnusdei1207/pentesting/blob/main/docs/plans/2026/07/10/minimal-core/README.md).
|
package/README.md
CHANGED
|
@@ -80,9 +80,12 @@ powershell -NoProfile -ExecutionPolicy Bypass -File scripts/dbuild.ps1 test -p b
|
|
|
80
80
|
powershell -NoProfile -ExecutionPolicy Bypass -File scripts/nverify.ps1 # Windows npm verify
|
|
81
81
|
```
|
|
82
82
|
|
|
83
|
-
The wrappers cap memory, CPU, PIDs, jobs, test threads, and time; verify storage
|
|
84
|
-
before launch; serialize resource-intensive work; and leave a redacted resource
|
|
85
|
-
report. Automated CI/CD is disabled. Full policy: [Docker-only build safety](https://github.com/agnusdei1207/pentesting/blob/main/docs/BUILD_SAFETY.md).
|
|
83
|
+
The wrappers cap memory, CPU, PIDs, jobs, test threads, and time; verify storage
|
|
84
|
+
before launch; serialize resource-intensive work; and leave a redacted resource
|
|
85
|
+
report. Automated CI/CD is disabled. Full policy: [Docker-only build safety](https://github.com/agnusdei1207/pentesting/blob/main/docs/BUILD_SAFETY.md).
|
|
86
|
+
|
|
87
|
+
Patch releases compile once, verify the binary version and SHA-256, and reuse
|
|
88
|
+
that same AMD64 artifact for GitHub and Docker publication.
|
|
86
89
|
|
|
87
90
|
### 🐳 Run with Docker
|
|
88
91
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pentesting",
|
|
3
|
-
"version": "0.100.
|
|
4
|
-
"builderReleaseTag": "v0.100.
|
|
3
|
+
"version": "0.100.13",
|
|
4
|
+
"builderReleaseTag": "v0.100.13",
|
|
5
5
|
"description": "pentesting — coding agent runtime with audited reverse-shell capture, verified PTY session upgrades, pivot control, evidence transcripts, and safe session reclamation.",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "agnusdei1207",
|