Advertisement
JohnGalt14

MAL_RANSOM_Mortis_Locker

Jan 10th, 2024
1,490
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YARA 0.75 KB | None | 0 0
  1. rule MAL_RANSOM_Mortis_Locker {
  2.     meta:
  3.         description = "Detect Mortis Locker ransomware"
  4.         author = "@M4lcode"
  5.         date = "2024-1-10"
  6.         hash1 = "a5012e20342f4751360fd0d15ab013385cecd2a5f3e7a3e8503b1852d8499819"
  7.         hash2 = "b6a4331334a16af65c5e4193f45b17c874e3eff8dd8667fd7cb8c7a570e2a8b9"
  8.         hash3 = "c6df9cb7c26e0199106bdcd765d5b93436f373900b26f23dfc03b8b645c6913f"
  9.         hash4 = "dac667cfc7824fd45f511bba83ffbdb28fa69cdeff0909979de84064ca2e0283"
  10.     strings:
  11.         $s1 = "\\MortisLocker.pdb" ascii
  12.         $s2 = {55 8B EC 6A FF 68 ?? ?? 42 00 64 A1 00 00 00 00 50 8? EC ??}
  13.         $s3 = ".Mortis" ascii
  14.     condition:
  15.         uint16(0) == 0x5A4D and 2 of them
  16.         or all of them // in-memory detection
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement