UNPKG

sicua

Version:

A tool for analyzing project structure and dependencies

14 lines (13 loc) 560 B
/** * SQL injection detection constants */ export declare const SQL_LIBRARIES: string[]; export declare const SQL_KEYWORDS: string[]; export declare const SQL_EXECUTION_METHODS: string[]; export declare const DANGEROUS_SQL_PATTERNS: RegExp[]; export declare const SAFE_QUERY_PATTERNS: RegExp[]; export declare const SQL_INJECTION_INPUT_SOURCES: string[]; export declare const SAFE_ORM_METHODS: string[]; export declare const RAW_SQL_METHODS: string[]; export declare const SQL_VARIABLE_NAMES: string[]; export declare const STRING_CONCAT_PATTERNS: RegExp[];