File size: 7,839 Bytes
20f83d9 | 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 | /**
* LLM Prompt Injection Sanitizer
*
* Strips known prompt-injection patterns from untrusted strings (e.g. RSS
* headlines) before they are embedded in an LLM prompt.
*
* Design philosophy β blocklist of *bad* patterns only:
* β Quotes, colons, dashes, em-dashes, ellipses β preserved (normal headlines)
* β Unicode letters and emoji β preserved
* β Sentence-level punctuation β preserved
* β Role markers (e.g. "SYSTEM:", "### Assistant") β stripped
* β Instruction overrides ("Ignore previous β¦") β stripped
* β Model-specific delimiters ("<|im_start|>", etc.) β stripped
* β ASCII / Unicode control characters (U+0000-U+001F, U+007F, U+2028-U+2029) β stripped
* β Null bytes, zero-width joiners / non-joiners β stripped
*
* The sanitizer never throws. If input is not a string it returns '' so
* callers can safely map over headline arrays without extra guards.
*
* Security note:
* This is a defense-in-depth reduction layer, not a security boundary.
* Prompt-injection blocklists are inherently bypassable (for example via novel
* encodings, obfuscation, or semantically malicious content), so callers must
* keep additional controls in place (strict output validation, model/provider
* guardrails, and least-privilege tool access).
*
* References:
* OWASP LLM Top 10 β LLM01: Prompt Injection
*/
const INJECTION_PATTERNS = [
// Model-specific delimiter tokens
/<\|(?:im_start|im_end|begin_of_text|end_of_text|eot_id|start_header_id|end_header_id)\|>/gi,
/<\|(?:endoftext|fim_prefix|fim_middle|fim_suffix|pad)\|>/gi,
/\[(?:INST|\/INST|SYS|\/SYS)\]/gi,
/<\/?(system|user|assistant|prompt|context|instruction)\b[^>]*>/gi,
// Role override markers at line start
/(?:^|\n)\s*(?:#{1,4}\s*)?(?:\[|\()?\s*(?:system|human|gpt|claude|llm|model|prompt)\s*(?:\]|\))?\s*:/gim,
// Explicit instruction-override phrases
/ignore\s+(?:all\s+)?(?:previous|above|prior|earlier|the\s+above)\s+instructions?\b/gi,
/(?:disregard|forget|bypass|override|overwrite|skip)\s+(?:all\s+)?(?:previous|above|prior|earlier|your|the)\s+(?:instructions?|prompt|rules?|guidelines?|constraints?|training)\b/gi,
/(?:you\s+are\s+now|act\s+as|pretend\s+(?:to\s+be|you\s+are)|roleplay\s+as|simulate\s+(?:being\s+)?a)\s+(?:a\s+|an\s+)?(?:(?:different|new|another|unrestricted|jailbroken|evil|helpful)\s+)?(?:ai|assistant|model|chatbot|llm|bot|gpt|claude)\b/gi,
/do\s+not\s+(?:follow|obey|adhere\s+to|comply\s+with)\s+(?:the\s+)?(?:previous|above|system|original)\s+(?:instructions?|rules?|prompt)\b/gi,
/(?:output|print|display|reveal|show|repeat|recite|write\s+out)\s+(?:your\s+)?(?:system\s+prompt|instructions?|initial\s+prompt|original\s+prompt|context)\b/gi,
// Prompt boundary separator lines
/^[-=]{3,}$/gm,
/^#{3,}\s/gm,
];
const ROLE_PREFIX_RE = /^\s*(?:#{1,4}\s*)?(?:\[|\()?\s*(?:user|assistant|bot)\s*(?:\]|\))?\s*:\s*/i;
const ROLE_OVERRIDE_STRONG_RE = /\b(?:you\s+are\s+now|act\s+as|pretend\s+(?:to\s+be|you\s+are)|roleplay\s+as|simulate\s+(?:being\s+)?a|from\s+now\s+on|do\s+not\s+(?:follow|obey|adhere\s+to|comply\s+with))\b/i;
const ROLE_OVERRIDE_COMMAND_RE = /\b(?:ignore|disregard|forget|bypass|override|overwrite|skip|reveal|output|print|display|show|repeat|recite|write\s+out)\b/i;
const ROLE_OVERRIDE_FOLLOW_RE = /\b(?:follow|obey)\s+(?:all\s+)?(?:the\s+|my\s+|your\s+)?(?:instructions?|prompt|rules?|guidelines?|constraints?)\b/i;
const ROLE_OVERRIDE_TARGET_RE = /\b(?:instructions?|prompt|system|rules?|guidelines?|constraints?|training|context|developer\s+message)\b/i;
function isRolePrefixedInjectionLine(line) {
if (!ROLE_PREFIX_RE.test(line)) return false;
if (ROLE_OVERRIDE_STRONG_RE.test(line)) return true;
if (ROLE_OVERRIDE_FOLLOW_RE.test(line)) return true;
return ROLE_OVERRIDE_COMMAND_RE.test(line) && ROLE_OVERRIDE_TARGET_RE.test(line);
}
// U+0000-U+001F ASCII controls (except tab U+0009, newline U+000A, carriage return U+000D)
// U+007F-U+009F DEL and C1 control characters
// U+00AD soft hyphen
// U+200B-U+200D zero-width space / non-joiner / joiner
// U+2028-U+2029 Unicode line/paragraph separator
// U+FEFF BOM / zero-width no-break space
const CONTROL_CHARS_RE = /[\x00-\x08\x0B\x0C\x0E-\x1F\x7F-\x9F\xAD\u200B-\u200D\u2028\u2029\uFEFF]/g;
/**
* Sanitize a single string for safe inclusion in an LLM prompt.
* @param {unknown} input
* @returns {string}
*/
export function sanitizeForPrompt(input) {
if (typeof input !== 'string') return '';
let s = input;
s = s.replace(CONTROL_CHARS_RE, '');
s = s
.split('\n')
.filter(line => !isRolePrefixedInjectionLine(line))
.join('\n');
for (const pattern of INJECTION_PATTERNS) {
pattern.lastIndex = 0;
s = s.replace(pattern, ' ');
}
s = s.replace(/\s{2,}/g, ' ').trim();
return s;
}
/**
* Sanitize a string for safe inclusion in a *single line* of an LLM prompt.
*
* sanitizeForPrompt deliberately preserves a lone newline β it splits on '\n'
* to drop role-prefixed injection lines, rejoins, then collapses only runs of
* 2+ whitespace. That is right for prose blocks, and wrong everywhere the
* newline is the *delimiter* of the surrounding block: a `- ${title}` list
* joined with '\n', or a `Label: ${value}` line inside a section. There a
* single '\n' in feed text forges an extra bullet or section the model reads as
* a separate, real datum (#5850 for liveHeadlines, #5857 for its siblings).
*
* Sanitizing the content is not enough when the delimiter is part of the
* content's alphabet, so this variant also collapses every whitespace run β
* newlines, carriage returns and tabs included β to a single space.
*
* Use this at line-composing call sites; keep plain sanitizeForPrompt for prose
* bodies whose internal newlines are legitimate.
*
* @param {unknown} input
* @returns {string}
*/
export function sanitizeForPromptLine(input) {
return sanitizeForPrompt(input).replace(/\s+/g, ' ').trim();
}
/**
* Sanitize an array of headline strings, dropping any that become empty
* after sanitization.
* @param {unknown[]} headlines
* @returns {string[]}
*/
export function sanitizeHeadlines(headlines) {
if (!Array.isArray(headlines)) return [];
return headlines
.map(sanitizeForPrompt)
.filter(h => h.length > 0);
}
// Structural-only patterns safe to apply to headlines without mangling
// legitimate tech/security news (e.g. "Output your system prompt" as a story subject).
const STRUCTURAL_PATTERNS = [
/<\|(?:im_start|im_end|begin_of_text|end_of_text|eot_id|start_header_id|end_header_id)\|>/gi,
/<\|(?:endoftext|fim_prefix|fim_middle|fim_suffix|pad)\|>/gi,
/\[(?:INST|\/INST|SYS|\/SYS)\]/gi,
/<\/?(system|user|assistant|prompt|context|instruction)\b[^>]*>/gi,
/^[-=]{3,}$/gm,
];
/**
* Sanitize a headline for safe inclusion in an LLM prompt, preserving
* legitimate headlines that quote injection phrases as news subjects.
*
* Only structural/delimiter patterns are stripped β semantic instruction
* phrases are left intact to avoid mangling tech/security news headlines.
* Full sanitizeForPrompt() is reserved for free-form geoContext.
*
* @param {unknown} input
* @returns {string}
*/
export function sanitizeHeadline(input) {
if (typeof input !== 'string') return '';
let s = input.replace(CONTROL_CHARS_RE, '');
for (const pattern of STRUCTURAL_PATTERNS) {
pattern.lastIndex = 0;
s = s.replace(pattern, ' ');
}
return s.replace(/\s{2,}/g, ' ').trim();
}
/**
* Apply sanitizeHeadline() over an array, dropping empties.
* @param {unknown[]} headlines
* @returns {string[]}
*/
export function sanitizeHeadlinesLight(headlines) {
if (!Array.isArray(headlines)) return [];
return headlines
.map(sanitizeHeadline)
.filter(h => h.length > 0);
}
|