A forum for reverse engineering, OS internals and malware analysis 

Forum for analysis and discussion about malware.
 #27922  by Fabian Wosar
 Tue Feb 23, 2016 12:47 pm
There you go:
Code: Select all
rule AccdfisaDropper
{
  strings:
    $a = "sfxrar.pdb" nocase
    $b = "nsf.exe" nocase
    $c = "NoSafeMode.dll" nocase
  condition:
    $a and $b and $c
}

rule AccdfisaCrypter
{
  strings:
    $a = ".xml" nocase
    $b = ".txt" nocase
    $c = ".png" nocase
    $d = " -dh -ep2 -hp" nocase    
  condition:
    $a and $b and $c and $d
}