16 lines
564 B
Plaintext
16 lines
564 B
Plaintext
SecRulesEnabled; #enable naxsi
|
|
LearningMode; #enable learning mode
|
|
LibInjectionSql; #enable libinjection support for SQLI
|
|
LibInjectionXss; #enable libinjection support for XSS
|
|
|
|
#the location where naxsi will redirect the request when it is blocked
|
|
DeniedUrl "/NaxsiRequestDenied";
|
|
|
|
#the action to take when the $SQL score is superior or equal to 8
|
|
CheckRule "$SQL >= 8" BLOCK;
|
|
CheckRule "$RFI >= 8" BLOCK;
|
|
CheckRule "$TRAVERSAL >= 5" BLOCK;
|
|
CheckRule "$UPLOAD >= 5" BLOCK;
|
|
CheckRule "$XSS >= 8" BLOCK;
|
|
CheckRule "$UWA >= 8" BLOCK;
|
|
CheckRule "$EVADE >= 8" BLOCK; |