From 51b64c6abb9f5d94ba57d2c5b91cd0efafa786f9 Mon Sep 17 00:00:00 2001 From: jvoisin Date: Thu, 9 Jul 2015 14:02:31 +0200 Subject: Add a whitelist for wordpress 3.5.1 --- malwares.yara | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/malwares.yara b/malwares.yara index 0ec4eee..fe2c623 100644 --- a/malwares.yara +++ b/malwares.yara @@ -21,7 +21,11 @@ private rule IsWhitelisted /* Prestashop 1.6.1.0 */ hash.sha1(0, filesize) == "544cd822e2195ac162c9f0387031709042a72cfd" or // tools/htmlpurifier/HTMLPurifier.standalone.php hash.sha1(0, filesize) == "bb8c0d735809b9412265729906016329f3e681ff" or // classes/webservice/WebserviceOutputJSON.php - hash.sha1(0, filesize) == "15da986fccdc7104f9d4e8c344f332db5ae9a32b" // classes/Tools.php + hash.sha1(0, filesize) == "15da986fccdc7104f9d4e8c344f332db5ae9a32b" or // classes/Tools.php + + /* Wordpress 3.5.1 */ + hash.sha1(0, filesize) == "833281b4d1113180e4d1ca026f5e85a680d52662" or // wp-includes/class-phpmailer.php + hash.sha1(0, filesize) == "b4e4b88f2be38ed9c3147b77c2f3a7f929caba2c" // wp-admin/includes/menu.php } global private rule IsPhp -- cgit v1.3