@saulwade/swl-ses 1.4.0 → 1.4.1
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/CLAUDE.md +4 -3
- package/README.md +15 -14
- package/agentes/nemesis-auditor-swl.md +161 -0
- package/comandos/swl/nemesis.md +122 -0
- package/comandos/swl/salud.md +34 -0
- package/comandos/swl/verificar.md +45 -0
- package/habilidades/feynman-auditor-swl/SKILL.md +123 -0
- package/habilidades/feynman-auditor-swl/recursos/preguntas-language-agnostic.md +108 -0
- package/habilidades/state-inconsistency-auditor-swl/SKILL.md +166 -0
- package/habilidades/state-inconsistency-auditor-swl/recursos/coupled-state-patterns.md +147 -0
- package/habilidades/web-fetcher-routing/SKILL.md +75 -0
- package/hooks/lib/security-net.js +201 -0
- package/manifiestos/modulos.json +30 -0
- package/manifiestos/skills-lock.json +1114 -1093
- package/package.json +2 -2
- package/plugin.json +2 -2
- package/scripts/audit-tools/audit-history.js +330 -0
- package/scripts/audit-tools/bundle-tracker.js +290 -0
- package/scripts/audit-tools/canary-monitor.js +352 -0
- package/scripts/audit-tools/code-profiler.js +605 -0
- package/scripts/audit-tools/dep-doctor.js +320 -0
- package/scripts/audit-tools/env-validator.js +206 -0
- package/scripts/audit-tools/lib/fs-walk.js +48 -0
- package/scripts/audit-tools/lib/output.js +23 -0
- package/scripts/audit-tools/migration-checker.js +392 -0
- package/scripts/audit-tools/pentest-scanner.js +1436 -0
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
// Adaptado de temp/ultraship-main/tools/lib/security.mjs bajo MIT License
|
|
2
|
+
// Fuente: Houseofmvps/ultraship (https://github.com/Houseofmvps/ultraship)
|
|
3
|
+
'use strict';
|
|
4
|
+
|
|
5
|
+
const { resolve } = require('path');
|
|
6
|
+
|
|
7
|
+
// Tamaño máximo de archivo a leer en memoria (10 MB)
|
|
8
|
+
const MAX_FILE_SIZE = 10 * 1024 * 1024;
|
|
9
|
+
|
|
10
|
+
// Tamaño máximo de cuerpo de respuesta HTTP (5 MB)
|
|
11
|
+
const MAX_RESPONSE_SIZE = 5 * 1024 * 1024;
|
|
12
|
+
|
|
13
|
+
// Rangos IP privados/internos que nunca deben recibir solicitudes
|
|
14
|
+
const PRIVATE_IP_PATTERNS = [
|
|
15
|
+
/^127\./, // Loopback
|
|
16
|
+
/^10\./, // Clase A privada
|
|
17
|
+
/^172\.(1[6-9]|2\d|3[01])\./, // Clase B privada
|
|
18
|
+
/^192\.168\./, // Clase C privada
|
|
19
|
+
/^169\.254\./, // Link-local (AWS metadata!)
|
|
20
|
+
/^0\./, // Red actual
|
|
21
|
+
/^100\.(6[4-9]|[7-9]\d|1[01]\d|12[0-7])\./, // NAT de nivel operador
|
|
22
|
+
/^::1$/, // Loopback IPv6
|
|
23
|
+
/^fd[0-9a-f]{2}:/i, // Local único IPv6
|
|
24
|
+
/^fe80:/i, // Link-local IPv6
|
|
25
|
+
/^fc[0-9a-f]{2}:/i, // Local único IPv6
|
|
26
|
+
];
|
|
27
|
+
|
|
28
|
+
// Hostnames de metadatos cloud que siempre se bloquean
|
|
29
|
+
const BLOCKED_HOSTNAMES = new Set([
|
|
30
|
+
'metadata.google.internal',
|
|
31
|
+
'metadata.google.com',
|
|
32
|
+
]);
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* Valida que una ruta de directorio sea segura: existe, es absoluta y sin trucos de traversal.
|
|
36
|
+
* Devuelve la ruta absoluta resuelta, o null si la entrada está vacía.
|
|
37
|
+
*
|
|
38
|
+
* @param {string} dir
|
|
39
|
+
* @returns {string|null}
|
|
40
|
+
*/
|
|
41
|
+
function validateDirPath(dir) {
|
|
42
|
+
if (!dir) return null;
|
|
43
|
+
const resolved = resolve(dir);
|
|
44
|
+
// Permitimos cualquier ruta absoluta; la protección real es que
|
|
45
|
+
// las herramientas solo LEEN dentro de ella.
|
|
46
|
+
return resolved;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* Valida que una URL sea segura para solicitar.
|
|
51
|
+
* Solo permite HTTP/HTTPS, sin IPs privadas ni endpoints de metadatos.
|
|
52
|
+
*
|
|
53
|
+
* @param {string} urlString
|
|
54
|
+
* @returns {{ valid: true, url: URL } | { valid: false, reason: string }}
|
|
55
|
+
*/
|
|
56
|
+
function validateUrl(urlString) {
|
|
57
|
+
let parsed;
|
|
58
|
+
try {
|
|
59
|
+
parsed = new URL(urlString);
|
|
60
|
+
} catch {
|
|
61
|
+
return { valid: false, reason: `URL inválida: ${urlString}` };
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
// Solo HTTP y HTTPS
|
|
65
|
+
if (parsed.protocol !== 'http:' && parsed.protocol !== 'https:') {
|
|
66
|
+
return { valid: false, reason: `Esquema bloqueado "${parsed.protocol}" — solo se permiten http: y https:` };
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
// Bloquear hostnames de metadatos cloud
|
|
70
|
+
if (BLOCKED_HOSTNAMES.has(parsed.hostname.toLowerCase())) {
|
|
71
|
+
return { valid: false, reason: `Hostname bloqueado: ${parsed.hostname} (endpoint de metadatos cloud)` };
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
// Normalizar hostname — quitar corchetes IPv6 y expandir IPv6-mapped IPv4
|
|
75
|
+
let hostname = parsed.hostname;
|
|
76
|
+
if (hostname.startsWith('[') && hostname.endsWith(']')) {
|
|
77
|
+
hostname = hostname.slice(1, -1);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
// Detectar IPv6-mapped IPv4 decimal (::ffff:x.x.x.x) y extraer la parte IPv4
|
|
81
|
+
const ipv6MappedMatch = hostname.match(/^::ffff:(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})$/i);
|
|
82
|
+
if (ipv6MappedMatch) {
|
|
83
|
+
hostname = ipv6MappedMatch[1];
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
// Detectar IPv6-mapped IPv4 en hex (p.ej. ::ffff:7f00:1 = 127.0.0.1)
|
|
87
|
+
const ipv6MappedHexMatch = hostname.match(/^::ffff:([0-9a-f]{1,4}):([0-9a-f]{1,4})$/i);
|
|
88
|
+
if (ipv6MappedHexMatch) {
|
|
89
|
+
const hi = parseInt(ipv6MappedHexMatch[1], 16);
|
|
90
|
+
const lo = parseInt(ipv6MappedHexMatch[2], 16);
|
|
91
|
+
hostname = `${(hi >> 8) & 0xff}.${hi & 0xff}.${(lo >> 8) & 0xff}.${lo & 0xff}`;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
// Bloquear IPs privadas/internas
|
|
95
|
+
for (const pattern of PRIVATE_IP_PATTERNS) {
|
|
96
|
+
if (pattern.test(hostname)) {
|
|
97
|
+
return { valid: false, reason: `IP privada/interna bloqueada: ${parsed.hostname}` };
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
// Bloquear variantes de localhost que apunten a rutas de metadatos
|
|
102
|
+
if (
|
|
103
|
+
hostname === 'localhost' ||
|
|
104
|
+
hostname === '::1' ||
|
|
105
|
+
parsed.hostname === 'localhost' ||
|
|
106
|
+
parsed.hostname === '[::1]'
|
|
107
|
+
) {
|
|
108
|
+
if (
|
|
109
|
+
parsed.pathname.startsWith('/latest/meta-data') ||
|
|
110
|
+
parsed.pathname.startsWith('/metadata') ||
|
|
111
|
+
parsed.pathname.startsWith('/computeMetadata')
|
|
112
|
+
) {
|
|
113
|
+
return { valid: false, reason: 'Ruta de metadatos en localhost bloqueada' };
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
return { valid: true, url: parsed };
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
/**
|
|
121
|
+
* Verifica el tamaño de un archivo antes de leerlo.
|
|
122
|
+
* Recibe `statSync` como parámetro para facilitar testing sin I/O real.
|
|
123
|
+
*
|
|
124
|
+
* @param {string} filePath
|
|
125
|
+
* @param {function} statSync - función compatible con fs.statSync
|
|
126
|
+
* @returns {{ ok: boolean, size: number, reason?: string }}
|
|
127
|
+
*/
|
|
128
|
+
function checkFileSize(filePath, statSync) {
|
|
129
|
+
try {
|
|
130
|
+
const stat = statSync(filePath);
|
|
131
|
+
if (stat.size > MAX_FILE_SIZE) {
|
|
132
|
+
return {
|
|
133
|
+
ok: false,
|
|
134
|
+
size: stat.size,
|
|
135
|
+
reason: `Archivo demasiado grande (${Math.round(stat.size / 1024 / 1024)}MB > ${MAX_FILE_SIZE / 1024 / 1024}MB límite)`,
|
|
136
|
+
};
|
|
137
|
+
}
|
|
138
|
+
return { ok: true, size: stat.size };
|
|
139
|
+
} catch {
|
|
140
|
+
return { ok: false, size: -1, reason: 'Archivo no encontrado o no legible' };
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
/**
|
|
145
|
+
* Crea un acumulador de respuesta HTTP con límite de tamaño.
|
|
146
|
+
* Útil para evitar OOM al leer respuestas grandes de streaming.
|
|
147
|
+
*
|
|
148
|
+
* @param {number} [maxSize]
|
|
149
|
+
* @returns {{ onData: function, getBody: function, isTruncated: function, getTotalSize: function }}
|
|
150
|
+
*/
|
|
151
|
+
function createResponseAccumulator(maxSize) {
|
|
152
|
+
if (maxSize === undefined) maxSize = MAX_RESPONSE_SIZE;
|
|
153
|
+
let body = '';
|
|
154
|
+
let totalSize = 0;
|
|
155
|
+
let truncated = false;
|
|
156
|
+
|
|
157
|
+
return {
|
|
158
|
+
onData(chunk) {
|
|
159
|
+
totalSize += chunk.length;
|
|
160
|
+
if (!truncated && totalSize <= maxSize) {
|
|
161
|
+
body += chunk;
|
|
162
|
+
} else {
|
|
163
|
+
truncated = true;
|
|
164
|
+
}
|
|
165
|
+
},
|
|
166
|
+
getBody() { return body; },
|
|
167
|
+
isTruncated() { return truncated; },
|
|
168
|
+
getTotalSize() { return totalSize; },
|
|
169
|
+
};
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
/**
|
|
173
|
+
* Redacta un valor si la clave indica que contiene información sensible.
|
|
174
|
+
* Preserva los primeros 4 caracteres del valor para depuración mínima.
|
|
175
|
+
*
|
|
176
|
+
* @param {string} key - nombre de la clave (p.ej. "Authorization", "api_key")
|
|
177
|
+
* @param {string} value - valor a evaluar
|
|
178
|
+
* @returns {string}
|
|
179
|
+
*/
|
|
180
|
+
function redactSensitiveValue(key, value) {
|
|
181
|
+
if (!value || typeof value !== 'string') return value;
|
|
182
|
+
const k = key.toLowerCase();
|
|
183
|
+
const sensitiveKeys = ['password', 'secret', 'token', 'key', 'credential', 'auth', 'api_key', 'apikey', 'private'];
|
|
184
|
+
if (sensitiveKeys.some(s => k.includes(s))) {
|
|
185
|
+
if (value.length > 4) {
|
|
186
|
+
return value.slice(0, 4) + '***REDACTED***';
|
|
187
|
+
}
|
|
188
|
+
return '***REDACTED***';
|
|
189
|
+
}
|
|
190
|
+
return value;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
module.exports = {
|
|
194
|
+
MAX_FILE_SIZE,
|
|
195
|
+
MAX_RESPONSE_SIZE,
|
|
196
|
+
validateDirPath,
|
|
197
|
+
validateUrl,
|
|
198
|
+
checkFileSize,
|
|
199
|
+
createResponseAccumulator,
|
|
200
|
+
redactSensitiveValue,
|
|
201
|
+
};
|
package/manifiestos/modulos.json
CHANGED
|
@@ -1156,6 +1156,36 @@
|
|
|
1156
1156
|
"gemini"
|
|
1157
1157
|
]
|
|
1158
1158
|
},
|
|
1159
|
+
"auditoria-profunda": {
|
|
1160
|
+
"descripcion": "Auditoría profunda integrada (Opción C, ADR-0018). Agente Nemesis iterativo (Feynman + State Inconsistency) language-agnostic, 3 skills subordinados, comando /swl:nemesis, 8 tools ejecutables JSON-output en scripts/audit-tools/ (code-profiler con Python, pentest-scanner, dep-doctor, bundle-tracker, env-validator, migration-checker con Alembic, canary-monitor, audit-history) + hook lib security-net.js (SSRF protection, validateUrl, checkFileSize, redactSensitiveValue) + skill web-fetcher-routing. Adaptado de Houseofmvps/ultraship + 0xiehnnkta/nemesis-auditor + tw93/Waza bajo MIT License. Ejemplos generalizados de blockchain a Python/TS/Go/Rust/Java/C#.",
|
|
1161
|
+
"tipo": "mixto",
|
|
1162
|
+
"archivos": [
|
|
1163
|
+
"agentes/nemesis-auditor-swl.md",
|
|
1164
|
+
"habilidades/feynman-auditor-swl",
|
|
1165
|
+
"habilidades/state-inconsistency-auditor-swl",
|
|
1166
|
+
"habilidades/web-fetcher-routing",
|
|
1167
|
+
"comandos/swl/nemesis.md",
|
|
1168
|
+
"hooks/lib/security-net.js",
|
|
1169
|
+
"scripts/audit-tools/lib/output.js",
|
|
1170
|
+
"scripts/audit-tools/lib/fs-walk.js",
|
|
1171
|
+
"scripts/audit-tools/code-profiler.js",
|
|
1172
|
+
"scripts/audit-tools/pentest-scanner.js",
|
|
1173
|
+
"scripts/audit-tools/dep-doctor.js",
|
|
1174
|
+
"scripts/audit-tools/bundle-tracker.js",
|
|
1175
|
+
"scripts/audit-tools/env-validator.js",
|
|
1176
|
+
"scripts/audit-tools/migration-checker.js",
|
|
1177
|
+
"scripts/audit-tools/canary-monitor.js",
|
|
1178
|
+
"scripts/audit-tools/audit-history.js"
|
|
1179
|
+
],
|
|
1180
|
+
"targets": [
|
|
1181
|
+
"claude",
|
|
1182
|
+
"openclaude",
|
|
1183
|
+
"copilot",
|
|
1184
|
+
"opencode",
|
|
1185
|
+
"codex",
|
|
1186
|
+
"gemini"
|
|
1187
|
+
]
|
|
1188
|
+
},
|
|
1159
1189
|
"mcp-server-swl": {
|
|
1160
1190
|
"descripcion": "MCP server stub experimental que expone memoria SWL (aprendizajes, sesiones, instintos) a clientes MCP externos (Cursor, Gemini CLI, OpenCode, Cline, Claude Desktop). Modo stdio. 3 endpoints: swl_memory_search, swl_aprendizajes_recientes, swl_instintos_activos. SIN auth, SIN rate limiting, SIN HTTP transport, SIN tests integración. NO USAR EN PRODUCCIÓN. Trigger para hardening: uso real ≥2 runtimes diferentes consistentemente por ≥1 mes. El binario `swl-mcp-server` se instala automáticamente vía npm install -g (declarado en package.json bin). NO se propaga al runtime SWL — vive en el paquete npm como herramienta opt-in. Ver scripts/mcp-server/README.md para 11 limitaciones explícitas y diseño futuro.",
|
|
1161
1191
|
"tipo": "scripts",
|