ZABLAZY_Y

Exploit Help Steps.

Apr 24th, 2019
370
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. 1. Key Open Loader:
  2.  
  3. if(richTextBox1.Text == "ALONE")
  4. {
  5. MessageBox.Show("Key Has Been Success!")
  6. Main main = new main();
  7. main.Show();
  8. this.Hide();
  9. }
  10.  
  11.  
  12. Clear:
  13.  
  14. 2. RichTextBox1.Text = "";
  15.  
  16.  
  17. ==========CLASSES==========
  18. 'Injector': https://ghostbin.com/paste/qdej8/raw
  19.  
  20. 'Functions': https://ghostbin.com/paste/hgyh2/raw
  21.  
  22. 'NamedPipes': https://ghostbin.com/paste/qx6dj/raw
  23. ===========================
  24.  
  25. ==========BUTTONS==========
  26. Name 'richTextbox1' to 'ScriptBox'
  27.  
  28. Name 'button1' to 'OpenButton'
  29.  
  30. Name 'button2' to 'ExecuteButton'
  31.  
  32. Name 'button3' to 'ClearButton'
  33.  
  34. Name 'button4' to 'Inject'
  35. ===========================
  36.  
  37. ==========CODE=============
  38. 'OpenButton':
  39. if (Functions.openfiledialog.ShowDialog() == DialogResult.OK)
  40. {
  41. try
  42. {
  43. ScriptBox.Text = File.ReadAllText(Functions.openfiledialog.FileName);
  44.  
  45. }
  46. catch (Exception ex)
  47. {
  48. MessageBox.Show("Error: Could not read file from disk. Original error: " + ex.Message);
  49. }
  50. }
  51.  
  52. 'ExecuteButton':
  53. if (NamedPipes.NamedPipeExist(NamedPipes.luapipename))
  54. {
  55. NamedPipes.LuaPipe(ScriptBox.Text);
  56. }
  57. else
  58. {
  59. MessageBox.Show("Inject ProjectName.dll before using this!", "Error", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); return;
  60. }
  61.  
  62. 'ClearButton':
  63. ScriptBox.Clear();
  64.  
  65. 'Inject':
  66. Functions.Inject();
  67.  
  68. --THANK YOU
Advertisement
Add Comment
Please, Sign In to add comment