Advertisement
JordanTGraves

Untitled

Apr 18th, 2018
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.78 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Diagnostics;
  4. using System.Linq;
  5. using System.Threading.Tasks;
  6. using System.Windows.Forms;
  7. using System.Net;
  8. using System.IO;
  9.  
  10. namespace ExploitLauncher2_ByDogix
  11. {
  12. static class Program
  13. {
  14. [STAThread]
  15. static void Main()
  16. {
  17. /// Exploit Launcher by Dogix
  18. /// Fill in these settings.
  19.  
  20. /// EXPLOIT SETTINGS -------------------------------------------------------------------
  21.  
  22. /// Exploit Directory Name. This will be in %AppData%
  23. string ExploitDir = "Zeypher";
  24.  
  25. /// Exploit Direct Download URL
  26. string ExploitUrl = "https://sites.google.com/site/zeypheroffical/Zeypher.lol";
  27. string ExploitFileName = "Zeypher.exe";
  28.  
  29. /// DLL SETTINGS -----------------------------------------------------------------------
  30.  
  31. /// Main DLL Settings
  32. string DllUrl = "https://wearedevs.com/Assets/Download/Safe/ExploitAPI/WeAreDevs_API.dll";
  33. string DllFileName = "WeAreDevs_API.dll";
  34.  
  35. /// Using a second DLL?
  36. Boolean Dll2Enabled = true;
  37. string DllUrl2 = "https://sites.google.com/site/zeypheroffical/FastColoredTextBox.dll?attredirects=0&d=1";
  38. string DllFileName2 = "FastColoredTextBox.dll";
  39.  
  40. /// Using a third DLL?
  41. Boolean Dll3Enabled = true;
  42. string DllUrl3 = "https://sites.google.com/site/zeypheroffical/FlatUI.dll?attredirects=0&d=1";
  43. string DllFileName3 = "FlatUi";
  44.  
  45. ///4th dll
  46. Boolean Dll4Enabled = true;
  47. string DllUrl4 = "https://sites.google.com/site/zeypheroffical/MaterialSkin.dll?attredirects=0&d=1";
  48. string DllFilename4 = "MaterialSkin.dll";
  49.  
  50. ///5th dll
  51. Boolean Dll5Enabled = true;
  52. string DllUrl5 = "https://sites.google.com/site/zeypheroffical/MetroFramework.dll?attredirects=0&d=1";
  53. string DllFilename5 = "MetroFramework.dll";
  54.  
  55. /// DO NOT MODIFY ANYTHING BEYOND THIS POINT UNLESS YOU KNOW WHAT YOU'RE DOING -------------------------------------------------------------------------------------
  56.  
  57. string path = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData).ToString();
  58. Directory.SetCurrentDirectory(path);
  59. Directory.CreateDirectory(@ExploitDir);
  60. Directory.SetCurrentDirectory(@ExploitDir);
  61.  
  62. WebClient client = new WebClient();
  63.  
  64. /// Download Main DLL
  65. File.Delete(@DllFileName);
  66. client.DownloadFile(DllUrl, @DllFileName);
  67.  
  68. /// If DLL 2 is enabled, download it
  69. if (Dll2Enabled == true)
  70. {
  71. File.Delete(@DllFileName2);
  72. client.DownloadFile(DllUrl2, @DllFileName2);
  73. }
  74.  
  75. /// If DLL 3 is enabled, download it
  76. if (Dll3Enabled == true)
  77. {
  78. File.Delete(@DllFileName3);
  79. client.DownloadFile(DllUrl3, @DllFileName3);
  80. }
  81. /// Download Exploit
  82. File.Delete(@ExploitFileName);
  83. client.DownloadFile(ExploitUrl, @ExploitFileName);
  84.  
  85. ///Dll 4
  86. if (Dll4Enabled == true)
  87. {
  88. File.Delete(@DllFilename4);
  89. client.DownloadFile(DllUrl4, DllFilename4);
  90.  
  91. }
  92.  
  93. ///Dll 5
  94. if (Dll5Enabled == true)
  95. {
  96. File.Delete(@DllFilename5);
  97. client.DownloadFile(DllUrl5, DllFilename5);
  98.  
  99. }
  100.  
  101. /// Launch Exploit and Kill Launcher.
  102. Process.Start(@ExploitFileName);
  103. Application.Exit();
  104. }
  105. }
  106. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement