Sneed-Reactivity/yara-mikesxrs/Koodous/Android_adware.yar
Sam Sneed 08e8d462fe OMG ISTG PLS WORK
RED PILL 🔴 💊
2024-07-25 12:43:35 -05:00

22 lines
614 B
Text

/*
This Yara ruleset is under the GNU-GPLv2 license (http://www.gnu.org/licenses/gpl-2.0.html) and open to any user or organization, as long as you use it under this license.
*/
rule adware : ads
{
meta:
author = "Fernando Denis Ramirez https://twitter.com/fdrg21"
reference = "https://koodous.com/"
description = "Adware"
sample = "5a331231f997decca388ba2d73b7dec1554e966a0795b0cb8447a336bdafd71b"
strings:
$string_a = "banner_layout"
$string_b = "activity_adpath_sms"
$string_c = "adpath_title_one"
$string_d = "7291-2ec9362bd699d0cd6f53a5ca6cd"
condition:
all of ($string_*)
}