pentesting 0.7.30 → 0.7.32
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 +9 -64
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
|
|
1
3
|
```
|
|
2
4
|
██████╗ ███████╗███╗ ██╗████████╗███████╗███████╗████████╗██╗███╗ ██╗ ██████╗
|
|
3
5
|
██╔══██╗██╔════╝████╗ ██║╚══██╔══╝██╔════╝██╔════╝╚══██╔══╝██║████╗ ██║██╔════╝
|
|
@@ -12,6 +14,8 @@
|
|
|
12
14
|
[](https://www.npmjs.com/package/pentesting)
|
|
13
15
|
[](https://hub.docker.com/r/agnusdei1207/pentesting-tools)
|
|
14
16
|
|
|
17
|
+
</div>
|
|
18
|
+
|
|
15
19
|
---
|
|
16
20
|
|
|
17
21
|
## 🚀 Quick Start
|
|
@@ -325,40 +329,6 @@ await agent.addMCPServer('security-tools', 'docker', [
|
|
|
325
329
|
|
|
326
330
|
---
|
|
327
331
|
|
|
328
|
-
## 📁 Project Structure
|
|
329
|
-
|
|
330
|
-
```
|
|
331
|
-
src/
|
|
332
|
-
├── index.tsx # CLI entry point
|
|
333
|
-
├── cli/
|
|
334
|
-
│ ├── app.tsx # TUI with streaming, multi-target, approval
|
|
335
|
-
│ ├── components/ # Rich display components
|
|
336
|
-
│ └── utils/ # Keyboard listener
|
|
337
|
-
├── core/
|
|
338
|
-
│ ├── agent/ # Agent implementations
|
|
339
|
-
│ ├── approval/ # Tool approval system
|
|
340
|
-
│ ├── commands/ # Slash command registry
|
|
341
|
-
│ ├── context/ # Checkpoint + compaction
|
|
342
|
-
│ ├── display/ # Rich output blocks
|
|
343
|
-
│ ├── hooks/ # Event hooks
|
|
344
|
-
│ ├── loop/ # Ralph autonomous loop
|
|
345
|
-
│ ├── replay/ # Session replay
|
|
346
|
-
│ ├── session/ # Session persistence
|
|
347
|
-
│ ├── skill/ # Flow skills (Mermaid/D2)
|
|
348
|
-
│ ├── streaming/ # Real-time streaming
|
|
349
|
-
│ ├── update/ # Auto-update system
|
|
350
|
-
│ ├── prompts/ # System prompts
|
|
351
|
-
│ └── tools/ # Tool definitions & executor
|
|
352
|
-
├── agents/ # 9 built-in specialized agents
|
|
353
|
-
├── commands/ # Built-in slash commands
|
|
354
|
-
├── wire/ # JSONL logging + Wire protocol
|
|
355
|
-
├── mcp/ # MCP client integration
|
|
356
|
-
├── utils/ # Clipboard, retry utilities
|
|
357
|
-
└── config/ # Constants, theme
|
|
358
|
-
```
|
|
359
|
-
|
|
360
|
-
---
|
|
361
|
-
|
|
362
332
|
## 🛠️ Development
|
|
363
333
|
|
|
364
334
|
```bash
|
|
@@ -376,39 +346,14 @@ npm run build
|
|
|
376
346
|
npm run dev
|
|
377
347
|
```
|
|
378
348
|
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
## Changelog
|
|
382
|
-
|
|
383
|
-
### v0.7.16
|
|
384
|
-
- Self-reflection framework (Claude Code inspired)
|
|
385
|
-
- Confidence scoring (0-100) for decisions
|
|
386
|
-
- Decision framework: Value = (Probability × Impact) / Time Cost
|
|
387
|
-
- Concrete tool commands with wordlist paths
|
|
388
|
-
- Efficiency rules and stop conditions
|
|
389
|
-
|
|
390
|
-
### v0.7.15
|
|
391
|
-
- Comprehensive prompt improvements
|
|
392
|
-
- Approval fix (double popup bug)
|
|
393
|
-
- Token label in status bar (`3k tok`)
|
|
394
|
-
|
|
395
|
-
### v0.7.14
|
|
396
|
-
- Auto Docker management
|
|
397
|
-
- Container auto-start on first use
|
|
398
|
-
|
|
399
|
-
### v0.7.13
|
|
400
|
-
- Rainbow spinner
|
|
401
|
-
- Thinking/reasoning display
|
|
402
|
-
- Monochrome theme
|
|
403
|
-
- Tab mode toggle
|
|
349
|
+
## 📄 License
|
|
350
|
+
## Documentation
|
|
404
351
|
|
|
405
|
-
|
|
406
|
-
-
|
|
407
|
-
- Batch attack (`/start all`)
|
|
408
|
-
- `set_target` tool for agent
|
|
352
|
+
- [Architecture](./docs/ARCHITECTURE.md) - System design and components
|
|
353
|
+
- [Docker Image](https://hub.docker.com/r/agnusdei1207/pentesting-tools) - Pre-built security tools
|
|
409
354
|
|
|
410
355
|
---
|
|
411
356
|
|
|
412
|
-
##
|
|
357
|
+
## �📄 License
|
|
413
358
|
|
|
414
359
|
MIT
|