Skip to content
This repository has been archived by the owner on Feb 11, 2024. It is now read-only.

Yara Joomla rules baseline #102

Open
wants to merge 36 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
264def8
Yara Joomla rules baseline
hansphp Apr 10, 2020
9803011
Yara rule Joomla 3.0.1
hansphp Apr 10, 2020
bfbd0f2
Revert "Yara rule Joomla 3.0.1"
hansphp Apr 10, 2020
10d7a5c
Yara rule Joomla 3.6.1
hansphp Apr 10, 2020
fd380f2
Yara rule Joomla 3.6.3
hansphp Apr 10, 2020
36da1f3
Yara rule Joomla 3.7.0
hansphp Apr 10, 2020
48bc5a3
Yara rule Joomla 3.7.1
hansphp Apr 10, 2020
fe34f6f
Yara rule Joomla 3.7.2
hansphp Apr 10, 2020
4d27526
Yara rule Joomla 3.7.3
hansphp Apr 10, 2020
05ad063
Yara rule Joomla 3.7.4
hansphp Apr 10, 2020
d3005bb
Yara rule Joomla 3.8.0
hansphp Apr 10, 2020
8799c34
Yara rule Joomla 3.8.1
hansphp Apr 10, 2020
2282ae9
Yara rule Joomla 3.8.2
hansphp Apr 10, 2020
2d35481
Yara rule Joomla 3.8.3
hansphp Apr 10, 2020
c9e6291
Yara rule Joomla 3.8.4
hansphp Apr 10, 2020
202652c
Yara rule Joomla 3.8.6
hansphp Apr 10, 2020
955a69e
Yara rule Joomla 3.8.7
hansphp Apr 10, 2020
c2cc1d8
Yara rule Joomla 3.8.8
hansphp Apr 15, 2020
1079e7c
Yara rule Joomla 3.8.9
hansphp Apr 15, 2020
505cb00
Yara rule Joomla 3.8.11
hansphp Apr 15, 2020
2ebb12b
Yara rule Joomla 3.8.12
hansphp Apr 15, 2020
c8e5275
Yara rule Joomla 3.9.0
hansphp Apr 15, 2020
3b2ebb1
Yara rule Joomla 3.9.1
hansphp Apr 15, 2020
6f227e0
Yara rule Joomla 3.9.2
hansphp Apr 15, 2020
1dda6ef
Yara rule Joomla 3.9.3
hansphp Apr 15, 2020
0b0a690
Yara rule Joomla 3.9.6
hansphp Apr 15, 2020
9434e29
Yara rule Joomla 3.9.7
hansphp Apr 15, 2020
3fca5cd
Yara rule Joomla 3.9.9
hansphp Apr 15, 2020
7732437
Yara rule Joomla 3.9.11
hansphp Apr 15, 2020
7b75a2b
Yara rule Joomla 3.9.12
hansphp Apr 15, 2020
414c3d6
Yara rule Joomla 3.9.13
hansphp Apr 15, 2020
02c51d5
Yara rule Joomla 3.9.15
hansphp Apr 15, 2020
24d8d83
Yara rule Joomla 3.9.15
hansphp Apr 15, 2020
ea8ce5b
StringBitwise
hansphp Apr 30, 2020
b1c20b3
StringBitwise
hansphp Apr 30, 2020
f746fd9
Update php.yar
hansphp Apr 30, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions php-malware-finder/php.yar
Original file line number Diff line number Diff line change
Expand Up @@ -372,3 +372,11 @@ rule Websites
(any of them) and not IsWhitelisted
}

rule SpecialPattern
{
strings:
$ = "#/\\*\\*(.*)\\*\\*/#s" nocase

condition:
(any of them) and not IsWhitelisted
}
2 changes: 2 additions & 0 deletions php-malware-finder/whitelist.yar
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

include "whitelists/drupal.yar"
include "whitelists/wordpress.yar"
include "whitelists/joomla.yar"
include "whitelists/symfony.yar"
include "whitelists/phpmyadmin.yar"
include "whitelists/magento1ce.yar"
Expand Down Expand Up @@ -115,6 +116,7 @@ private rule IsWhitelisted
condition:
Symfony or
Wordpress or
Joomla or
Prestashop or
Magento or
Magento1Ce or
Expand Down
Loading