WAF增加“包含SQL注入”操作符

This commit is contained in:
GoEdgeLab
2023-12-07 20:25:35 +08:00
parent a83fae4b2a
commit 94e6717c65
20 changed files with 14967 additions and 27 deletions

View File

@@ -0,0 +1,21 @@
#ifndef LIBINJECTION_XSS
#define LIBINJECTION_XSS
#ifdef __cplusplus
extern "C" {
#endif
/**
* HEY THIS ISN'T DONE
*/
/* pull in size_t */
#include <string.h>
int libinjection_is_xss(const char* s, size_t len, int flags);
#ifdef __cplusplus
}
#endif
#endif