"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SpecialCharsStrategy = void 0; const APPLICABLE_TYPES = ['text', 'email', 'search', 'textarea']; class SpecialCharsStrategy { constructor() { this.name = 'SpecialCharsStrategy'; } appliesTo(type) { return APPLICABLE_TYPES.includes(type); } values() { return [ "' OR 1=1 --", '', '../../etc/passwd', '${7*7}', '\x00\x01\x02', ]; } } exports.SpecialCharsStrategy = SpecialCharsStrategy;