Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ====Module====
- EasyExploits API: https://easyexploits.com/downloadexploit?id=6
- WeAreDevs API: https://wearedevs.net/d/Exploit%20API
- Clear Code:
- fastColoredTextBox1.Clear();
- ====================================================================
- ====Close====
- Close Code:
- Application.Exit();
- (or)
- this.Close();
- ====================================================================
- ====Minimize====
- Minimize Code:
- WindowState = FormWindowState.Minimized;
- ====================================================================
- ====Execute====
- Execute Code:
- if (EasyExploitRadioButton.Checked == true)
- {
- EasyExploits.Module lol = new EasyExploits.Module();
- lol.ExecuteScript(fastColoredTextBox1.Text);
- return;
- }
- else if (WrdRadioButton.Checked == true)
- {
- WeAreDevs_API.ExploitAPI api = new WeAreDevs_API.ExploitAPI();
- api.SendLuaScript(fastColoredTextBox1.Text);
- return;
- }
- else
- {
- MessageBox.Show("Select your DLL/API");
- return;
- }
- ====================================================================
- ====Attach====
- Attach Code:
- if (EasyExploitRadioButton.Checked == true)
- {
- EasyExploits.Module api = new EasyExploits.Module();
- api.LaunchExploit();
- return;
- }
- else if (WrdRadioButton.Checked == true)
- {
- WeAreDevs_API.ExploitAPI api = new WeAreDevs_API.ExploitAPI();
- api.LaunchExploit();
- return;
- }
- else
- {
- MessageBox.Show("Please Choose your DLL/API");
- return;
- }
- }
- =====================================================================
- ====ListBox====
- List Box Code:
- fastColoredTextBox1.Text = File.ReadAllText($"./Scripts/{listBox1.SelectedItem}");
- ======================================================================
- ====Refresh Listbox====
- Refresh Code:
- listBox1.Items.Clear();//Clear Items in the LuaScriptList
- Functions.PopulateListBox(listBox1, "./Scripts", "*.txt");
- Functions.PopulateListBox(listBox1, "./Scripts", "*.lua");
- ======================================================================
- ====Functions====
- Functions Code:
- public static void PopulateListBox(ListBox lsb, string Folder, string FileType)
- {
- DirectoryInfo dinfo = new DirectoryInfo(Folder);
- FileInfo[] Files = dinfo.GetFiles(FileType);
- foreach (FileInfo file in Files)
- {
- lsb.Items.Add(file.Name);
- }
- }
- =======================================================================
- ====Make it Draggable====
- MouseDown:
- lastPoint = new Point(e.X, e.Y);
- MouseMove:
- if (e.Button == MouseButtons.Left)
- {
- this.Left += e.X - lastPoint.X;
- this.Top += e.Y - lastPoint.Y;
- }
- Variable:
- Point lastPoint;
- =======================================================================
- ====Open File/Save File====
- Open File:
- OpenFileDialog openFileDialog1 = new OpenFileDialog();
- if (openFileDialog1.ShowDialog() == DialogResult.OK)
- {
- openFileDialog1.Title = "Open";
- fastColoredTextBox1.Text = File.ReadAllText(openFileDialog1.FileName);
- }
- Save File:
- SaveFileDialog saveFileDialog1 = new SaveFileDialog();
- if (saveFileDialog1.ShowDialog() == DialogResult.OK)
- {
- using (Stream s = File.Open(saveFileDialog1.FileName, FileMode.CreateNew))
- using (StreamWriter sw = new StreamWriter(s))
- {
- sw.Write(fastColoredTextBox1.Text);
- }
- =======================================================================
- ====ScriptHub====
- Script Hub Open Button:
- ScriptHub openform = new ScriptHub();
- openform.Show();
- Script Hub Execute Button:
- if (EasyExploitRadioButton.Checked == true)
- {
- WebClient wb = new WebClient();
- string Script = wb.DownloadString("Your Raw Pastebin Link Here");
- module.ExecuteScript(Script);
- }
- else if (WrdRadioButton.Checked == true)
- {
- WebClient wb = new WebClient();
- string Script = wb.DownloadString("Your Raw Pastebin Link Here");
- exploitAPI.SendLuaScript(Script);
- }
- else
- {
- MessageBox.Show("Select your DLL");
- return;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement