Advertisement
BaconhairGamer

Executor Tutorial

Jul 29th, 2022
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.80 KB | None | 0 0
  1. ====Module====
  2.  
  3. EasyExploits API: https://easyexploits.com/downloadexploit?id=6
  4.  
  5. WeAreDevs API: https://wearedevs.net/d/Exploit%20API
  6.  
  7. Clear Code:
  8.  
  9. fastColoredTextBox1.Clear();
  10.  
  11. ====================================================================
  12. ====Close====
  13. Close Code:
  14.  
  15. Application.Exit();
  16.  
  17. (or)
  18.  
  19. this.Close();
  20.  
  21. ====================================================================
  22. ====Minimize====
  23. Minimize Code:
  24.  
  25. WindowState = FormWindowState.Minimized;
  26.  
  27. ====================================================================
  28. ====Execute====
  29. Execute Code:
  30.  
  31. if (EasyExploitRadioButton.Checked == true)
  32. {
  33. EasyExploits.Module lol = new EasyExploits.Module();
  34. lol.ExecuteScript(fastColoredTextBox1.Text);
  35. return;
  36. }
  37. else if (WrdRadioButton.Checked == true)
  38. {
  39. WeAreDevs_API.ExploitAPI api = new WeAreDevs_API.ExploitAPI();
  40. api.SendLuaScript(fastColoredTextBox1.Text);
  41. return;
  42. }
  43. else
  44. {
  45. MessageBox.Show("Select your DLL/API");
  46. return;
  47. }
  48.  
  49. ====================================================================
  50. ====Attach====
  51. Attach Code:
  52.  
  53. if (EasyExploitRadioButton.Checked == true)
  54. {
  55. EasyExploits.Module api = new EasyExploits.Module();
  56. api.LaunchExploit();
  57. return;
  58. }
  59. else if (WrdRadioButton.Checked == true)
  60. {
  61. WeAreDevs_API.ExploitAPI api = new WeAreDevs_API.ExploitAPI();
  62. api.LaunchExploit();
  63. return;
  64. }
  65. else
  66. {
  67. MessageBox.Show("Please Choose your DLL/API");
  68. return;
  69. }
  70. }
  71.  
  72. =====================================================================
  73. ====ListBox====
  74. List Box Code:
  75.  
  76. fastColoredTextBox1.Text = File.ReadAllText($"./Scripts/{listBox1.SelectedItem}");
  77.  
  78. ======================================================================
  79. ====Refresh Listbox====
  80. Refresh Code:
  81.  
  82. listBox1.Items.Clear();//Clear Items in the LuaScriptList
  83. Functions.PopulateListBox(listBox1, "./Scripts", "*.txt");
  84. Functions.PopulateListBox(listBox1, "./Scripts", "*.lua");
  85.  
  86. ======================================================================
  87. ====Functions====
  88. Functions Code:
  89.  
  90. public static void PopulateListBox(ListBox lsb, string Folder, string FileType)
  91. {
  92. DirectoryInfo dinfo = new DirectoryInfo(Folder);
  93. FileInfo[] Files = dinfo.GetFiles(FileType);
  94. foreach (FileInfo file in Files)
  95. {
  96. lsb.Items.Add(file.Name);
  97. }
  98. }
  99.  
  100. =======================================================================
  101. ====Make it Draggable====
  102. MouseDown:
  103.  
  104. lastPoint = new Point(e.X, e.Y);
  105.  
  106. MouseMove:
  107.  
  108. if (e.Button == MouseButtons.Left)
  109. {
  110. this.Left += e.X - lastPoint.X;
  111. this.Top += e.Y - lastPoint.Y;
  112. }
  113.  
  114. Variable:
  115.  
  116. Point lastPoint;
  117.  
  118. =======================================================================
  119. ====Open File/Save File====
  120. Open File:
  121.  
  122. OpenFileDialog openFileDialog1 = new OpenFileDialog();
  123. if (openFileDialog1.ShowDialog() == DialogResult.OK)
  124. {
  125. openFileDialog1.Title = "Open";
  126. fastColoredTextBox1.Text = File.ReadAllText(openFileDialog1.FileName);
  127. }
  128.  
  129. Save File:
  130.  
  131. SaveFileDialog saveFileDialog1 = new SaveFileDialog();
  132. if (saveFileDialog1.ShowDialog() == DialogResult.OK)
  133. {
  134. using (Stream s = File.Open(saveFileDialog1.FileName, FileMode.CreateNew))
  135. using (StreamWriter sw = new StreamWriter(s))
  136. {
  137. sw.Write(fastColoredTextBox1.Text);
  138. }
  139.  
  140. =======================================================================
  141. ====ScriptHub====
  142.  
  143. Script Hub Open Button:
  144.  
  145. ScriptHub openform = new ScriptHub();
  146. openform.Show();
  147.  
  148.  
  149. Script Hub Execute Button:
  150.  
  151.  
  152. if (EasyExploitRadioButton.Checked == true)
  153. {
  154. WebClient wb = new WebClient();
  155. string Script = wb.DownloadString("Your Raw Pastebin Link Here");
  156. module.ExecuteScript(Script);
  157. }
  158. else if (WrdRadioButton.Checked == true)
  159. {
  160. WebClient wb = new WebClient();
  161. string Script = wb.DownloadString("Your Raw Pastebin Link Here");
  162. exploitAPI.SendLuaScript(Script);
  163. }
  164. else
  165. {
  166. MessageBox.Show("Select your DLL");
  167. return;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement