Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/GETTING_STARTED.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ T3MP3ST is a local offensive-security command center for authorized testing. It

## Requirements

- Node.js 18 or newer
- Node.js 22.19 or newer
- npm
- git, if you want to update from upstream or contribute
- Optional local model runtime: Ollama, LM Studio, vLLM, or another OpenAI-compatible local server
Expand Down
106 changes: 68 additions & 38 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@
"vitest": "^4.1.9"
},
"engines": {
"node": ">=18.0.0"
"node": ">=22.19.0"
},
"overrides": {
"qs": "^6.15.2",
Expand Down
2 changes: 1 addition & 1 deletion src/arsenal/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1406,7 +1406,7 @@ export const BUILTIN_TOOLS: CustomTool[] = [
}
});

socket.on('error', (err) => {
socket.on('error', (err: Error) => {
resolve({
success: false,
error: `SSL connection failed: ${err.message}`,
Expand Down
Loading