summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien (jvoisin) Voisin2016-02-26 11:54:03 +0100
committerJulien (jvoisin) Voisin2016-02-26 11:54:03 +0100
commitc5a2b0115a6a63a4ea16726e2470967271310109 (patch)
tree7ad1f9abfee66e748739fd64afcc07cf2d13c933
parent1c7deb02ca805a28d6485f76e44ee0b7fe6f31d4 (diff)
Add some embedded perl-script detection
-rw-r--r--php-malware-finder/malwares.yara1
1 files changed, 1 insertions, 0 deletions
diff --git a/php-malware-finder/malwares.yara b/php-malware-finder/malwares.yara
index 81de9e5..5c3cc1e 100644
--- a/php-malware-finder/malwares.yara
+++ b/php-malware-finder/malwares.yara
@@ -78,6 +78,7 @@ private rule base64
78 $preg_replace = "cHJlZ19yZXBsYWNl" 78 $preg_replace = "cHJlZ19yZXBsYWNl"
79 $exec = "ZXhlYyg" 79 $exec = "ZXhlYyg"
80 $base64_decode = "YmFzZTY0X2RlY29kZ" 80 $base64_decode = "YmFzZTY0X2RlY29kZ"
81 $perl_shebang = "IyEvdXNyL2Jpbi9wZXJsCg"
81 condition: 82 condition:
82 any of them 83 any of them
83} 84}