GustasRBLX

epic axon tut

Aug 27th, 2019
1,433
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. epic axon tutorial
  2.  
  3. Injector : https://pastebin.com/raw/ijUpRpMY
  4.  
  5. NamedPipes : https://pastebin.com/raw/3j2VYG22
  6.  
  7. Functions : https://pastebin.com/raw/7Vicu9TU
  8.  
  9. Execute button :
  10. HtmlDocument document = webBrowser1.Document;
  11. string scriptName = "GetText";
  12. object[] args = new string[0];
  13.  
  14. object obj = document.InvokeScript(scriptName, args);
  15. string script = obj.ToString();
  16. if (NamedPipes.NamedPipeExist(NamedPipes.luapipename))//check if the pipe exist
  17. {
  18. NamedPipes.LuaPipe(script);//lua pipe function to send the script
  19. }
  20. else
  21. {
  22. MessageBox.Show("Inject " + Functions.exploitdllname + " before Using this!", "Error", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);//if the pipe can't be found a messagebox will appear
  23. return;
  24. }
  25.  
  26.  
  27. Inject Button : Functions.Inject();
Add Comment
Please, Sign In to add comment