08e8d462fe
RED PILL 🔴 💊
62 lines
1.1 KiB
Text
62 lines
1.1 KiB
Text
//Author @jsmesa
|
|
|
|
import "cuckoo"
|
|
|
|
rule koler_domains
|
|
{
|
|
meta:
|
|
description = "Old Koler.A domains examples"
|
|
sample = "2e1ca3a9f46748e0e4aebdea1afe84f1015e3e7ce667a91e4cfabd0db8557cbf"
|
|
|
|
condition:
|
|
cuckoo.network.dns_lookup(/police-scan-mobile.com/) or
|
|
cuckoo.network.dns_lookup(/police-secure-mobile.com/) or
|
|
cuckoo.network.dns_lookup(/mobile-policeblock.com/) or
|
|
cuckoo.network.dns_lookup(/police-strong-mobile.com/) or
|
|
cuckoo.network.dns_lookup(/video-porno-gratuit.eu/) or
|
|
cuckoo.network.dns_lookup(/video-sartex.us/) or
|
|
cuckoo.network.dns_lookup(/policemobile.biz/)
|
|
}
|
|
|
|
rule koler_builds
|
|
{
|
|
meta:
|
|
description = "Koler.A builds"
|
|
|
|
strings:
|
|
$0 = "buildid"
|
|
$a = "DCEF055EEE3F76CABB27B3BD7233F6E3"
|
|
$b = "C143D55D996634D1B761709372042474"
|
|
|
|
condition:
|
|
$0 and ($a or $b)
|
|
|
|
}
|
|
|
|
rule koler_class
|
|
{
|
|
meta:
|
|
description = "Koler.A class"
|
|
|
|
strings:
|
|
$0 = "FIND_VALID_DOMAIN"
|
|
$a = "6589y459"
|
|
|
|
condition:
|
|
$0 and $a
|
|
|
|
}
|
|
|
|
rule koler_D
|
|
{
|
|
meta:
|
|
description = "Koler.D class"
|
|
|
|
strings:
|
|
$0 = "ZActivity"
|
|
$a = "Lcom/android/zics/ZRuntimeInterface"
|
|
|
|
condition:
|
|
($0 and $a)
|
|
|
|
}
|