forked from rapyd-cloud/rapyd-vz-support
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path30_Apps_OtherApps.conf
6797 lines (5788 loc) · 408 KB
/
30_Apps_OtherApps.conf
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# ---------------------------------------------------------------
# Comodo ModSecurity Rules
# Copyright (C) 2022 Comodo Security solutions All rights reserved.
#
# The COMODO SECURITY SOLUTIONS Mod Security Rule Set is distributed under
# THE COMODO SECURITY SOLUTIONS END USER LICENSE AGREEMENT,
# Please see the enclosed LICENCE file for full details.
# ---------------------------------------------------------------
# This is a FILE CONTAINING CHANGED or MODIFIED RULES FROM THE:
# OWASP ModSecurity Core Rule Set (CRS)
# ---------------------------------------------------------------
SecRule REQUEST_HEADERS:Referer "@contains >" \
"id:221330,chain,msg:'COMODO WAF: XSS vulnerability in concrete5 before 5.6.3 (CVE-2014-5108)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:removeWhitespace,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule REQUEST_URI "@contains index.php/download_file" \
"t:none,t:urlDecodeUni,t:normalizePath,t:removeWhitespace,t:lowercase"
SecRule REQUEST_FILENAME "@endsWith site/error.php" \
"id:240341,chain,msg:'COMODO WAF: XSS vulnerabilities in phpipam 1.1.010 (CVE-2015-6529)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:section "@rx \D" \
"t:none"
SecRule REQUEST_FILENAME "@endsWith /www/make_subset.php" \
"id:240420,chain,msg:'COMODO WAF: XSS vulnerability in PHP Font Lib before 0.3.1 (CVE-2015-2570)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:normalizePath,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule &ARGS_GET:fontfile "@ge 1" \
"chain,t:none"
SecRule ARGS_GET:name "@contains <" \
"t:none,t:urlDecodeUni"
SecRule ARGS_GET:demo "@streq applyconvolution" \
"id:240440,chain,msg:'COMODO WAF: XSS vulnerability in WideImage 11.02.19 (CVE-2015-5519)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule REQUEST_FILENAME "@rx \/demo\/(?:index\.php)?$" \
"chain,t:none,t:urlDecodeUni,t:normalizePath,t:lowercase"
SecRule ARGS_GET:matrix "@rx \x22" \
"t:none,t:urlDecodeUni"
SecRule REQUEST_COOKIES:dcxd "@rx ^[0-9a-f]{40}$" \
"id:240490,chain,msg:'COMODO WAF: XSS vulnerability in Dotclear before 2.8.1 (CVE-2015-5651)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule REQUEST_FILENAME "@endsWith posts.php" \
"chain,t:none,t:lowercase"
SecRule ARGS_GET:/entries\[\d+\]/ "@rx \x22" \
"t:none,t:urlDecodeUni"
SecRule REQUEST_FILENAME "@endsWith backend/main.php" \
"id:241030,chain,msg:'COMODO WAF: SQL injection vulnerability in Sefrengo before 1.6.2 (CVE-2015-1428)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,t:normalizePath,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule REQUEST_COOKIES:sefrengo "@rx \'" \
"t:none,t:urlDecodeUni"
SecRule REQUEST_FILENAME "/mobile/php/translation/index.php" \
"id:220400,chain,msg:'COMODO WAF: XSS vulnerability in LiveZilla before 5.1.1.0 (CVE-2013-7002)',phase:2,block,deny,status:403,t:none,t:lowercase,t:urlDecodeUni,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:g_language "!@rx ^[a-z]{2}$"
SecRule ARGS_GET:graph_end|ARGS_GET:graph_height|ARGS_GET:graph_start|ARGS_GET:graph_width|ARGS_GET:local_graph_id|ARGS_GET:rra_id "[^0-9]" \
"id:221110,chain,msg:'COMODO WAF: Multiple SQL injection vulnerabilities in Cacti 0.8.7g, 0.8.8b and earlier (CVE-2014-2708)',phase:2,deny,log,t:none,t:urlDecodeUni,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule REQUEST_FILENAME "@streq graph_xport.php" \
"t:none,t:urlDecodeUni,t:lowercase"
SecRule REQUEST_FILENAME "@endsWith serendipity_admin.php" \
"id:240500,chain,msg:'COMODO WAF: SQL injection vulnerability in the Serendipity before 2.0.2 (CVE-2015-6943)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:serendipity[id] "@rx \D" \
"t:none"
SecRule REQUEST_URI "@rx user:(.{0,99})$" \
"id:240950,chain,msg:'COMODO WAF: XSS & SQL injection vulnerability in Pragyan CMS 3.0 (CVE-2015-1471)',phase:2,capture,deny,status:403,log,t:none,t:lowercase,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule TX:1 "@rx \D" \
"t:none"
SecRule REQUEST_FILENAME "@rx /data/form_[0-9]+/files/element_[0-9]+.{0,99}\.php" \
"id:220070,msg:'COMODO WAF: File upload vulnerability in Machform 2 (CVE-2013-4949)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule REQUEST_FILENAME "libraries\/(?:error(?:_handler)?\.class|auth\/swekey\/swekey\.auth\.lib|bookmark\.lib|common\.inc|config\.class|config\.default|data_drizzle\.inc|data_mysql\.inc|dbi\/drizzle-wrappers\.lib|display_tbl\.lib|engines\/(?:bdb|berkeleydb|binlog|innobase|innodb|memory|merge|mrg_myisam|myisam|ndbcluster|pbms|pbxt)\.lib|list_database\.class|pdf\.class|pma|pmd_common|recenttable\.class|schema\/pdf_relation_schema\.class)\.php" \
"id:220090,msg:'COMODO WAF: Multiple vulnerabilities in phpMyAdmin (CVE-2013-4998 / CVE-2013-4999 / CVE-2013-5000)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule REQUEST_COOKIES:/fusion\w+user/ "@rx [^a-z0-9\.]" \
"id:221190,msg:'COMODO WAF: SQL injection vulnerability in PHP-Fusion 7.02.01 through 7.02.05 (CVE-2013-7375)',phase:2,deny,log,t:none,t:htmlEntityDecode,t:urlDecodeUni,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule REQUEST_COOKIES:dc_passwd "!@rx ^a:\d+:{(?:i:\d+;s:\d+:\x22.{0,399}?\x22;)*}$" \
"id:221200,msg:'COMODO WAF: RCE vulnerability in Dotclear before 2.6.2 (CVE-2014-1613)',phase:2,deny,log,t:none,t:htmlEntityDecode,t:urlDecodeUni,t:lowercase,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule &TX:XSS_SQLi "@eq 0" \
"id:247460,msg:'COMODO WAF: Track same forbidden symbols to Ignore signature for Other Apps',phase:2,pass,nolog,t:none,skipAfter:'IGNORE_SFS_XSS_SQLi_OtherApps',rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule REQUEST_FILENAME "@endsWith xml.php" \
"id:210440,chain,msg:'COMODO WAF: XSS vulnerability in the Search module in Kajona 4.4 (CVE-2014-4743)',phase:2,deny,status:403,log,t:none,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:module|ARGS_GET:action "@pm search dosearch" \
"chain,t:none,t:lowercase"
SecRule ARGS_POST:searchterm "@contains <" \
"t:none,t:htmlEntityDecode,t:urlDecodeUni"
SecRule &REQUEST_COOKIES:OLCsid "@ge 1" \
"id:210450,chain,msg:'COMODO WAF: Multiple SQL injection vulnerabilities in ol-commerce 2.1.1 (CVE-2014-5104)',phase:2,deny,status:403,log,t:none,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule REQUEST_FILENAME "@endsWith olcommerce/admin/create_account.php" \
"chain,t:none,t:urlDecodeUni,t:normalizePath,t:lowercase"
SecRule ARGS_POST:entry_country_id "@contains '" \
"t:none,t:urlDecodeUni"
SecRule &ARGS_POST:action "@ge 1" \
"id:210451,chain,msg:'COMODO WAF: Multiple SQL injection vulnerabilities in ol-commerce 2.1.1 (CVE-2014-5104)',phase:2,deny,status:403,log,t:none,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule REQUEST_FILENAME "@endsWith olcommerce/create_account.php" \
"chain,t:none,t:urlDecodeuni,t:normalizePath,t:lowercase"
SecRule ARGS_POST:country "@contains '" \
"t:none,t:urlDecodeUni"
SecRule REQUEST_FILENAME "@endsWith olcommerce/affiliate_signup.php" \
"id:210452,chain,msg:'COMODO WAF: Multiple SQL injection vulnerabilities in ol-commerce 2.1.1 (CVE-2014-5104)',phase:2,deny,status:403,log,t:none,t:urlDecodeuni,t:normalizePath,t:lowercase,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:a_country "@contains '" \
"t:none,t:urlDecodeuni"
SecRule REQUEST_FILENAME "@contains /public/external/pydio/plugins/editor.webodf/frame.php" \
"id:210540,chain,msg:'COMODO WAF: XSS vulnerability in Phalcon Eye through 0.4.1 (CVE-2017-5960)',phase:2,deny,status:403,log,t:none,t:normalizePath,t:lowercase,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:token "@contains <" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule ARGS_GET:p|ARGS_GET:c "@pm comms admin" \
"id:210660,chain,msg:'COMODO WAF: XSS vulnerability in Sourcebans++ v1.5.4.7 (CVE-2017-7891)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:rebanid "@contains <" \
"t:none,t:urlDecodeUni"
SecRule REQUEST_FILENAME "@endsWith /script/editor/markitup/preview/markdown.php" \
"id:210670,chain,msg:'COMODO WAF: XSS vulnerability in pi-engine/pi 2.5.0 (CVE-2017-7251)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:normalisePath,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:preview "@contains <" \
"t:none,t:urlDecodeUni"
SecRule ARGS_POST:page_meta_title "@contains <" \
"id:210960,chain,msg:'COMODO WAF: XSS in Monstra CMS through 3.0.4 (CVE-2018-6550)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:id "@streq pages" \
"chain,t:none,t:lowercase"
SecRule &REQUEST_COOKIES:PHPSESSID "@ge 1" \
"t:none"
SecRule &ARGS_GET:state "@ge 1" \
"id:211260,chain,msg:'COMODO WAF: XSS vulnerability in MiniCMS v1.10 (CVE-2018-15899, CVE-2018-16298)',phase:2,deny,status:403,log,t:none,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule &REQUEST_COOKIES:mc_token "@ge 1" \
"chain,t:none"
SecRule ARGS_GET:date|ARGS_GET:tag "@rx \x22|<" \
"chain,t:none,t:urlDecodeUni"
SecRule REQUEST_FILENAME "@rx mc\-admin\/(?:post|page)\.php$" \
"t:none,t:urlDecodeUni,t:normalisePath,t:lowercase"
SecRule REQUEST_FILENAME "@endsWith admin/auth_config.php" \
"id:215020,chain,msg:'COMODO WAF: Multiple XSS ulnerabilities in Moodle-LMS through 2.6.11, 2.7.x before 2.7.13, 2.8.x before 2.8.11, 2.9.x before 2.9.5, and 3.0.x before 3.0.3 (CVE-2016-2152)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:normalizePath,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule &REQUEST_COOKIES_NAMES:MoodleSession "@ge 1" \
"chain,t:none"
SecRule ARGS_POST:auth "@streq db" \
"chain,t:none,t:lowercase"
SecRule ARGS_POST "@rx \x22" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule ARGS:m1_title "@contains <" \
"id:215080,chain,msg:'COMODO WAF: XSS vulnerability in CMS Made Simple v2.1.6 (CVE-2017-7255)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule &REQUEST_COOKIES:cms_passhash "@ge 1" \
"chain,t:none"
SecRule REQUEST_FILENAME "@endsWith /admin/moduleinterface.php" \
"t:none,t:urlDecodeUni,t:normalizePath,t:lowercase"
SecRule QUERY_STRING "@rx (login|signup)" \
"id:220080,chain,msg:'COMODO WAF: Multiple XSS vulnerabilities in Mintboard 0.3 (CVE-2013-4951)',phase:2,deny,status:403,t:none,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:name|ARGS_POST:pass "@rx </?script" \
"t:none,t:urlDecodeUni,t:lowercase,t:removeWhitespace"
SecRule REQUEST_FILENAME "@endsWith save.php" \
"id:220120,chain,msg:'COMODO WAF: XSS vulnerability in view.php in Machform 2 (CVE-2013-4950)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:4,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:form "@rx ^\{\x22id\x22:.{0,399}</?script" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode,t:lowercase,t:removeWhitespace"
SecRule REQUEST_FILENAME "@endsWith save.php" \
"id:220122,chain,msg:'COMODO WAF: XSS vulnerability in view.php in Machform 2 (CVE-2013-4950)',phase:2,deny,status:403,log,t:lowercase,rev:4,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:elements "@rx ^\{\x22elements\x22:\[\{\x22title\x22:\x22.{0,399}</?script" \
"t:none,t:removeWhitespace,t:lowercase,t:urlDecodeUni"
SecRule REQUEST_METHOD "@streq POST" \
"id:220140,chain,msg:'COMODO WAF: XSS vulnerability in Review Board 1.6.x before 1.6.17 and 1.7.x before 1.7.10 (CVE-2013-2209)',phase:2,deny,status:403,log,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule REQUEST_URI "@contains /account/register/" \
"chain,t:none,t:urlDecodeUni,t:lowercase,t:removeWhitespace"
SecRule ARGS:first_name|ARGS:last_name "@rx <script" \
"t:none,t:urlDecodeUni,t:lowercase,t:removeWhitespace"
SecRule REQUEST_METHOD "@streq GET" \
"id:220170,chain,msg:'COMODO WAF: XSS vulnerability in RiteCMS 1.0.0 (CVE-2013-5317)',phase:2,deny,status:403,log,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule REQUEST_FILENAME "cms/index\.php" \
"chain,t:none,t:urlDecodeUni,t:lowercase"
SecRule ARGS:mode "@rx <script" \
"t:none,t:urlDecodeUni,t:lowercase,t:removeWhitespace"
SecRule &ARGS_GET:owa_do "@ge 1" \
"id:220420,chain,msg:'COMODO WAF: SQL injection vulnerability in Open Web Analytics (OWA) before 1.5.5 (CVE-2014-1206)',phase:2,deny,status:403,log,t:none,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:owa_action "@streq base.passwordresetrequest" \
"chain,t:none,t:lowercase"
SecRule ARGS_POST:owa_email_address "@contains '" \
"t:none,t:urlDecodeUni"
SecRule &ARGS_POST:cid "@ge 1" \
"id:220430,chain,msg:'COMODO WAF: Remote command execution vulnerability in SkyBlueCanvas CMS before 1.1 r248-04 (CVE-2014-1683)',phase:2,deny,status:403,log,t:none,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule &ARGS_GET:pid "@ge 1" \
"chain,t:none"
SecRule ARGS_POST:email|ARGS_POST:name|ARGS_POST:subject "@rx \x22;" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_BASENAME "@streq profiles.php" \
"id:220510,chain,msg:'COMODO WAF: Multiple XSS vulnerabilities in glFusion before 1.2.2.pl4 (CVE-2013-1466)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:subject "@contains <" \
"t:none,t:urlDecodeUni"
SecRule REQUEST_FILENAME "@endsWith /calendar/index.php" \
"id:220511,chain,msg:'COMODO WAF: Multiple XSS vulnerabilities in glFusion before 1.2.2.pl4 (CVE-2013-1466)',phase:2,deny,status:403,log,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:address1|ARGS_POST:address2|ARGS_POST:calendar_type|ARGS_POST:city|ARGS_POST:state|ARGS_POST:title|ARGS_POST:url|ARGS_POST:zipcode "@contains <" \
"t:none,t:urlDecodeUni"
SecRule ARGS_POST:title|ARGS_POST:url "@contains <" \
"id:220512,chain,msg:'COMODO WAF: Multiple XSS vulnerabilities in glFusion before 1.2.2.pl4 (CVE-2013-1466)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule REQUEST_FILENAME "@endsWith /links/index.php" \
"t:none,t:urlDecodeUni,t:normalizePath,t:lowercase"
SecRule ARGS_GET:func "@within modinfonew modify_instance aliases assignprivileges" \
"id:220530,chain,msg:'COMODO WAF: XSS vulnerabilities in Xaraya 2.4.0-b1 and earlier (CVE-2013-3639)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:id|ARGS_GET:interface|ARGS_GET:name|ARGS_GET:tabmodule "@contains <" \
"t:none,t:urlDecodeUni"
SecRule ARGS_GET:nick "@contains <" \
"id:220540,chain,msg:'COMODO WAF: Multiple XSS vulnerabilities in Command School Student Management System 1.06.01 (CVE-2014-1914)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule REQUEST_FILENAME "@endsWith /sw/chat/message.php" \
"t:none,t:urlDecodeUni,t:normalizePath,t:lowercase"
SecRule ARGS_POST:topic "@contains <" \
"id:220541,chain,msg:'COMODO WAF: Multiple XSS vulnerabilities in Command School Student Management System 1.06.01 (CVE-2014-1914)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule REQUEST_FILENAME "@endsWith /sw/add_topic.php" \
"t:none,t:urlDecodeUni,t:normalizePath,t:lowercase"
SecRule ARGS_GET:module "@streq com_vtiger_workflow" \
"id:220560,chain,msg:'COMODO WAF: XSS vulnerability in vTiger CRM 5.4.0 (CVE-2013-7326)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:return_url "@rx \x22|<" \
"t:none,t:urlDecodeUni,t:lowercase"
SecRule REQUEST_BASENAME "@streq agenda.php" \
"id:220570,chain,msg:'COMODO WAF: Multiple XSS vulnerabilities in GuppY before 4.6.28 (CVE-2013-5983)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:an "@rx \x22|<" \
"t:none,t:urlDecodeUni"
SecRule REQUEST_FILENAME "@endsWith /mobile/thread.php" \
"id:220571,chain,msg:'COMODO WAF: Multiple XSS vulnerabilities in GuppY before 4.6.28 (CVE-2013-5983)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:normalizePath,t:lowercase,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:cat "@rx \x22|<" \
"t:none,t:urlDecodeUni"
SecRule &REQUEST_COOKIES:Login "@ge 1" \
"id:220590,chain,msg:'COMODO WAF: SQLi vulnerabilities in AuraCMS 2.3 and earlier (CVE-2014-1401)',phase:2,deny,status:403,log,t:none,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule REQUEST_HEADERS:CLIENT_IP|REQUEST_HEADERS:FORWARDED_FOR|REQUEST_HEADERS:X_FORWARDED|REQUEST_HEADERS:X_FORWARDED_FOR "@rx \'|\x22" \
"t:none,t:urlDecodeUni"
SecRule &REQUEST_COOKIES:Login "@ge 1" \
"id:220591,chain,msg:'COMODO WAF: Multiple SQL injection vulnerabilities in AuraCMS 2.3 and earlier (CVE-2014-1401)',phase:2,deny,status:403,log,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule REQUEST_HEADERS:FORWARDED "@contains '" \
"t:none,t:urlDecodeUni"
SecRule REQUEST_BASENAME "@streq ilias.php" \
"id:220710,chain,msg:'COMODO WAF: File upload and multiple RCE, XSS vulnerabilities in ILIAS 4.4.1 (CVE-2014-2088, CVE-2014-2089, CVE-2014-2090)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,rev:4,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:baseClass "@streq ilPersonalDesktopGUI" \
"chain,t:none,t:urlDecodeUni"
SecRule ARGS_POST:tar|ARGS_POST:title "@rx \'|\x22|\<"
SecRule REQUEST_BASENAME "@streq ilias.php" \
"id:220711,chain,msg:'COMODO WAF: File upload and multiple RCE, XSS vulnerabilities in ILIAS 4.4.1 (CVE-2014-2088, CVE-2014-2089, CVE-2014-2090)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,rev:4,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:baseClass "@streq ilRepositoryGUI" \
"chain,t:none,t:urlDecodeUni"
SecRule ARGS_POST:tar "@rx \'|\x22|\<" \
"t:none,t:urlDecodeUni"
SecRule REQUEST_FILENAME "mods/_standard/forums/admin/forum_add\.php" \
"id:220750,chain,msg:'COMODO WAF: XSS vulnerability in ATutor 2.1.1 (CVE-2014-2091)',deny,status:403,log,t:none,t:urlDecodeUni,multiMatch,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:title "@rx \x22"
SecRule REQUEST_FILENAME "mods/_standard/forums/admin/forum_add\.php" \
"id:220751,chain,msg:'COMODO WAF: XSS vulnerability in ATutor 2.1.1 (CVE-2014-2091)',deny,status:403,log,t:none,t:urlDecodeUni,multiMatch,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:description "<"
SecRule ARGS_POST:text "<" \
"id:220760,chain,msg:'COMODO WAF: Blocking XSS attack',deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule REQUEST_FILENAME "@contains /index.php/guestbook/index/newentry"
SecRule REQUEST_COOKIES_NAMES "@beginsWith cmssessid" \
"id:220780,chain,msg:'COMODO WAF: XSS vulnerability in CMS Made Simple (CVE-2014-2092 and CVE-2014-0334)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:group|ARGS_POST:htmlblob|ARGS_POST:title|ARGS_POST:url|ARGS_POST:stylesheet_name|ARGS_POST:template_name|ARGS_POST:template|ARGS_POST:css_name|ARGS_POST:metadata|ARGS_POST:sitedownmessage|ARGS_POST:page_metadata|ARGS_POST:date_format_string|ARGS_POST:filteruser|ARGS_POST:handler "@contains <" \
"chain,t:none,t:urlDecodeUni"
SecRule REQUEST_FILENAME "@rx \/admin\/(?:add(?:group|htmlblob|bookmark|template|css)|copy(?:stylesheet|template)|edit(?:bookmark|event)|list(?:css|templates)|siteprefs|pagedefaults|myaccount|adminlog)\.php$" \
"t:none,t:urlDecodeUni,t:normalisePath,t:lowercase"
SecRule ARGS_POST:default_cms_lang|ARGS_POST:docroot "@contains <" \
"id:220790,chain,msg:'COMODO WAF: XSS vulnerability in CMS Made Simple 1.11.10 (CVE-2014-2092)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule REQUEST_URI "@contains /install/" \
"t:none,t:urlDecodeUni,t:normalizePath,t:lowercase"
SecRule REQUEST_COOKIES_NAMES "@beginsWith cmssessid" \
"id:220791,chain,msg:'COMODO WAF: XSS vulnerability in CMS Made Simple 1.11.10 (CVE-2014-2092)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:action "@contains <" \
"chain,t:none,t:urlDecodeUni"
SecRule REQUEST_FILENAME "@endsWith lib/filemanager/imagemanager/editorframe.php" \
"t:none,t:urlDecodeUni,t:normalizePath,t:lowercase"
SecRule REQUEST_BASENAME "@streq admin.php" \
"id:220820,chain,msg:'COMODO WAF: XSS vulnerability in Collabtive 1.2 (CVE-2014-3247)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:action "@streq addpro" \
"chain,t:none,t:lowercase"
SecRule ARGS_POST:desc "@rx (?:'|\x22|<)" \
"t:none"
SecRule ARGS_GET:query "@rx \x22" \
"id:220900,chain,msg:'COMODO WAF: XSS vulnerability in SeedDMS (formerly LetoDMS and MyDMS) before 4.3.4 (CVE-2014-2280)',deny,status:403,log,t:none,t:lowercase,t:urlDecodeUni,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule REQUEST_FILENAME "/op\.search\.php" \
"t:none,t:lowercase,t:urlDecodeUni"
SecRule ARGS_POST:keywords "@rx \x22" \
"id:220910,chain,msg:'COMODO WAF: XSS vulnerability in MyBB 1.6.12 and earlier (CVE-2014-1840)',deny,status:403,log,t:none,t:lowercase,t:urlDecodeUni,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule REQUEST_FILENAME "/upload/search\.php" \
"chain,t:none,t:lowercase,t:urlDecodeUni"
SecRule ARGS:action "do_search"
SecRule Request_URI "@rx \/shared-apartments-rooms\/.{0,399}<" \
"id:220930,msg:'COMODO WAF: XSS vulnerability in Open Classifieds 2 before 2.1.3 (CVE-2014-2024)',phase:2,deny,status:403,log,t:none,t:htmlEntityDecode,t:lowercase,t:urlDecodeUni,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:/^extra_/ "@rx \x22" \
"id:220940,chain,msg:'COMODO WAF: Multiple XSS vulnerabilities in Dokeos 2.1.1 (CVE-2014-1877)',phase:2,deny,status:403,log,rev:7,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule Request_FILENAME "(profile|user_edit|user_add)\.php"
SecRule ARGS_POST:title "@rx \x22>" \
"id:220941,chain,msg:'COMODO WAF: Multiple XSS vulnerabilities in Dokeos 2.1.1 (CVE-2014-1877)',phase:2,deny,status:403,log,rev:7,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule Request_FILENAME "groups\.php"
SecRule Request_FILENAME "new_message\.php" \
"id:220942,chain,msg:'COMODO WAF: Multiple XSS vulnerabilities in Dokeos 2.1.1 (CVE-2014-1877)',phase:2,deny,status:403,log,t:none,t:htmlEntityDecode,t:lowercase,t:urlDecodeUni,rev:7,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS:content "@rx \x22>"
SecRule ARGS_POST:title "@rx \x22" \
"id:221050,chain,msg:'COMODO WAF: XSS vulnerability in Mahara before 1.5.12, 1.6.x before 1.6.7, and 1.7.x before 1.7.3 (CVE-2013-4430)',phase:2,deny,status:403,log,t:none,t:htmlEntityDecode,t:urlDecodeUni,t:lowercase,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule REQUEST_FILENAME "/artefact/internal/editnote\.php"
SecRule REQUEST_FILENAME "@endsWith admin/categories.php" \
"id:221070,chain,msg:'COMODO WAF: SQL injection vulnerability in Dotclear before 2.6.3 (CVE-2014-3783)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:normalizePath,t:lowercase,rev:4,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS:categories_order "@rx \x22(?:item_id|left|right)\x22:(?!(?:null|\x22\d+\x22|\d+)(?:,|}))" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode,t:lowercase,t:removeWhitespace"
SecRule ARGS:news_image_1|ARGS:news_image_2|ARGS_POST:news_image "@rx \'" \
"id:221297,chain,msg:'COMODO WAF: Multiple SQL injection vulnerabilities in PHP-Fusion before 7.02.06 (CVE 2013-1803)',phase:2,deny,status:403,log,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule REQUEST_FILENAME "@contains administration/news.php" \
"t:none,t:urlDecodeUni,t:removeWhitespace,t:normalizePath,t:lowercase"
SecRule ARGS_GET:leftmenu|ARGS_GET:mainmenu|ARGS_POST:dol_hide_leftmenu|ARGS_POST:dol_hide_topmenu|ARGS_POST:dol_no_mouse_hover|ARGS_POST:dol_optimize_smallscreen|ARGS_POST:dol_use_jmobile "@contains >" \
"id:221360,msg:'COMODO WAF: Multiple XSS vulnerabilities in Dolibarr ERP/CRM 3.5.3 (CVE-2014-3991)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,t:htmlEntityDecode,multiMatch,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule REQUEST_FILENAME "@endsWith user/index.php" \
"id:221361,chain,msg:'COMODO WAF: Multiple XSS vulnerabilities in Dolibarr ERP/CRM 3.5.3 (CVE-2014-3991)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,t:htmlEntityDecode,multiMatch,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:dol_hide_leftmenu|ARGS_GET:dol_hide_topmenu|ARGS_GET:dol_no_mouse_hover|ARGS_GET:dol_optimize_smallscreen|ARGS_GET:dol_use_jmobile "@contains >"
SecRule REQUEST_FILENAME "@endsWith user/logout.php" \
"id:221362,chain,msg:'COMODO WAF: Multiple XSS vulnerabilities in Dolibarr ERP/CRM 3.5.3 (CVE-2014-3991)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,t:htmlEntityDecode,multiMatch,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:dol_hide_leftmenu|ARGS_GET:dol_hide_topmenu|ARGS_GET:dol_no_mouse_hover|ARGS_GET:dol_optimize_smallscreen|ARGS_GET:dol_use_jmobile "@contains >"
SecRule REQUEST_FILENAME "@endsWith user/fiche.php" \
"id:221363,chain,msg:'COMODO WAF: Multiple XSS vulnerabilities in Dolibarr ERP/CRM 3.5.3 (CVE-2014-3991)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,t:htmlEntityDecode,multiMatch,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:email|ARGS_POST:firstname|ARGS_POST:job|ARGS_POST:lastname|ARGS_POST:login "@contains >"
SecRule REQUEST_FILENAME "@endsWith viewimage.php" \
"id:221364,chain,msg:'COMODO WAF: Multiple XSS vulnerabilities in Dolibarr ERP/CRM 3.5.3 (CVE-2014-3991)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,t:htmlEntityDecode,multiMatch,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:file|ARGS_GET:modulepart "@contains >"
SecRule ARGS_GET:table "@rx '|<" \
"id:221490,chain,msg:'COMODO WAF: XSS vulnerability in phpMyAdmin 4.0.x before 4.0.10.1, 4.1.x before 4.1.14.2, and 4.2.x before 4.2.6 (CVE-2014-4955)',deny,status:403,log,t:none,t:htmlEntityDecode,t:urlDecodeUni,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule REQUEST_FILENAME "@contains db_triggers.php" \
"t:none,t:urlDecodeUni,t:lowercase"
SecRule REQUEST_BASENAME "@streq firewall_schedule_edit.php" \
"id:221610,chain,msg:'COMODO WAF: Multiple XSS vulnerabilities in pfSense before 2.1.4 (CVE-2014-4687)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,rev:3,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS:starttime0|ARGS:stoptime0 "@rx \x22" \
"t:none,t:urlDecodeUni"
SecRule REQUEST_FILENAME "@contains widgets/widgets/rss.widget.php" \
"id:221611,chain,msg:'COMODO WAF: Multiple XSS vulnerabilities in pfSense before 2.1.4 (CVE-2014-4687)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:normalisePath,t:lowercase,rev:3,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS:rssfeed|ARGS:rssmaxitems|ARGS:rsswidgetheight|ARGS:rsswidgettextlength "@contains <" \
"t:none,t:urlDecodeUni"
SecRule REQUEST_FILENAME "@contains widgets/widgets/services_status.widget.php" \
"id:221612,chain,msg:'COMODO WAF: Multiple XSS vulnerabilities in pfSense before 2.1.4 (CVE-2014-4687)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:normalisePath,t:lowercase,rev:3,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS:servicestatusfilter "@rx \x22" \
"t:none,t:urlDecodeUni"
SecRule REQUEST_FILENAME "@contains widgets/widgets/log.widget.php" \
"id:221614,chain,msg:'COMODO WAF: Multiple XSS vulnerabilities in pfSense before 2.1.4 (CVE-2014-4687)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:normalisePath,t:lowercase,rev:3,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS:filterlogentries|ARGS:filterlogentriesinterfaces "@rx \x22|<|'" \
"t:none,t:urlDecodeUni"
SecRule REQUEST_URI "@contains admin/admin.php" \
"id:222000,chain,msg:'COMODO WAF: XSS vulnerability in Sphider 1.3.6 (CVE-2014-5193)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:htmlEntityDecode,t:lowercase,t:normalizePath,t:removeWhitespace,multiMatch,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:f "@rx \d" \
"chain,t:none,t:urlDecodeUni,t:htmlEntityDecode,t:removeWhitespace"
SecRule ARGS_POST:category "@contains <" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule &ARGS_GET:do "!eq 0" \
"id:222070,chain,msg:'COMODO WAF: XSS vulnerability in Kasseler CMS (CVE-2013-3728)',phase:2,deny,status:403,log,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:module "@pm sendmail news voting forum account categories database" \
"chain,t:none,t:lowercase,multiMatch"
SecRule ARGS:cat|ARGS:desc|ARGS:dok|ARGS:fid|ARGS:groups[]|ARGS:id|ARGS:module|ARGS:nid|ARGS:tid|ARGS:tid|ARGS:vid "@contains >" \
"chain,t:none,t:urlDecodeUni,multiMatch"
SecRule REQUEST_FILENAME "@pm admin.php index.php" \
"t:none,t:urlDecodeUni,t:lowercase,multiMatch"
SecRule REQUEST_FILENAME "@endsWith admin/categories.php" \
"id:227600,chain,msg:'COMODO WAF: XSS vulnerability in 4images 1.7.11 and earlier (CVE-2015-7708)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:action "@pm updatecat savecat" \
"chain,t:none,t:lowercase"
SecRule ARGS_POST:cat_description "@contains <" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_URI "@endsWith sa/getparticipants_json" \
"id:240060,chain,msg:'COMODO WAF: SQL injection vulnerability in LimeSurvey 2.05+ Build 140618 (CVE-2014-5017)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:normalizePath,t:lowercase,multiMatch,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:sidx "@contains '" \
"t:none,t:urlDecodeUni"
SecRule REQUEST_URI "@contains participants/sa/getAttribute_json/pid/" \
"id:240070,chain,msg:'COMODO WAF: Multiple XSS vulnerabilities in LimeSurvey 2.05+ Build 140618 (CVE-2014-5016)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule REQUEST_LINE "@contains <" \
"t:none,t:urlDecodeUni"
SecRule REQUEST_URI "@contains admin/globalsettings" \
"id:240071,chain,msg:'COMODO WAF: Multiple XSS vulnerabilities in LimeSurvey 2.05+ Build 140618 (CVE-2014-5016)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:sa "@rx \x22" \
"t:none,t:urlDecodeUni"
SecRule REQUEST_URI "@contains survey/index" \
"id:240080,chain,msg:'COMODO WAF: XSS vulnerability in LimeSurvey 2.05+ Build 140618 (CVE-2014-5018)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:loadname "@rx \x22" \
"t:none,t:urlDecodeUni"
SecRule REQUEST_FILENAME "@contains register-exec.php" \
"id:240100,chain,msg:'COMODO WAF: Multiple XSS vulnerabilities in Restaurant Script (PizzaInn_Project) 1.0.0 (CVE-2014-6619)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:fname|ARGS_POST:lname|ARGS_POST:login "@contains '" \
"t:none,t:urlDecodeUni"
SecRule REQUEST_FILENAME "@endsWith modules/lib_jquery/plugins/cattranslate/cattranslate.php" \
"id:240110,chain,msg:'COMODO WAF: XSS vulnerability in the CatTranslate JQuery plugin in BlackCat CMS 1.0.3 (CVE-2014-5259)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:normalizePath,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule &REQUEST_COOKIES:/cat[\d]{4}sessionid/ "@ge 1" \
"chain"
SecRule ARGS:msg "@contains <" \
"t:none,t:urlDecodeUni"
SecRule REQUEST_FILENAME "@contains user/help/html/index.php" \
"id:240131,chain,msg:'COMODO WAF: XSS vulnerability in Fonality trixbox (CVE-2014-5110)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:normalizePath,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:id_nodo "@rx \x22" \
"t:none,t:urlDecodeUni"
SecRule REQUEST_COOKIES_NAMES "@pm data_layout main_layout" \
"id:240150,chain,msg:'COMODO WAF: XSS vulnerability in MyWebSQL 3.4 and earlier (CVE-2014-4735)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS:table "@pm < >" \
"t:none,t:urlDecodeUni"
SecRule &REQUEST_COOKIES:MoodleSession "@ge 1" \
"id:240200,chain,msg:'COMODO WAF: Multiple XSS vulnerabilities in Moodle 2.7.x before 2.7.1 (CVE-2014-3550)',phase:2,deny,status:403,log,t:none,rev:3,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule REQUEST_FILENAME "@endsWith admin/tool/task/scheduledtasks.php" \
"chain,t:none,t:urlDecodeUni,t:normalizePath,t:lowercase"
SecRule ARGS:success|ARGS:error "@pm < > /" \
"t:none,t:urlDecodeUni"
SecRule &REQUEST_COOKIES:MoodleSession "@ge 1" \
"id:240210,chain,msg:'COMODO WAF: Multiple XSS vulnerabilities in Moodle 2.5.x before 2.5.7, 2.6.x before 2.6.4 (CVE-2014-3547)',phase:4,deny,status:403,log,t:none,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule REQUEST_FILENAME "@rx (badges\/mybadges|user\/profile)\.php$" \
"chain,t:none,t:urlDecodeUni,t:normalizePath,t:lowercase"
SecRule RESPONSE_BODY "!@rx <spanclass=\x22badge\-name\x22>[a-z0-9\.'\!\:\-]+<\/a><\/li>"
SecRule ARGS_GET:page "@streq posts" \
"id:240230,chain,msg:'COMODO WAF: XSS vulnerabilities in the MetalGenix GeniXCMS 0.0.3 (CVE-2015-5066)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:act "add" \
"chain,t:none,t:lowercase"
SecRule ARGS_POST:title|ARGS_POST:content "@rx \x22|'" \
"chain,t:none,t:urlDecodeUni"
SecRule REQUEST_FILENAME "index.php" \
"t:none,t:lowercase"
SecRule ARGS_GET:page "posts" \
"id:240231,chain,msg:'COMODO WAF: XSS vulnerabilities in the MetalGenix GeniXCMS 0.0.3 (CVE-2015-5066)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:q "@rx \'" \
"chain,t:none,t:urlDecodeUni"
SecRule REQUEST_FILENAME "index.php" \
"t:none,t:lowercase"
SecRule REQUEST_URI "@contains /dashboard/settings/categories" \
"id:240260,chain,msg:'COMODO WAF: XSS vulnerabilities in Free Reprintables ArticleFR 3.0.6 (CVE-2015-5529)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:name "@rx <" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_URI "@contains /dashboard/settings/links" \
"id:240261,chain,msg:'COMODO WAF: XSS vulnerabilities in Free Reprintables ArticleFR 3.0.6 (CVE-2015-5529)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:title|ARGS_POST:rel|ARGS_POST:url "@rx <" \
"t:none,t:urlDecodeUni,t:lowercase"
SecRule REQUEST_URI "@contains /dashboard/tools/pingservers" \
"id:240262,chain,msg:'COMODO WAF: XSS vulnerabilities in Free Reprintables ArticleFR 3.0.6 (CVE-2015-5529)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:url "@rx <" \
"t:none,t:urlDecodeUni,t:lowercase"
SecRule REQUEST_FILENAME "@endsWith /site/tools/searchResults.php" \
"id:240340,chain,msg:'COMODO WAF: XSS vulnerabilities in phpipam 1.1.010 (CVE-2015-6529)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:addresses "@streq on" \
"chain,t:none,t:lowercase"
SecRule ARGS_POST:ip "@rx \x22" \
"t:none"
SecRule REQUEST_FILENAME "@contains phpliteadmin.php" \
"id:240370,chain,msg:'COMODO WAF: Multiple XSS vulnerabilities in phpLiteAdmin 1.1 (CVE-2015-6518)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule REQUEST_URI "@contains '" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@endsWith phpliteadmin.php" \
"id:240371,chain,msg:'COMODO WAF: XSS vulnerabilities in phpLiteAdmin 1.1 (CVE-2015-6518)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:droptable|ARGS_GET:table "@contains <" \
"t:none,t:urlDecodeUni"
SecRule REQUEST_FILENAME "@endsWith /cpg15x/install_classic.php" \
"id:240390,chain,msg:'COMODO WAF: XSS vulnerabilities in Coppermine Photo Gallery (CPG) 1.5.36 (CVE-2015-6528)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:admin_username|ARGS_POST:admin_password|ARGS_POST:admin_email|ARGS_POST:dbserver|ARGS_POST:dbname|ARGS_POST:dbuser|ARGS_POST:dbpass|ARGS_POST:table_prefix|ARGS_POST:impath "@rx <|\'|\x22" \
"t:none,t:urlDecodeUni,t:htmlEntitydecode"
SecRule REQUEST_COOKIES_NAMES "@contains cacti" \
"id:240400,chain,msg:'COMODO WAF: XSS injection vulnerability in Cacti before 0.8.8d (CVE-2015-2665)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule REQUEST_FILENAME "@endsWith /graphs.php" \
"chain,t:none,t:urlDecodeUni,t:normalizePath,t:lowercase"
SecRule ARGS_POST:title "@rx \'" \
"t:none,t:urlDecodeUni"
SecRule REQUEST_FILENAME "@endsWith adm_config_report.php" \
"id:240430,chain,msg:'COMODO WAF: XSS vulnerability in MantisBT 1.2.13 through 1.2.17 (CVE-2014-8987)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule REQUEST_COOKIES:MANTIS_STRING_COOKIE "@rx ^[a-f0-9]{64}$" \
"chain,t:none"
SecRule ARGS:config_option "@rx \x22" \
"t:none,t:urlDecodeUni"
SecRule REQUEST_FILENAME "@endsWith backend/groups/ajax_save_group.php" \
"id:240450,chain,msg:'COMODO WAF: XSS vulnerability in BlackCat CMS 1.1.2 (CVE-2015-5521)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:normalizePath,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule REQUEST_COOKIES:/^cat[\d]+sessionid$/ "@rx [0-9a-z]{26}" \
"chain,t:none"
SecRule ARGS_POST:name "@rx \x22" \
"t:none,t:urlDecodeUni"
SecRule REQUEST_FILENAME "@endsWith feedback/pages/feedback.php" \
"id:240480,chain,msg:'COMODO WAF: SQL injection vulnerability in Montala Limited ResourceSpace 7.3.7009 and earlier (CVE-2015-6915)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule REQUEST_COOKIES:user "@rx \'" \
"t:none,t:urlDecodeUni"
SecRule ARGS_GET:controller "@streq post" \
"id:240570,chain,msg:'COMODO WAF: XSS vulnerabilities in Nibbleblog before 4.0.2 (CVE-2014-8996)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:action "@streq view" \
"chain,t:none,t:lowercase"
SecRule ARGS_POST:hash "@rx ^[0-9a-f]+$" \
"chain,t:none"
SecRule ARGS_POST:author_name|ARGS_POST:content "@rx \x22|<" \
"t:none"
SecRule &REQUEST_COOKIES:pwg_id "@ge 1" \
"id:240640,chain,msg:'COMODO WAF: XSS vulnerability in Piwigo before 2.7.4 (CVE-2015-2035)',phase:2,deny,status:403,log,t:none,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:page "@contains <" \
"t:none,t:urlDecodeUni"
SecRule REQUEST_URI "@endswith opensis/index.php" \
"id:240650,chain,msg:'COMODO WAF: SQLi vulnerability in openSIS 4.5 through 5.3 (CVE-2014-8366)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:username|ARGS_POST:password "@contains '" \
"t:none,t:urlDecodeUni"
SecRule ARGS:id "@rx <" \
"id:240660,chain,msg:'COMODO WAF: XSS vulnerability in zTree 3.5.19.1 and possibly earlier (CVE-2015-7348)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule REQUEST_FILENAME "@rx (?:getnodes|getnodesforbigdata).php$" \
"t:none,t:lowercase"
SecRule ARGS_POST:formType "@pm install update" \
"id:240690,chain,msg:'COMODO WAF: XSS vulnerability in the Web Reference Database (aka refbase) through 0.9.6 (CVE-2015-7383)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule REQUEST_COOKIES:PHPSESSID "@rx ^\w+$" \
"chain,t:none"
SecRule ARGS_POST:submit "@pm install update" \
"chain,t:none,t:lowercase"
SecRule ARGS_POST:adminUserName|ARGS_POST:pathToMYSQL|ARGS_POST:databaseStructureFile|ARGS_POST:pathToBibutils "@rx \x22" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@contains www/admin/banner-edit" \
"id:240700,chain,msg:'COMODO WAF: XSS vulnerabilities in the Revive Adserver before 3.2.2 (CVE-2015-7373)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:normalizePath,t:lowercase,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:submit "@streq savechanges" \
"chain,t:none,t:removeWhitespace,t:lowercase"
SecRule ARGS_POST:url|ARGS_POST:height|ARGS_POST:width|ARGS_POST:weight "@rx <" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@endswith changedata.php" \
"id:240710,chain,msg:'COMODO WAF: Multiple cross-site scripting (XSS) vulnerabilities in GetSimple CMS before 3.3.6 (CVE-2015-5355)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:post-title|ARGS_POST:post-content "@rx \x22" \
"t:none,t:urlDecodeUni"
SecRule &REQUEST_COOKIES:october_session "@eq 1" \
"id:240730,chain,msg:'COMODO WAF: XSS vulnerability in October CMS build 271 and earlier (CVE-2015-5612)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:title "@contains <" \
"t:none"
SecRule &REQUEST_COOKIES:pwg_id "@gt 0" \
"id:240750,chain,msg:'COMODO WAF: XSS vulnerability in the Piwigo before 2.7.4 (CVE-2015-2034)',phase:2,deny,status:403,log,t:none,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:page "@rx <" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@endsWith symphony/blueprints/sections/edit/1/saved/" \
"id:240760,chain,msg:'COMODO WAF: XSS vulnerability in the Symphony CMS 2.6.3 (CVE-2015-8376)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:normalizePath,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:meta[name]|ARGS_POST:meta[navigation_group] "@contains <" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@endsWith serendipity_admin.php" \
"id:240770,chain,msg:'COMODO WAF: XSS vulnerability in the Serendipity before 2.0.3 (CVE-2015-8603)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:serendipity[adminAction] "@streq edit" \
"chain,t:none,t:lowercase"
SecRule ARGS_GET:serendipity[entry_id] "@rx \x22" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_URI "@endswith nucleus/index.php" \
"id:240790,chain,msg:'COMODO WAF: XSS vulnerability in Nucleus CMS 3.65 (CVE-2015-5454)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:title "@contains <" \
"t:none"
SecRule REQUEST_FILENAME "@contains card.php" \
"id:240800,chain,msg:'COMODO WAF: Multiple XSS vulnerabilities in Dolibarr ERP/CRM 3.8.3 (CVE-2016-1912)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:action "@streq update" \
"chain,t:none,t:lowercase"
SecRule ARGS_POST:lastname|ARGS_POST:firstname|ARGS_POST:job|ARGS_POST:email|ARGS_POST:signature "@contains <" \
"t:none,t:urlDecodeUni"
SecRule REQUEST_FILENAME "@contains onepage/savebilling" \
"id:240820,chain,msg:'COMODO WAF: Stored XSS in Magento before Magento CE: 1.9,2.3, Magento EE: 1.14.2.3',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:normalizePath,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:billing[email] "@rx \x22" \
"chain,t:none,t:urlDecodeUni"
SecRule &REQUEST_COOKIES:frontend "@ge 1" \
"t:none"
SecRule &REQUEST_COOKIES:sess_hash "@gt 0" \
"id:240840,chain,msg:'COMODO WAF: XSS injection vulnerability in the Beehive Forum 1.4.4 (CVE-2015-2198)',phase:2,deny,status:403,log,t:none,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:homepage_url|ARGS_POST:pic_url|ARGS_POST:avatar_url "@rx \x22|<" \
"chain,t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@endsWith edit_prefs.php" \
"t:none,t:lowercase"
SecRule REQUEST_FILENAME "@pm cms/index.php forum/index.php" \
"id:240850,chain,msg:'COMODO WAF: XSS vulnerability in the ocPortal before 9.0.17 (CVE-2015-2677)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:normalizePath,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:page "@pm cms_calendar cms_polls topics" \
"chain,t:none,t:lowercase"
SecRule ARGS_POST:title|ARGS_POST:question|ARGS_POST:reason|ARGS_POST:description "@contains <" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@contains symphony/system/preferences" \
"id:240860,chain,msg:'COMODO WAF: XSS vulnerability in the Symphony CMS before 2.6.4 (CVE-2015-8766)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:normalizePath,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:settings[email_sendmail][from_name]|ARGS_POST:settings[email_sendmail][from_address]|ARGS_POST:settings[email_smtp][from_name]|ARGS_POST:settings[email_smtp][from_address]|ARGS_POST:settings[email_smtp][host]|ARGS_POST:settings[email_smtp][port]|ARGS_POST:it_image_manipulation[trusted_external_sites]|ARGS_POST:maintenance_mode[ip_whitelist]|ARGS_POST:settings[email_smtp][username]|ARGS_POST:settings[email_smtp][password] "@rx \x22" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@contains symphony/system/authors" \
"id:240870,chain,msg:'COMODO WAF: XSS vulnerability in the Symphony CMS 2.6.2 (CVE-2015-4661)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:normalizePath,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:sort "@contains <" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule ARGS_GET:mode "@streq admin" \
"id:240900,chain,msg:'COMODO WAF: XSS & SQL injection vulnerability in my little forum before 2.3.4 (CVE-2015-1434)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule &REQUEST_COOKIES:/^mlf\w+$/ "@gt 0" \
"chain,t:none"
SecRule ARGS_GET:edit_category|ARGS_GET:letter "@rx \'" \
"t:none,t:urlDecodeUni"
SecRule ARGS_GET:mode "@streq posting" \
"id:240910,chain,msg:'COMODO WAF: XSS vulnerability in my little forum before 2.3.4 (CVE-2015-1435)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule &REQUEST_COOKIES:/^mlf\w+$/ "@gt 0" \
"chain,t:none"
SecRule ARGS_GET:back "@rx \x22" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule &REQUEST_COOKIES:/^mlf\w+$/ "@gt 0" \
"id:240920,chain,msg:'COMODO WAF: XSS vulnerability in my little forum 2.3.3, 2.2, and 1.7 (CVE-2015-1475)',phase:2,deny,status:403,log,t:none,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:page|ARGS_GET:category|ARGS_GET:order|ARGS_POST:title|ARGS_POST:menu_linkname "@contains <" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@endsWith error.php" \
"id:240940,chain,msg:'COMODO WAF: XSS vulnerability in the Web Reference Database (aka refbase) through 0.9.6 (CVE-2015-6010)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:errorNo|ARGS_GET:errorMsg "@rx \x22" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@endsWith import_modify.php" \
"id:240941,chain,msg:'COMODO WAF: XSS vulnerability in the Web Reference Database (aka refbase) through 0.9.6 (CVE-2015-6010)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:sourceText "@contains <" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@pm import_modify.php" \
"id:240942,chain,msg:'COMODO WAF: XSS vulnerability in the Web Reference Database (aka refbase) through 0.9.6 (CVE-2015-6010)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:sourceIDs|ARGS_POST:importRecords "@rx \x22" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@endsWith duplicate_manager.php" \
"id:240980,chain,msg:'COMODO WAF: XSS vulnerability in the Web Reference Database (aka refbase) through 0.9.6 (CVE-2015-6010)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:viewType "@rx \x22" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@endsWith query_manager.php" \
"id:240981,chain,msg:'COMODO WAF: XSS vulnerability in the Web Reference Database (aka refbase) through 0.9.6 (CVE-2015-6010)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:queryAction|ARGS_GET:displayType|ARGS_GET:citeOrder|ARGS_GET:sqlQuery|ARGS_GET:showQuery|ARGS_GET:showLinks|ARGS_GET:showRows|ARGS_GET:queryID "@rx \x22" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@endsWith query_modify.php" \
"id:240982,chain,msg:'COMODO WAF: XSS vulnerability in the Web Reference Database (aka refbase) through 0.9.6 (CVE-2015-6010)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:queryAction|ARGS_POST:displayType|ARGS_POST:showLinks|ARGS_POST:showRows|ARGS_POST:citeOrder|ARGS_POST:queryID "@rx \x22" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@endsWith modify.php" \
"id:240983,chain,msg:'COMODO WAF: XSS vulnerability in the Web Reference Database (aka refbase) through 0.9.6 (CVE-2015-6010)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:typeName|ARGS_POST:fileName "@rx \x22" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@endsWith query_modify.php" \
"id:240984,chain,msg:'COMODO WAF: XSS vulnerability in the Web Reference Database (aka refbase) through 0.9.6 (CVE-2015-6010)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:sqlQuery "@contains <" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@endsWith backend/main.php" \
"id:241010,chain,msg:'COMODO WAF: XSS & SQL injection vulnerabilities in Sefrengo before 1.6.1 (CVE-2015-0919)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,t:normalizePath,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:area "@streq con_configcat" \
"chain,t:none,t:lowercase"
SecRule ARGS_GET:idcat "@rx \x22|\'" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@endsWith backend/main.php" \
"id:241011,chain,msg:'COMODO WAF: SQL injection vulnerabilities in Sefrengo before 1.6.1 (CVE-2015-0919)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,t:normalizePath,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:area "@streq con_configcat" \
"chain,t:none,t:lowercase"
SecRule ARGS_POST:idcat "@rx \'" \
"t:none,t:urlDecodeUni"
SecRule REQUEST_FILENAME "@endsWith backend/main.php" \
"id:241012,chain,msg:'COMODO WAF: SQL injection vulnerabilities in Sefrengo before 1.6.1 (CVE-2015-0919)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,t:normalizePath,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:area "@streq plug" \
"chain,t:none,t:lowercase"
SecRule ARGS_GET:idclient "@rx \'" \
"t:none,t:urlDecodeUni"
SecRule REQUEST_FILENAME "@endsWith backend/main.php" \
"id:241013,chain,msg:'COMODO WAF: SQL injection vulnerabilities in Sefrengo before 1.6.1 (CVE-2015-0919)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,t:normalizePath,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:idclient "@rx \'" \
"chain,t:none,t:urlDecodeUni"
SecRule ARGS_GET:area "@streq plug" \
"t:none,t:lowercase"
SecRule REQUEST_FILENAME "@endsWith backend/main.php" \
"id:241020,chain,msg:'COMODO WAF: XSS vulnerability in Sefrengo before 1.6.1 (CVE-2015-0918)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,t:normalizePath,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:area "@streq user" \
"chain,t:none,t:lowercase"
SecRule ARGS_GET:searchterm "@rx \x22" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@endsWith backend/main.php" \
"id:241031,chain,msg:'COMODO WAF: SQL injection vulnerability in Sefrengo before 1.6.2 (CVE-2015-1428)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,t:normalizePath,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:area "@streq settings" \
"chain,t:none,t:lowercase"
SecRule ARGS_POST:value_id "@rx \'" \
"t:none,t:urlDecodeUni"
SecRule REQUEST_FILENAME "@pm user_management.php" \
"id:241040,chain,msg:'COMODO WAF: Multiple XSS vulnerabilities in Saurus CMS 4.7.0 (CVE-2015-1562)',phase:2,deny,status:403,log,t:none,t:lowercase,t:urlDecodeUni,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:search "@rx <" \
"t:none,t:lowercase,t:urlDecodeUni"
SecRule REQUEST_FILENAME "@pm profile_data.php" \
"id:241041,chain,msg:'COMODO WAF: Multiple XSS vulnerabilities in Saurus CMS 4.7.0 (CVE-2015-1562)',phase:2,deny,status:403,log,t:none,t:lowercase,t:urlDecodeUni,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:data_search "@rx <" \
"t:none,t:lowercase,t:urlDecodeUni"
SecRule REQUEST_FILENAME "@pm error_log.php" \
"id:241042,chain,msg:'COMODO WAF: Multiple XSS vulnerabilities in Saurus CMS 4.7.0 (CVE-2015-1562)',phase:2,deny,status:403,log,t:none,t:lowercase,t:urlDecodeUni,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:filter "@rx <" \
"t:none,t:lowercase,t:urlDecodeUni"
SecRule &ARGS_GET:p "@gt 0" \
"id:241050,chain,msg:'COMODO WAF: XSS vulnerabilities in Gecko CMS 2.2 and 2.3 (CVE-2015-1422)',phase:2,deny,status:403,log,t:none,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:jak_extfile|ARGS_POST:jak_file|ARGS_POST:jak_tags "@rx \x22|<" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule &ARGS_GET:p "@gt 0" \
"id:241051,chain,msg:'COMODO WAF: XSS vulnerabilities in Gecko CMS 2.2 and 2.3 (CVE-2015-1422)',phase:2,deny,status:403,log,t:none,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:sp|ARGS_GET:ssp|ARGS_GET:sssp|ARGS_GET:ssssp "@rx \x22|<" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@endsWith js/editor/plugins/filemanager/dialog.php" \
"id:241052,chain,msg:'COMODO WAF: XSS vulnerabilities in Gecko CMS 2.2 and 2.3 (CVE-2015-1422)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,t:normalizePath,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:type|ARGS_GET:editor|ARGS_GET:lang|ARGS_GET:fldr|ARGS_GET:field_id "@rx \x22|<" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule ARGS_GET:p "@streq categories" \
"id:241053,chain,msg:'COMODO WAF: XSS vulnerabilities in Gecko CMS 2.2 and 2.3 (CVE-2015-1422)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:jak_name|ARGS_POST:jak_varname|ARGS_POST:jak_url|ARGS_POST:jak_img "@rx \x22|<" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule ARGS_GET:p "@streq site" \
"id:241054,chain,msg:'COMODO WAF: XSS vulnerabilities in Gecko CMS 2.2 and 2.3 (CVE-2015-1422)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:jak_title|ARGS_POST:jak_description|ARGS_POST:jak_keywords|ARGS_POST:jak_author|ARGS_POST:jak_copy "@rx \x22|<" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule ARGS_GET:p "@streq plugins" \
"id:241055,chain,msg:'COMODO WAF: XSS vulnerabilities in Gecko CMS 2.2 and 2.3 (CVE-2015-1422)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:jak_generala|ARGS_POST:jak_managea|ARGS_POST:jak_name|ARGS_POST:jak_phpcode "@rx \x22|<" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule ARGS_GET:p "@streq user" \
"id:241056,chain,msg:'COMODO WAF: XSS vulnerabilities in Gecko CMS 2.2 and 2.3 (CVE-2015-1422)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:jak_name|ARGS_POST:jak_email|ARGS_POST:jak_username|ARGS_POST:jak_password "@rx \x22|<" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule ARGS_GET:p "@streq usergroup" \
"id:241057,chain,msg:'COMODO WAF: XSS vulnerabilities in Gecko CMS 2.2 and 2.3 (CVE-2015-1422)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:jak_name "@rx \x22|<" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule ARGS_GET:p "@streq page" \
"id:241058,chain,msg:'COMODO WAF: XSS vulnerabilities in Gecko CMS 2.2 and 2.3 (CVE-2015-1422)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:jak_catid|ARGS_POST:jak_title|ARGS_POST:jak_password|ARGS_POST:jak_css|ARGS_POST:jak_javascript|ARGS_POST:jak_showcontact|ARGS_POST:horder_new[]|ARGS_POST:real_hook_id_new[]|ARGS_POST:sreal_plugin_id_new[]|ARGS_POST:horder[]|ARGS_POST:real_hook_id[]|ARGS_POST:sreal_plugin_id[] "@rx \x22|<" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule ARGS_GET:p "@streq contactform" \
"id:241059,chain,msg:'COMODO WAF: XSS vulnerabilities in Gecko CMS 2.2 and 2.3 (CVE-2015-1422)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:jak_email|ARGS_POST:jak_title|ARGS_POST:jak_option[]|ARGS_POST:jak_options[] "@rx \x22|<" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule ARGS_GET:p "@streq sitemap" \
"id:241060,chain,msg:'COMODO WAF: XSS vulnerabilities in Gecko CMS 2.2 and 2.3 (CVE-2015-1422)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:jak_title|ARGS_POST:jak_hookshow[]|ARGS_POST:horder_new[]|ARGS_POST:real_hook_id_new[]|ARGS_POST:sreal_plugin_id_new[]|ARGS_POST:horder[]|ARGS_POST:real_hook_id[]|ARGS_POST:sreal_plugin_id[] "@rx \x22|<" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule ARGS_GET:p "@streq logs" \
"id:241061,chain,msg:'COMODO WAF: XSS vulnerabilities in Gecko CMS 2.2 and 2.3 (CVE-2015-1422)',phase:2,deny,status:403,log,t:none,t:lowercase,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:jak_delete_log[] "@rx \x22|<" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule ARGS_POST:submit "@contains send!" \
"id:241090,chain,msg:'COMODO WAF: SQL injection vulnerability in the CatBot 0.4.2 (CVE-2015-1367)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:lastcatbot "@rx \'" \
"chain,t:none,t:urlDecodeUni"
SecRule REQUEST_FILENAME "@endsWith index.php" \
"t:none,t:lowercase"
SecRule REQUEST_FILENAME "@endsWith __admin/index.php" \
"id:241100,chain,msg:'COMODO WAF: SQL injection vulnerability in xlinkerz ecommerceMajor (CVE-2015-1476)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,t:normalizePath,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:username|ARGS_POST:password "@contains '" \
"t:none,t:urlDecodeUni"
SecRule REQUEST_URI "@pm locale/index" \
"id:241110,chain,msg:'COMODO WAF: SQL injection vulnerabilities in Fork CMS before 3.8.6 (CVE-2015-1467)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:type[] "@rx \'" \
"t:none,t:urlDecodeUni,t:lowercase"
SecRule REQUEST_URI "@pm locale/index" \
"id:241111,chain,msg:'COMODO WAF: SQL injection vulnerabilities in Fork CMS before 3.8.6 (CVE-2015-1467)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:language[] "@rx \'" \
"t:none,t:urlDecodeUni,t:lowercase"
SecRule REQUEST_FILENAME "@endsWith course/management.php" \
"id:241130,chain,msg:'COMODO WAF: XSS vulnerability in Moodle 2.8.x before 2.8.10, 2.9.x before 2.9.4, and 3.0.x before 3.0.2 (CVE-2016-0725)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:normalizePath,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:search "@contains <" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@endsWith mod/survey/save.php" \
"id:241150,chain,msg:'COMODO WAF: XSS vulnerability in Moodle through 2.6.11, 2.7.x before 2.7.11, 2.8.x before 2.8.9, and 2.9.x before 2.9.3 (CVE-2015-5336)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:normalizePath,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:/q\d+/ "@contains <" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule &REQUEST_COOKIES:GeniXCMS "@ge 1" \
"id:241190,chain,msg:'COMODO WAF: Multiple SQL injection vulnerabilities in MetalGenix GeniXCMS before 0.0.2 (CVE-2015-2679)',phase:2,deny,status:403,log,t:none,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:page "@rx \'" \
"t:none,t:urlDecodeUni,t:lowercase"
SecRule REQUEST_FILENAME "@contains /gxadmin/login.php" \
"id:241191,chain,msg:'COMODO WAF: Multiple SQL injection vulnerabilities in MetalGenix GeniXCMS before 0.0.2 (CVE-2015-2679)',phase:2,deny,status:403,log,t:none,t:lowercase,t:urlDecodeUni,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:username "@rx \'" \
"t:none,t:urlDecodeUni,t:lowercase"
SecRule &REQUEST_COOKIES:dcxd "@ge 1" \
"id:241200,chain,msg:'COMODO WAF: XSS vulnerability in Dotclear before version 2.8.2 (CVE-2015-8831)',phase:2,deny,status:403,log,t:none,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule REQUEST_BASENAME "@streq comments.php" \
"chain,t:none,t:lowercase"
SecRule ARGS_GET:author "@rx \x22" \
"t:none,t:urlDecodeUni"
SecRule ARGS_GET:_mbox "@contains <" \
"id:241210,chain,msg:'COMODO WAF: XSS vulnerability in Roundcube before 1.0.6 and 1.1.x before 1.1.2 (CVE-2015-8793)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule &ARGS_GET:_action "@ge 1" \
"chain,t:none"
SecRule &ARGS_GET:_remote "@ge 1" \
"chain,t:none"
SecRule REQUEST_COOKIES_NAMES "@contains roundcube" \
"t:none"
SecRule REQUEST_FILENAME "@endsWith mod/lesson/essay.php" \
"id:241220,chain,msg:'COMODO WAF: XSS injection vulnerability in Moodle 2.8.x before 2.8.2 (CVE-2015-0216)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:normalizePath,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:response "@contains <" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@contains bedita-app/admin/saveconfig" \
"id:241240,chain,msg:'COMODO WAF: XSS vulnerabilities in BEdita before 3.6.0 (CVE-2015-6809)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,t:normalizePath,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:cfg[projectName] "@contains <" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@endsWith bedita-app/areas/savearea" \
"id:241241,chain,msg:'COMODO WAF: XSS vulnerabilities in BEdita before 3.6.0 (CVE-2015-6809)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:normalizePath,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:data[stats_provider_url] "@rx \x22" \
"t:none,t:urlDecodeUni"
SecRule REQUEST_FILENAME "@endsWith bedita-app/home/editprofile" \
"id:241250,chain,msg:'COMODO WAF: XSS vulnerabilities in BEdita 3.4.0 (CVE-2015-1040)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:normalizePath,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:data[User][realname] "@contains <" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@endsWith bedita-app/pages/savequickitem" \
"id:241251,chain,msg:'COMODO WAF: XSS vulnerabilities in BEdita 3.4.0 (CVE-2015-1040)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:data[title]|ARGS_POST:data[description] "@contains <" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@endsWith bedita-app/pages/savenote" \
"id:241252,chain,msg:'COMODO WAF: XSS vulnerabilities in BEdita 3.4.0 (CVE-2015-1040)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:normalizePath,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:data[description] "@contains <" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@endsWith bedita-app/documents/save" \
"id:241253,chain,msg:'COMODO WAF: XSS vulnerabilities in BEdita 3.4.0 (CVE-2015-1040)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:normalizePath,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:data[title] "@contains <" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@contains index.php/dashboard/reports/logs/view" \
"id:241270,chain,msg:'COMODO WAF: XSS vulnerabilities in concrete5 before 5.7.4 (CVE-2015-2250)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:normalizePath,t:lowercase,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:channel "@rx \x22" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@contains index.php/tools/required/permissions/access_entity" \
"id:241271,chain,msg:'COMODO WAF: XSS vulnerabilities in concrete5 before 5.7.4 (CVE-2015-2250)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:normalizePath,t:lowercase,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:accessType "@contains <" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@contains index.php/ccm/system/dialogs/area/design" \
"id:241272,chain,msg:'COMODO WAF: XSS vulnerabilities in concrete5 before 5.7.4 (CVE-2015-2250)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:normalizePath,t:lowercase,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_GET:arHandle "@rx \x22" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@contains index.php/dashboard/extend/connect" \
"id:241273,chain,msg:'COMODO WAF: XSS vulnerabilities in concrete5 before 5.7.4 (CVE-2015-2250)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:normalizePath,t:lowercase,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule REQUEST_URI "@rx \x22" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@contains index.php/dashboard/system/conversations/bannedwords" \
"id:241274,chain,msg:'COMODO WAF: XSS vulnerabilities in concrete5 before 5.7.4 (CVE-2015-2250)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:normalizePath,t:lowercase,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:banned_word[] "@contains <" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@contains index.php/dashboard/system/multilingual/setup/load_icon" \
"id:241275,chain,msg:'COMODO WAF: XSS vulnerabilities in concrete5 before 5.7.4 (CVE-2015-2250)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:normalizePath,t:lowercase,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:msCountry "@rx \x22" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@contains index.php/dashboard/pages/single" \
"id:241276,chain,msg:'COMODO WAF: XSS vulnerabilities in concrete5 before 5.7.4 (CVE-2015-2250)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:normalizePath,t:lowercase,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:pageURL "@rx \x22" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@contains index.php/dashboard/system/seo/searchindex" \
"id:241279,chain,msg:'COMODO WAF: XSS vulnerabilities in concrete5 before 5.7.4 (CVE-2015-2250)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:normalizePath,t:lowercase,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:SEARCH_INDEX_AREA_METHOD "@rx \x22" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@contains index.php/dashboard/system/optimization/jobs" \
"id:241280,chain,msg:'COMODO WAF: XSS vulnerabilities in concrete5 before 5.7.4 (CVE-2015-2250)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:normalizePath,t:lowercase,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:unit "@rx \x22" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@contains index.php/dashboard/system/registration/open" \
"id:241290,chain,msg:'COMODO WAF: XSS vulnerabilities in concrete5 before 5.7.4 (CVE-2015-2250)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:normalizePath,t:lowercase,rev:2,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:register_notification_email "@rx \x22" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@pm htdocs/product/liste.php htdocs/adherents/liste.php" \
"id:241300,chain,msg:'COMODO WAF: XSS vulnerabilities in Dolibarr ERP/CRM 3.5 and 3.6 (CVE-2015-3935)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:normalizePath,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:sall "@rx \x22" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@endsWith htdocs/contact/list.php" \
"id:241301,chain,msg:'COMODO WAF: XSS vulnerabilities in Dolibarr ERP/CRM 3.5 and 3.6 (CVE-2015-3935)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:normalizePath,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:contactname "@rx \x22" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@endsWith htdocs/societe/societe.php" \
"id:241302,chain,msg:'COMODO WAF: XSS vulnerabilities in Dolibarr ERP/CRM 3.5 and 3.6 (CVE-2015-3935)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:normalizePath,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:search_nom|ARGS_POST:search_town|ARGS_POST:/search_idprof\d+/|ARGS_POST:socname "@rx \x22" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule REQUEST_FILENAME "@contains index.php/dashboard/system/mail/importers" \
"id:241310,chain,msg:'COMODO WAF: XSS vulnerabilities in concrete5 before 5.7.4 (CVE-2015-3989)',phase:2,deny,status:403,log,t:none,t:urlDecodeUni,t:normalizePath,t:lowercase,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule ARGS_POST:miEmail|ARGS_POST:miServer|ARGS_POST:miUsername|ARGS_POST:miPassword|ARGS_POST:miPort "@contains <" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode"
SecRule &REQUEST_COOKIES:pivotxsession "@ge 1" \
"id:241320,chain,msg:'COMODO WAF: XSS vulnerabilities in PivotX before 2.3.11 (CVE-2015-5456)',phase:2,deny,status:403,log,t:none,rev:1,severity:2,tag:'CWAF',tag:'OtherApps'"
SecRule REQUEST_URI "@rx index\.php\/\x22|index\.php\/\'" \
"t:none,t:urlDecodeUni,t:htmlEntityDecode,t:lowercase"
SecRule ARGS_GET:page "@streq logout" \