File size: 9,101 Bytes
6111b2b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 | /**
* Input Sanitizer β FASE-01 Security Hardening
*
* Detects prompt injection patterns and redacts PII from LLM requests.
* Configurable via environment variables or dashboard settings.
*
* @module inputSanitizer
*/
// βββ Prompt Injection Patterns βββββββββββββββββββββββββββββββββββββββ
/** @type {Array<{name: string, pattern: RegExp, severity: string}>} */
const INJECTION_PATTERNS = [
{
name: "system_override",
pattern:
/\b(ignore|disregard|forget)\s+(all\s+)?(previous|prior|above|earlier)\s+(instructions?|prompts?|rules?|context)/i,
severity: "high",
},
{
name: "role_hijack",
pattern:
/\b(you\s+are\s+now|act\s+as\s+if|pretend\s+(to\s+be|you\s+are)|from\s+now\s+on\s+you\s+are)\b/i,
severity: "medium",
},
{
name: "system_prompt_leak",
pattern:
/\b(reveal|show|display|print|output|repeat)\s+(your\s+)?(system\s+prompt|instructions?|initial\s+prompt|hidden\s+prompt)/i,
severity: "high",
},
{
name: "delimiter_injection",
pattern: /(\[SYSTEM\]|\[INST\]|<<SYS>>|<\|im_start\|>|<\|system\|>|<\|user\|>)/i,
severity: "high",
},
{
name: "jailbreak_dan",
pattern: /\b(DAN|do\s+anything\s+now|jailbreak|developer\s+mode|enable\s+developer)\b/i,
severity: "medium",
},
{
name: "encoding_evasion",
pattern:
/\b(base64\s+decode|rot13|hex\s+decode|unicode\s+escape)\b.*\b(instruction|prompt|command)\b/i,
severity: "medium",
},
];
// βββ PII Patterns ββββββββββββββββββββββββββββββββββββββββββββββββββββ
/** @type {Array<{name: string, pattern: RegExp, replacement: string}>} */
const PII_PATTERNS = [
{
name: "email",
pattern: /\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,}\b/g,
replacement: "[EMAIL_REDACTED]",
},
{
name: "cpf",
pattern: /\b\d{3}\.\d{3}\.\d{3}-\d{2}\b/g,
replacement: "[CPF_REDACTED]",
},
{
name: "cnpj",
pattern: /\b\d{2}\.\d{3}\.\d{3}\/\d{4}-\d{2}\b/g,
replacement: "[CNPJ_REDACTED]",
},
{
name: "credit_card",
pattern: /\b(?:\d{4}[-\s]?){3}\d{4}\b/g,
replacement: "[CARD_REDACTED]",
},
{
name: "phone_br",
pattern: /\b\(?\d{2}\)?\s?\d{4,5}-?\d{4}\b/g,
replacement: "[PHONE_REDACTED]",
},
{
name: "ssn_us",
pattern: /\b\d{3}-\d{2}-\d{4}\b/g,
replacement: "[SSN_REDACTED]",
},
];
// βββ Configuration ββββββββββββββββββββββββββββββββββββββββββββββββββββ
/**
* Get sanitizer configuration from environment.
* @returns {{ enabled: boolean, mode: string, piiRedaction: boolean }}
*/
function getConfig() {
return {
enabled: process.env.INPUT_SANITIZER_ENABLED !== "false",
mode: process.env.INPUT_SANITIZER_MODE || "warn", // "warn" | "block" | "redact"
piiRedaction: process.env.PII_REDACTION_ENABLED === "true",
};
}
// βββ Core Functions βββββββββββββββββββββββββββββββββββββββββββββββββββ
/**
* @typedef {Object} SanitizeResult
* @property {boolean} blocked - Whether the request should be blocked
* @property {boolean} modified - Whether the content was modified (PII redacted)
* @property {Array<{pattern: string, severity: string, match: string}>} detections
* @property {Array<{type: string, count: number}>} piiDetections
* @property {Object} [sanitizedBody] - Modified body (if PII redaction active)
*/
/**
* Extract all message content strings from a chat body.
* Supports both `messages[]` (OpenAI/Claude) and `input[]` (Responses API).
* @param {Object} body
* @returns {string[]}
*/
function extractMessageContents(body) {
const contents = [];
const messages = body.messages || body.input || [];
for (const msg of messages) {
if (typeof msg === "string") {
contents.push(msg);
} else if (typeof msg.content === "string") {
contents.push(msg.content);
} else if (Array.isArray(msg.content)) {
for (const part of msg.content) {
if (typeof part === "string") {
contents.push(part);
} else if (part.text) {
contents.push(part.text);
}
}
}
}
// Also check system prompt
if (typeof body.system === "string") {
contents.push(body.system);
} else if (Array.isArray(body.system)) {
for (const s of body.system) {
if (typeof s === "string") contents.push(s);
else if (s.text) contents.push(s.text);
}
}
return contents;
}
/**
* Scan content for prompt injection patterns.
* @param {string} text
* @returns {Array<{pattern: string, severity: string, match: string}>}
*/
function detectInjection(text) {
const detections = [];
for (const rule of INJECTION_PATTERNS) {
const match = text.match(rule.pattern);
if (match) {
detections.push({
pattern: rule.name,
severity: rule.severity,
match: match[0].slice(0, 50), // truncate for logging
});
}
}
return detections;
}
/**
* Scan and optionally redact PII from text.
* @param {string} text
* @param {boolean} redact - If true, replaces PII with placeholders
* @returns {{ text: string, detections: Array<{type: string, count: number}> }}
*/
function processPII(text, redact = false) {
const detections = [];
let processed = text;
for (const rule of PII_PATTERNS) {
const matches = text.match(rule.pattern);
if (matches && matches.length > 0) {
detections.push({ type: rule.name, count: matches.length });
if (redact) {
processed = processed.replace(rule.pattern, rule.replacement);
}
}
}
return { text: processed, detections };
}
/**
* Sanitize a chat request body.
*
* @param {Object} body - The chat completion request body
* @param {Object} [logger] - Logger instance (defaults to console)
* @returns {SanitizeResult}
*/
export function sanitizeRequest(body, logger = console) {
const config = getConfig();
const result = {
blocked: false,
modified: false,
detections: [],
piiDetections: [],
sanitizedBody: null,
};
if (!config.enabled) return result;
const contents = extractMessageContents(body);
const fullText = contents.join("\n");
// ββ Prompt Injection Detection ββ
const injections = detectInjection(fullText);
if (injections.length > 0) {
result.detections = injections;
const highSeverity = injections.filter((d) => d.severity === "high");
const logLevel = highSeverity.length > 0 ? "warn" : "info";
if (logger[logLevel]) {
logger[logLevel](
`[SANITIZER] Prompt injection detected: ${injections.map((d) => d.pattern).join(", ")}`
);
}
if (config.mode === "block" && highSeverity.length > 0) {
result.blocked = true;
return result;
}
}
// ββ PII Detection / Redaction ββ
if (config.piiRedaction) {
const piiResult = processPII(fullText, config.mode === "redact");
result.piiDetections = piiResult.detections;
if (piiResult.detections.length > 0) {
logger.warn?.(
`[SANITIZER] PII detected: ${piiResult.detections.map((d) => `${d.type}(${d.count})`).join(", ")}`
);
if (config.mode === "redact") {
// Deep clone and replace message contents with redacted versions
result.sanitizedBody = redactBody(body);
result.modified = true;
}
}
}
return result;
}
/**
* Deep clone body and replace message contents with PII-redacted versions.
* @param {Object} body
* @returns {Object}
*/
function redactBody(body) {
const clone = JSON.parse(JSON.stringify(body));
const messages = clone.messages || clone.input || [];
for (const msg of messages) {
if (typeof msg.content === "string") {
msg.content = processPII(msg.content, true).text;
} else if (Array.isArray(msg.content)) {
for (const part of msg.content) {
if (typeof part === "string") {
const idx = msg.content.indexOf(part);
msg.content[idx] = processPII(part, true).text;
} else if (part.text) {
part.text = processPII(part.text, true).text;
}
}
}
}
if (typeof clone.system === "string") {
clone.system = processPII(clone.system, true).text;
}
return clone;
}
// βββ Exports for Testing ββββββββββββββββββββββββββββββββββββββββββββββ
export { detectInjection, processPII, extractMessageContents, INJECTION_PATTERNS, PII_PATTERNS };
|