Spaces:
Build error
Build error
File size: 1,002 Bytes
d571830 | 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 | const TOKEN_KEY = "anicove_token";
const USER_KEY = "anicove_user";
const SQLI_RE = /(\b(select|insert|update|delete|drop|union|exec|cast|convert|declare|xp_|char|nchar|varchar|alter|create|truncate|sleep|benchmark|waitfor|information_schema)\b|--|;|\/\*|\*\/|0x[0-9a-fA-F]+|\bor\b\s+.{0,30}[=<>]|\band\b\s+.{0,30}[=<>])/i;
export function hasSQLI(val) {
return SQLI_RE.test(val);
}
export function getToken() {
try {
return localStorage.getItem(TOKEN_KEY) || "";
} catch {
return "";
}
}
export function getUser() {
try {
return JSON.parse(localStorage.getItem(USER_KEY) || "null");
} catch {
return null;
}
}
export function setSession(token, user) {
try {
localStorage.setItem(TOKEN_KEY, token);
localStorage.setItem(USER_KEY, JSON.stringify(user));
} catch {
/* storage unavailable */
}
}
export function clearSession() {
try {
localStorage.removeItem(TOKEN_KEY);
localStorage.removeItem(USER_KEY);
} catch {
/* ignore */
}
}
|