-
Notifications
You must be signed in to change notification settings - Fork 2
/
signatures.dat
1132 lines (1132 loc) · 48.8 KB
/
signatures.dat
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
---
clamav.cedb:
Name: "ClamAV complex extended signatures."
Extended Description: >
Contains signatures adapted from some of ClamAV's former, now deprecated archive metadata signatures, as well as
signatures adapted from ClamAV's container database, to work with some of the extended metadata generated by phpMussel.
Generally recommended for most phpMussel setups, and has a very low false positive risk (but also doesn't contain many
signatures and probably won't catch too much).
Version: "2020.184.411"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/clamav/clamav.cedb.gz"
To:
- "signatures/clamav.cedb"
Checksum:
- "2cc57854c51d12b2ee84675586b51a089960725062e45a0b34210bbcee43859b:1416"
Reannotate: "signatures.dat"
phpmussel.cedb:
Name: "phpMussel complex extended signatures."
Extended Description: >
Contains signatures based on extended metadata generated by phpMussel. Signatures in this signature file target a wide
range of miscellaneous threats covering a wide range of formats and vectors, including Android malware, chameleon
attacks, forkbombs, web-based ransomware, malicious browser extensions, equation malware, etc. Generally recommended for
most phpMussel setups, and has a very low false positive risk.
Version: "2020.184.411"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/misc/phpmussel.cedb.gz"
To:
- "signatures/phpmussel.cedb"
Checksum:
- "fff316a5600cfd753069878077552a2ad800b9406eb5eee34ec66dadf26b96eb:86597"
Reannotate: "signatures.dat"
clamav.db:
Name: "ClamAV standard signatures."
Extended Description: >
Signatures in this signature file work directly with file content (i.e., with zero or limited pre-processing). Covers a
wide range of formats. Has a relatively low to average false positive risk, but also contains a very large number of
signatures that aren't filtered by context (e.g., the type of file being scanned, its size, its extension, its magic
number, etc). Due to the large number of unfiltered signatures, performance could sometimes be significantly reduced
when scanning large files. If your phpMussel setup or your website's upload facility regularly needs to process large
files, and if your machine's processing capacity is limited (e.g., not much RAM available, single-thread or
single-process setups, using shared hosting with specific memory caps, etc), then this particular signature file should,
in most cases, be avoided. Otherwise, if your server's processing capacity is good, or if your phpMussel setup or your
website's upload facility generally only needs to process small files, it would be recommended.
Version: "2024.287.463"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/clamav/clamav.db.gz"
To:
- "signatures/clamav.db"
Checksum:
- "f40b9c330bb96a3211cc41d986096f7dd492b6030b6f7267cea2db77af233367:482873"
Reannotate: "signatures.dat"
phpmussel.db:
Name: "phpMussel standard signatures."
Extended Description: >
Signatures in this signature file work directly with file content (i.e., with zero or limited pre-processing). Covers a
wide range of formats. Generally recommended for most phpMussel setups, and has a low false positive risk.
Version: "2019.274.145"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/misc/phpmussel.db.gz"
To:
- "signatures/phpmussel.db"
Checksum:
- "ab6f4959e8edfe8a66a792b18bc8b1d81808d05e3460513c89b42b54c5029084:50734"
Reannotate: "signatures.dat"
clamav_regex.db:
Name: "ClamAV standard regex signatures."
Extended Description: >
Same as its non-regex counterpart, except that the signatures in this signature file can contain regular expressions
(whereas its counterpart can't).
Version: "2024.287.463"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/clamav/clamav_regex.db.gz"
To:
- "signatures/clamav_regex.db"
Checksum:
- "44dcfcc607e6677c62e3db8e954325f1a533fae07efcbdaebe3d42e721bf0ebf:28896"
Reannotate: "signatures.dat"
phpmussel_regex.db:
Name: "phpMussel standard regex signatures."
Extended Description: >
Same as its non-regex counterpart, except that the signatures in this signature file can contain regular expressions
(whereas its counterpart can't).
Version: "2019.237.608"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/misc/phpmussel_regex.db.gz"
To:
- "signatures/phpmussel_regex.db"
Checksum:
- "bf5ee258895fa0c5dd5ab9b455cf45e7fa5da9c9fa30ea8860d489d1041ffc20:4943"
Reannotate: "signatures.dat"
clamav.fdb:
Name: "ClamAV filename signatures."
Extended Description: >
Signatures in this signature file deal solely and specifically with the names of the files being scanned (e.g., the
names of uploaded files as per supplied by the client attempting the upload). It probably won't catch too much, but the
memory footprint and performance cost is extremely small, it has a very low false positive risk, and could potentially
reduce the memory footprint of other signature files when it catches things by making it unnecessary to scan the caught
files further in some cases. Generally recommended for most phpMussel setups.
Version: "2019.237.608"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/clamav/clamav.fdb.gz"
To:
- "signatures/clamav.fdb"
Checksum:
- "51bac01293df543cfd427cb85f9e67ff5295115f522982690afd93027371eb13:4461"
Reannotate: "signatures.dat"
phpmussel.fdb:
Name: "phpMussel filename signatures."
Extended Description: >
Signatures in this signature file deal solely and specifically with the names of the files being scanned (e.g., the
names of uploaded files as per supplied by the client attempting the upload). It probably won't catch too much, but the
memory footprint and performance cost is extremely small, it has a very low false positive risk, and could potentially
reduce the memory footprint of other signature files when it catches things by making it unnecessary to scan the caught
files further in some cases. Generally recommended for most phpMussel setups.
Version: "2024.80.0"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/misc/phpmussel.fdb.gz"
To:
- "signatures/phpmussel.fdb"
Checksum:
- "6e7b69e770853658bb6bb0c4d92ead6290d541935e8f67f33a63c68290240463:52693"
Reannotate: "signatures.dat"
clamav.hdb:
Name: "ClamAV hash signatures."
Extended Description: >
Whenever a file is scanned by phpMussel, a hash for that file is generated, and then checked against hash signatures to
match against any potential specific, already known malicious files. Almost entirely useless against more modern,
polymorphic viruses and malware, but relatively useful against older, non-polymorphic viruses and malware. The memory
footprint and performance cost is relatively small, and it has a very low false positive risk. Generally recommended for
most phpMussel setups.
Version: "2024.287.462"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/clamav/clamav.hdb.gz"
To:
- "signatures/clamav.hdb"
Checksum:
- "31d7acd19f346deed0a55afdd98a065927b0b5f57b7d53c2990fdec60130fb0f:4442614"
Reannotate: "signatures.dat"
phpmussel.hdb:
Name: "phpMussel hash signatures."
Extended Description: >
Whenever a file is scanned by phpMussel, a hash for that file is generated, and then checked against hash signatures to
match against any potential specific, already known malicious files. Almost entirely useless against more modern,
polymorphic viruses and malware, but relatively useful against older, non-polymorphic viruses and malware. The memory
footprint and performance cost is relatively small, and it has a very low false positive risk. Generally recommended for
most phpMussel setups.
Version: "2023.282.0"
Dependencies:
phpMussel Core: ">=1.9"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/misc/phpmussel.hdb.gz"
To:
- "signatures/phpmussel.hdb"
Checksum:
- "69038cdf90f4dfe6dcd60cc3daf50c80e7a9068d01521500c4213ba2613846b4:859"
Reannotate: "signatures.dat"
clamav.htdb:
Name: "ClamAV HTML signatures."
Extended Description: >
Signatures in this signature file work with HTML-normalised file content. If there's any possibility that HTML content
could be uploaded to your website, or that your phpMussel setup could be used to scan HTML content, then you should, in
most cases, use this signature file. If not though, it won't most likely won't be particularly useful for you and should
be ignored.
Version: "2024.287.463"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/clamav/clamav.htdb.gz"
To:
- "signatures/clamav.htdb"
Checksum:
- "e21339d7f1d04a76dbd021f506f17fb13c9bd7e339c1e3e77f0af1d27a1113da:834621"
Reannotate: "signatures.dat"
phpmussel.htdb:
Name: "phpMussel HTML signatures."
Extended Description: >
Signatures in this signature file work with HTML-normalised file content. If there's any possibility that HTML content
could be uploaded to your website, or that your phpMussel setup could be used to scan HTML content, then you should, in
most cases, use this signature file. If not though, it won't most likely won't be particularly useful for you and should
be ignored.
Version: "2019.237.608"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/misc/phpmussel.htdb.gz"
To:
- "signatures/phpmussel.htdb"
Checksum:
- "bf9ac42458f6b566141ad21d699c8d07628803a53e51476cd6c7c21e3e65e07c:11046"
Reannotate: "signatures.dat"
clamav_regex.htdb:
Name: "ClamAV HTML regex signatures."
Extended Description: >
Same as its non-regex counterpart, except that the signatures in this signature file can contain regular expressions
(whereas its counterpart can't).
Version: "2024.287.463"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/clamav/clamav_regex.htdb.gz"
To:
- "signatures/clamav_regex.htdb"
Checksum:
- "78b59bc20fa5f3416222000e71ae526808b6816f5a913ade2a06f65eef115b54:335934"
Reannotate: "signatures.dat"
phpmussel_regex.htdb:
Name: "phpMussel HTML regex signatures."
Extended Description: >
Same as its non-regex counterpart, except that the signatures in this signature file can contain regular expressions
(whereas its counterpart can't).
Version: "2019.237.608"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/misc/phpmussel_regex.htdb.gz"
To:
- "signatures/phpmussel_regex.htdb"
Checksum:
- "dad38e1c065be7e4d3353806d5d7490df6b8d6056b1510c3e01098da22126fdf:403"
Reannotate: "signatures.dat"
clamav.mdb:
Name: "ClamAV PE sectional signatures."
Extended Description: >
Signatures in this signature file work with the hashes that are generated by phpMussel when it scans PE files (i.e.,
Windows "portable executable" files), representing the various sections inside those PE files. If there's any
possibility that your phpMussel setup could be used to scan PE files, then you should, in most cases, use this signature
file. If not though, it won't most likely won't be particularly useful for you and should be ignored. (Of course, in
general, I would advise against allowing PE files to be uploaded to your website anyway, due to the significantly higher
risk factor associated with this type of file, regardless of precautions and safeguards used).
Version: "2024.287.463"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/clamav/clamav.mdb.gz"
To:
- "signatures/clamav.mdb"
Checksum:
- "948754dc0603e9f42eb66c23e705366a91807440938310bcf2b25587f00f4f0a:15096903"
Reannotate: "signatures.dat"
phpmussel.mdb:
Name: "phpMussel PE sectional signatures."
Extended Description: >
Signatures in this signature file work with the hashes that are generated by phpMussel when it scans PE files (i.e.,
Windows "portable executable" files), representing the various sections inside those PE files. If there's any
possibility that your phpMussel setup could be used to scan PE files, then you should, in most cases, use this signature
file. If not though, it won't most likely won't be particularly useful for you and should be ignored. (Of course, in
general, I would advise against allowing PE files to be uploaded to your website anyway, due to the significantly higher
risk factor associated with this type of file, regardless of precautions and safeguards used).
Version: "2019.237.608"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/misc/phpmussel.mdb.gz"
To:
- "signatures/phpmussel.mdb"
Checksum:
- "b34be783f718b4130822dd817ae5d0dda66154d2bf28393f0f90ebd38f4c5932:1430089"
Reannotate: "signatures.dat"
phpmussel.medb:
Name: "phpMussel PE metadata signatures."
Extended Description: >
Signatures in this signature file work with the hashes that are generated by phpMussel when it scans PE files (i.e.,
Windows "portable executable" files), representing various metadata related to those PE files. If there's any
possibility that your phpMussel setup could be used to scan PE files, then you should, in most cases, use this signature
file. If not though, it won't most likely won't be particularly useful for you and should be ignored. (Of course, in
general, I would advise against allowing PE files to be uploaded to your website anyway, due to the significantly higher
risk factor associated with this type of file, regardless of precautions and safeguards used).
Version: "2019.237.608"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/misc/phpmussel.medb.gz"
To:
- "signatures/phpmussel.medb"
Checksum:
- "a4d1814212d10d1c8ffccd3ba263b35d67490cf43e845c88498a0c7adcbbfd99:91286"
Reannotate: "signatures.dat"
clamav.ndb:
Name: "ClamAV normalised signatures."
Extended Description: >
Signatures in this signature file work with ANSI-normalised file content (in the context of phpMussel, "ANSI-normalised"
means lowercased, and with all non-ANSI characters and all characters outside of 21-7e stripped out). Covers a wide
range of formats. Has a relatively low to average false positive risk, but also contains a very large number of
signatures that aren't filtered by context (e.g., the type of file being scanned, its size, its extension, its magic
number, etc). Due to the large number of unfiltered signatures, performance could sometimes be significantly reduced
when scanning large files. If your phpMussel setup or your website's upload facility regularly needs to process large
files, and if your machine's processing capacity is limited (e.g., not much RAM available, single-thread or
single-process setups, using shared hosting with specific memory caps, etc), then this particular signature file should,
in most cases, be avoided. Otherwise, if your server's processing capacity is good, or if your phpMussel setup or your
website's upload facility generally only needs to process small files, it would be recommended.
Version: "2024.287.463"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/clamav/clamav.ndb.gz"
To:
- "signatures/clamav.ndb"
Checksum:
- "4e7c5e7d5b9eb496f21cf3f74198c852746b82a92e9e34a4cdb4e11470435e6f:298346"
Reannotate: "signatures.dat"
phpmussel.ndb:
Name: "phpMussel normalised signatures."
Extended Description: >
Signatures in this signature file work with ANSI-normalised file content (in the context of phpMussel, "ANSI-normalised"
means lowercased, and with all non-ANSI characters and all characters outside of 21-7e stripped out). Covers a wide
range of formats. Generally recommended for most phpMussel setups, and has a low false positive risk.
Version: "2024.287.0"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/misc/phpmussel.ndb.gz"
To:
- "signatures/phpmussel.ndb"
Checksum:
- "79f47751621201093f925d7a5343327bc4cbff0a07516893ba81dfa65978e54b:41124"
Reannotate: "signatures.dat"
clamav_regex.ndb:
Name: "ClamAV normalised regex signatures."
Extended Description: >
Same as its non-regex counterpart, except that the signatures in this signature file can contain regular expressions
(whereas its counterpart can't).
Version: "2024.287.463"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/clamav/clamav_regex.ndb.gz"
To:
- "signatures/clamav_regex.ndb"
Checksum:
- "5e3e6fd342f176d90e07aa8645f7e545718ca3d789bf04314112b551c41e2707:50111"
Reannotate: "signatures.dat"
phpmussel_regex.ndb:
Name: "phpMussel normalised regex signatures."
Extended Description: >
Same as its non-regex counterpart, except that the signatures in this signature file can contain regular expressions
(whereas its counterpart can't).
Version: "2019.237.608"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/misc/phpmussel_regex.ndb.gz"
To:
- "signatures/phpmussel_regex.ndb"
Checksum:
- "ec1e9e016e892d9ef936834bf91f3a10ee950fae4da0e32e5370c7936ac0f934:8901"
Reannotate: "signatures.dat"
phpmussel.udb:
Name: "phpMussel URL scanner signatures."
Extended Description: >
Whenever a file is scanned by phpMussel, phpMussel will attempt to detect any URLs contained inside the file, and then
match those URLs, their domain part, and their query part against lists of URLs, domains, and queries known to be
malicious or dangerous. Existence of such malicious or dangerous URLs, domains, or queries would likely in itself be
undesirable for most people, but may also indicate that the file containing them could potentially be malicious or
dangerous too (although not necessarily proving that the file is definitively malicious or dangerous beyond all doubt).
The memory footprint and performance cost is relatively small, and it has a very low false positive risk. Generally
recommended for most phpMussel setups.
Version: "2024.287.0"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/misc/phpmussel.udb.gz"
To:
- "signatures/phpmussel.udb"
Checksum:
- "608f4ea6a3b4ded296107f451805e151f73a666fbf5ba2a8304d8f6b32a5c4e4:4666768"
Reannotate: "signatures.dat"
clamav_elf.db:
Name: "ClamAV ELF signatures."
Extended Description: >
Signatures in this signature file work solely and specifically with executable Linux files (or "ELF" files). If there's
any possibility that your phpMussel setup could be used to scan ELF files, then you should, in most cases, use this
signature file. If not though, it won't most likely won't be particularly useful for you and should be ignored.
Version: "2024.287.463"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/clamav/clamav_elf.db.gz"
To:
- "signatures/clamav_elf.db"
Checksum:
- "85ee580d03a29666d10b73fb7ed90b2ca60a71f870ad7770f9703feb47d0d0f3:11047"
Reannotate: "signatures.dat"
phpmussel_elf.db:
Name: "phpMussel ELF signatures."
Extended Description: >
Signatures in this signature file work solely and specifically with executable Linux files (or "ELF" files). If there's
any possibility that your phpMussel setup could be used to scan ELF files, then you should, in most cases, use this
signature file. If not though, it won't most likely won't be particularly useful for you and should be ignored.
Version: "2019.237.608"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/misc/phpmussel_elf.db.gz"
To:
- "signatures/phpmussel_elf.db"
Checksum:
- "9a240cfb1e18159241f211c1526400a3113b8455b3d4ec5b70820299e4d53596:883"
Reannotate: "signatures.dat"
clamav_elf_regex.db:
Name: "ClamAV ELF regex signatures."
Extended Description: >
Same as its non-regex counterpart, except that the signatures in this signature file can contain regular expressions
(whereas its counterpart can't).
Version: "2024.287.463"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/clamav/clamav_elf_regex.db.gz"
To:
- "signatures/clamav_elf_regex.db"
Checksum:
- "d9c412ff78e10f42706b23696874f8c14bf3445553cdb10eb9b03d43cbdac2e7:2097"
Reannotate: "signatures.dat"
clamav_email.db:
Name: "ClamAV email signatures."
Extended Description: >
Signatures in this signature file work solely and specifically with saved email files. If there's any possibility that
your phpMussel setup could be used to scan saved email files, then you should, in most cases, use this signature file.
If not though, it won't most likely won't be particularly useful for you and should be ignored.
Version: "2024.287.463"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/clamav/clamav_email.db.gz"
To:
- "signatures/clamav_email.db"
Checksum:
- "233fb1141efb78adab1ebdda189dc76cc6c67b79c8ebb09f3e5917e56d4cc57a:138275"
Reannotate: "signatures.dat"
phpmussel_email.db:
Name: "phpMussel email signatures."
Extended Description: >
Signatures in this signature file work solely and specifically with saved email files. If there's any possibility that
your phpMussel setup could be used to scan saved email files, then you should, in most cases, use this signature file.
If not though, it won't most likely won't be particularly useful for you and should be ignored.
Version: "2019.237.608"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/misc/phpmussel_email.db.gz"
To:
- "signatures/phpmussel_email.db"
Checksum:
- "45eba0a1a67fa1184727b1fa47506540879459f4160763197fda2c21e8681854:15586"
Reannotate: "signatures.dat"
clamav_email_regex.db:
Name: "ClamAV email regex signatures."
Extended Description: >
Same as its non-regex counterpart, except that the signatures in this signature file can contain regular expressions
(whereas its counterpart can't).
Version: "2024.287.463"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/clamav/clamav_email_regex.db.gz"
To:
- "signatures/clamav_email_regex.db"
Checksum:
- "6de5ffcb98a2d96351eebcb62ac0888370cbfe6af4bfa0a6d0927e82aea2e3bf:101441"
Reannotate: "signatures.dat"
phpmussel_email_regex.db:
Name: "phpMussel email regex signatures."
Extended Description: >
Same as its non-regex counterpart, except that the signatures in this signature file can contain regular expressions
(whereas its counterpart can't).
Version: "2019.237.608"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/misc/phpmussel_email_regex.db.gz"
To:
- "signatures/phpmussel_email_regex.db"
Checksum:
- "d23af26558eb2d2a17024bfd127155bd85578841b78107b1d4306b9add8fdb5b:2257"
Reannotate: "signatures.dat"
clamav_exe.db:
Name: "ClamAV PE signatures."
Extended Description: >
Signatures in this signature file work solely and specifically with portable executable files (or "PE" files; e.g.,
Windows EXEs, DLLs, etc). If there's any possibility that your phpMussel setup could be used to scan PE files, then you
should, in most cases, use this signature file. If not though, it won't most likely won't be particularly useful for you
and should be ignored. (Of course, in general, I would advise against allowing PE files to be uploaded to your website
anyway, due to the significantly higher risk factor associated with this type of file, regardless of precautions and
safeguards used). Please note that this signature file contains an *very* large number of signatures, and will most
certainly incur a performance cost when attempting to scan PE files (this performance cost doesn't apply to other
operations or other types of files).
Version: "2024.287.463"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/clamav/clamav_exe.db.gz"
To:
- "signatures/clamav_exe.db"
Checksum:
- "3aa38f5552dfdccac161193a9bddc47195e591a521e2b5eda7fe89c16f8142d9:18397009"
Reannotate: "signatures.dat"
phpmussel_exe.db:
Name: "phpMussel PE signatures."
Extended Description: >
Signatures in this signature file work solely and specifically with portable executable files (or "PE" files; e.g.,
Windows EXEs, DLLs, etc). If there's any possibility that your phpMussel setup could be used to scan PE files, then you
should, in most cases, use this signature file. If not though, it won't most likely won't be particularly useful for you
and should be ignored. (Of course, in general, I would advise against allowing PE files to be uploaded to your website
anyway, due to the significantly higher risk factor associated with this type of file, regardless of precautions and
safeguards used).
Version: "2019.237.608"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/misc/phpmussel_exe.db.gz"
To:
- "signatures/phpmussel_exe.db"
Checksum:
- "5ef1e22f065dc90ff7367ec64feff7fc48877f9177fda1ef5b54d826d7793ca9:5676"
Reannotate: "signatures.dat"
clamav_exe_regex.db:
Name: "ClamAV PE regex signatures."
Extended Description: >
Same as its non-regex counterpart, except that the signatures in this signature file can contain regular expressions
(whereas its counterpart can't).
Version: "2024.287.463"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/clamav/clamav_exe_regex.db.gz"
To:
- "signatures/clamav_exe_regex.db"
Checksum:
- "aaa808a76f37646c061ae7e49218ea2aadfe0ede6460f16e6500a1bbb126704b:442613"
Reannotate: "signatures.dat"
phpmussel_exe_regex.db:
Name: "phpMussel PE regex signatures."
Extended Description: >
Same as its non-regex counterpart, except that the signatures in this signature file can contain regular expressions
(whereas its counterpart can't).
Version: "2019.237.608"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/misc/phpmussel_exe_regex.db.gz"
To:
- "signatures/phpmussel_exe_regex.db"
Checksum:
- "a0f1374f5478daf865cb9c1415b970a193fde2cb90fc10cf227429981a68fb2a:5105"
Reannotate: "signatures.dat"
clamav_graphics.db:
Name: "ClamAV graphics signatures."
Extended Description: >
Signatures in this signature file work with files belonging to various graphics formats. If there's any possibility that
your phpMussel setup could be used to scan images or any other type of graphics file, then you should, in most cases,
use this signature file. If not though, it won't most likely won't be particularly useful for you and should be ignored.
Version: "2024.287.463"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/clamav/clamav_graphics.db.gz"
To:
- "signatures/clamav_graphics.db"
Checksum:
- "eca098a98c3597050cb2678e3828b730a319573059b38f172d769e3b6a722d5a:1571"
Reannotate: "signatures.dat"
phpmussel_graphics.db:
Name: "phpMussel graphics signatures."
Extended Description: >
Signatures in this signature file work with files belonging to various graphics formats. If there's any possibility that
your phpMussel setup could be used to scan images or any other type of graphics file, then you should, in most cases,
use this signature file. If not though, it won't most likely won't be particularly useful for you and should be ignored.
Version: "2024.287.0"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/misc/phpmussel_graphics.db.gz"
To:
- "signatures/phpmussel_graphics.db"
Checksum:
- "618a073b850eba86fd62320a021a5397e273f6effd5416b1ae61c85f7cb83285:4831"
Reannotate: "signatures.dat"
clamav_graphics_regex.db:
Name: "ClamAV graphics regex signatures."
Extended Description: >
Same as its non-regex counterpart, except that the signatures in this signature file can contain regular expressions
(whereas its counterpart can't).
Version: "2024.287.463"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/clamav/clamav_graphics_regex.db.gz"
To:
- "signatures/clamav_graphics_regex.db"
Checksum:
- "cad9afe2d66116a6bf5f45caefd6ac72b43a0e31c5788538c45959f56b8beb46:596"
Reannotate: "signatures.dat"
phpmussel_graphics_regex.db:
Name: "phpMussel graphics regex signatures."
Extended Description: >
Same as its non-regex counterpart, except that the signatures in this signature file can contain regular expressions
(whereas its counterpart can't).
Version: "2019.237.608"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/misc/phpmussel_graphics_regex.db.gz"
To:
- "signatures/phpmussel_graphics_regex.db"
Checksum:
- "59b72623765d4b0a712794e97b53285f532e8b63c4e0b8ff28e932c9126031a3:218"
Reannotate: "signatures.dat"
clamav_java.db:
Name: "ClamAV Java signatures."
Extended Description: >
Signatures in this signature file work solely and specifically with Java files. To clarify, for the benefit of those
that aren't aware (and to avoid confusion): This signature file has nothing to do with JavaScript; Java and JavaScript
are two completely different things. If there's any possibility that your phpMussel setup could be used to scan Java
files, then you should, in most cases, use this signature file. If not though, it won't most likely won't be
particularly useful for you and should be ignored.
Version: "2024.287.463"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/clamav/clamav_java.db.gz"
To:
- "signatures/clamav_java.db"
Checksum:
- "587ceb4731b32147d1d5eab1f55ea2f3b1b1ddadfcf1a15e2e9393a490da49d2:13427"
Reannotate: "signatures.dat"
clamav_java_regex.db:
Name: "ClamAV Java regex signatures."
Extended Description: >
Same as its non-regex counterpart, except that the signatures in this signature file can contain regular expressions
(whereas its counterpart can't).
Version: "2024.287.463"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/clamav/clamav_java_regex.db.gz"
To:
- "signatures/clamav_java_regex.db"
Checksum:
- "ed906d33c51784bbf4b6dbb075996b376d5cae017dc86ed4ce42f86201246165:6121"
Reannotate: "signatures.dat"
clamav_macho.db:
Name: "ClamAV Mach-O signatures."
Extended Description: >
Signatures in this signature file work solely and specifically with Mach-O files. If there's any possibility that your
phpMussel setup could be used to scan Mach-O files, then you should, in most cases, use this signature file. If not
though, it won't most likely won't be particularly useful for you and should be ignored.
Version: "2024.287.463"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/clamav/clamav_macho.db.gz"
To:
- "signatures/clamav_macho.db"
Checksum:
- "98051d5ece2501e1247e1e09c02daff34aaf785fdae4ba237bb293e709a80146:27"
Reannotate: "signatures.dat"
clamav_macho_regex.db:
Name: "ClamAV Mach-O regex signatures."
Extended Description: >
Same as its non-regex counterpart, except that the signatures in this signature file can contain regular expressions
(whereas its counterpart can't).
Version: "2024.287.463"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/clamav/clamav_macho_regex.db.gz"
To:
- "signatures/clamav_macho_regex.db"
Checksum:
- "55d1f2c6288c89e2426a873392cf2d1ecabc922a3a30139ae2fac37ab7370aeb:27"
Reannotate: "signatures.dat"
clamav_ole.db:
Name: "ClamAV OLE signatures."
Extended Description: >
Whenever a file is scanned by phpMussel, phpMussel will attempt to detect any OLE objects contained inside the file.
Signatures in this signature file work with those OLE objects. Microsoft Word documents are a good example of files that
can sometimes contain OLE objects (there are numerous other types of files that can also contain OLE objects though). If
there's any possibility that your phpMussel setup could be used to scan files capable of containing OLE objects, then
you should, in most cases, use this signature file. If not though, it won't most likely won't be particularly useful for
you and should be ignored. It should be noted however, that phpMussel's ability to detect OLE objects hasn't yet quite
been perfected, and so there may be numerous occasions where phpMussel fails to detect the OLE objects contained in some
types of files, or in files crafted in a particular way (it is planned however, to improve phpMussel's ability to detect
OLE objects in the future).
Version: "2024.287.463"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/clamav/clamav_ole.db.gz"
To:
- "signatures/clamav_ole.db"
Checksum:
- "7a2d1cdea6898b2ec199e2b3dc651f0809dfb59b07ee62d0e126bc400937d60a:310080"
Reannotate: "signatures.dat"
phpmussel_ole.db:
Name: "phpMussel OLE signatures."
Extended Description: >
Whenever a file is scanned by phpMussel, phpMussel will attempt to detect any OLE objects contained inside the file.
Signatures in this signature file work with those OLE objects. Microsoft Word documents are a good example of files that
can sometimes contain OLE objects (there are numerous other types of files that can also contain OLE objects though). If
there's any possibility that your phpMussel setup could be used to scan files capable of containing OLE objects, then
you should, in most cases, use this signature file. If not though, it won't most likely won't be particularly useful for
you and should be ignored. It should be noted however, that phpMussel's ability to detect OLE objects hasn't yet quite
been perfected, and so there may be numerous occasions phpMussel fails to detect the OLE objects contained in some types
of files, or files crafted in a particular way (it is planned however, to improve phpMussel's ability to detect OLE
objects in the future).
Version: "2019.237.608"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/misc/phpmussel_ole.db.gz"
To:
- "signatures/phpmussel_ole.db"
Checksum:
- "fd95794dabe9e19fa2270868cf30d101d67c8447108e37525d1a5d42c166ab2a:1288"
Reannotate: "signatures.dat"
clamav_ole_regex.db:
Name: "ClamAV OLE regex signatures."
Extended Description: >
Same as its non-regex counterpart, except that the signatures in this signature file can contain regular expressions
(whereas its counterpart can't).
Version: "2024.287.463"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/clamav/clamav_ole_regex.db.gz"
To:
- "signatures/clamav_ole_regex.db"
Checksum:
- "96705724c59955c2b606accb95e22ff00e7bfd79842c300292912a7cc3152d72:31615"
Reannotate: "signatures.dat"
phpmussel_ole_regex.db:
Name: "phpMussel OLE regex signatures."
Extended Description: >
Same as its non-regex counterpart, except that the signatures in this signature file can contain regular expressions
(whereas its counterpart can't).
Version: "2020.154.505"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds:
- "ClearHashCache"
Files:
From:
- "https://raw.githubusercontent.com/phpMussel/Signatures/master/misc/phpmussel_ole_regex.db.gz"
To:
- "signatures/phpmussel_ole_regex.db"
Checksum:
- "fa2c84a5483818daa2fb07b083f321e2cfa3a5caa31a19e9b07e371d01ab44ed:93"
Reannotate: "signatures.dat"
clamav_pdf.db:
Name: "ClamAV PDF signatures."
Extended Description: >
Signatures in this signature file work solely and specifically with PDF files. If there's any possibility that your
phpMussel setup could be used to scan PDF files, then you should, in most cases, use this signature file. If not though,
it won't most likely won't be particularly useful for you and should be ignored.
Version: "2024.287.463"
Dependencies:
phpMussel Core: ">=1"
Remote: "https://raw.githubusercontent.com/phpMussel/Signatures/master/signatures.dat"
Uninstallable: true
When Update Succeeds: