Advertisement
Xylitol

iBanking Yara Rule

Feb 14th, 2014
920
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 0.58 KB | None | 0 0
  1. rule Android_Malware : iBanking
  2. {
  3.     meta:
  4.         author = "Xylitol [email protected]"
  5.         date = "2014-02-14"
  6.         description = "Match first two bytes, files and string present in iBanking"
  7.         reference = "http://www.kernelmode.info/forum/viewtopic.php?f=16&t=3166"
  8.         yaraexchange = "do what the fuck you want"
  9.     strings:
  10.         // Generic android
  11.         $pk = {50 4B}
  12.         $file1 = "AndroidManifest.xml"
  13.         // iBanking related
  14.         $file2 = "res/drawable-xxhdpi/ok_btn.jpg"
  15.         $string1 = "bot_id"
  16.         $string2 = "type_password2"
  17.     condition:
  18.         ($pk at 0 and 2 of ($file*) and ($string1 or $string2))
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement