James_inthe_box

Parasite stealer

Jan 31st, 2020
14,122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.01 KB | None | 0 0
  1. rule parasite_bin
  2. {
  3. meta:
  4. description = "Parasite stealer"
  5. author = "James_inthe_box"
  6. reference = "f5eb9dc17ffae0404f956e34fd697c5359de1d8f81afb2b9ed60eef16cf9daa1"
  7. date = "2020/01"
  8. maltype = "Stealer"
  9.  
  10. strings:
  11. $string1 = "%s\\%sHistory.log"
  12. $string2 = "%s\\%sKeywords.log"
  13. $string3 = "%s\\%sDownloads.log"
  14. $string4 = "%s\\%sAutofill.log"
  15. $string5 = "%s\\%sCookies.log"
  16. $string6 = "%s\\%sPasswords.log"
  17. $string7 = "%s\\%sCreditcards.log"
  18.  
  19. condition:
  20. uint16(0) == 0x5A4D and all of ($string*) and filesize < 2800KB
  21. }
  22.  
  23. rule parasite_mem
  24. {
  25. meta:
  26. description = "Parasite stealer"
  27. author = "James_inthe_box"
  28. reference = "f5eb9dc17ffae0404f956e34fd697c5359de1d8f81afb2b9ed60eef16cf9daa1"
  29. date = "2020/01"
  30. maltype = "Stealer"
  31.  
  32. strings:
  33. $string1 = "%s\\%sHistory.log"
  34. $string2 = "%s\\%sKeywords.log"
  35. $string3 = "%s\\%sDownloads.log"
  36. $string4 = "%s\\%sAutofill.log"
  37. $string5 = "%s\\%sCookies.log"
  38. $string6 = "%s\\%sPasswords.log"
  39. $string7 = "%s\\%sCreditcards.log"
  40.  
  41. condition:
  42. all of ($string*) and filesize > 2800KB
  43. }
  44.  
  45. rule parasite_panel_bin
  46. {
  47. meta:
  48. description = "Parasite stealer"
  49. author = "James_inthe_box"
  50. reference = "f5eb9dc17ffae0404f956e34fd697c5359de1d8f81afb2b9ed60eef16cf9daa1"
  51. date = "2020/01"
  52. maltype = "Stealer"
  53.  
  54. strings:
  55. $string1 = "HELLO_PARASITE"
  56.  
  57. condition:
  58. uint16(0) == 0x5A4D and all of ($string*) and filesize < 2800KB
  59. }
  60.  
  61. rule parasite_panel_mem
  62. {
  63. meta:
  64. description = "Parasite stealer"
  65. author = "James_inthe_box"
  66. reference = "f5eb9dc17ffae0404f956e34fd697c5359de1d8f81afb2b9ed60eef16cf9daa1"
  67. date = "2020/01"
  68. maltype = "Stealer"
  69.  
  70. strings:
  71. $string1 = "HELLO_PARASITE"
  72.  
  73. condition:
  74. all of ($string*)
  75. }
Add Comment
Please, Sign In to add comment