aimless-security
Version:
Enhanced Runtime Application Self-Protection (RASP) and API Fuzzing Engine with advanced threat detection, behavioral analysis, and intelligent response scoring for Node.js applications
8 lines (6 loc) • 349 B
JavaScript
// Quick test of Unicode detection
const pattern = /[\uFF03-\uFF5E]/;
const testString = 'SELECT * FROM users';
console.log('Test string:', testString);
console.log('Pattern matches:', pattern.test(testString));
console.log('Characters:', testString.split('').map(c => `${c} (U+${c.charCodeAt(0).toString(16).toUpperCase()})`));