SYMBOLCOMMON_NAMEaka. SYNONYMS
osx.macspy (Back to overview)

MacSpy


There is no description at this point.

References
2017-06-09AT&TPeter Ewane
MacSpy: OS X Mac RAT as a Service
MacSpy
Yara Rules
[TLP:WHITE] osx_macspy_w0 (20170612 | No description)
rule osx_macspy_w0 {
    meta:
        author = "AlienVault Labs"
        malpedia_reference = "https://malpedia.caad.fkie.fraunhofer.de/details/osx.macspy"
        malpedia_version = "20170612"
        malpedia_license = "CC BY-NC-SA 4.0"
        malpedia_sharing = "TLP:WHITE"

    strings:
        $header0 = {cf fa ed fe}
        $header1 = {ce fa ed fe}
        $header2 = {ca fe ba be}
        $c1 = { 76 31 09 00 76 32 09 00 76 33 09 00 69 31 09 00 69 32 09 00 69 33 09 00 69 34 09 00 66 31 09 00 66 32 09 00 66 33 09 00 66 34 09 00 74 63 3A 00 }

    condition:
       ($header0 at 0 or $header1 at 0 or $header2 at 0) and $c1
}
Download all Yara Rules