mirror of
https://github.com/roadwy/DefenderYara
synced 2026-06-21 14:08:27 +00:00
16 lines
853 B
Plaintext
16 lines
853 B
Plaintext
|
|
rule Exploit_iPhoneOS_Vortex_E{
|
|
meta:
|
|
description = "Exploit:iPhoneOS/Vortex.E,SIGNATURE_TYPE_MACHOHSTR_EXT,06 00 06 00 06 00 00 "
|
|
|
|
strings :
|
|
$a_00_0 = {2f 2e 62 65 61 72 64 65 64 5f 6f 6c 64 5f 6d 61 6e 5f 6e 6f 5f 73 74 61 73 68 } //1 /.bearded_old_man_no_stash
|
|
$a_00_1 = {2f 59 61 6c 75 2f 65 78 70 6c 6f 69 74 2e 6d } //1 /Yalu/exploit.m
|
|
$a_00_2 = {2f 2e 63 79 64 69 61 5f 6e 6f 5f 73 74 61 73 68 } //1 /.cydia_no_stash
|
|
$a_00_3 = {2f 41 70 70 6c 69 63 61 74 69 6f 6e 73 2f 43 79 64 69 61 2e 61 70 70 } //1 /Applications/Cydia.app
|
|
$a_01_4 = {72 75 6e 45 78 70 6c 6f 69 74 } //1 runExploit
|
|
$a_01_5 = {59 6f 75 72 20 25 40 20 69 73 20 6a 61 69 6c 62 72 6f 6b 65 6e } //1 Your %@ is jailbroken
|
|
condition:
|
|
((#a_00_0 & 1)*1+(#a_00_1 & 1)*1+(#a_00_2 & 1)*1+(#a_00_3 & 1)*1+(#a_01_4 & 1)*1+(#a_01_5 & 1)*1) >=6
|
|
|
|
} |