xModders

Exploit.src

Jan 20th, 2025 (edited)
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | Gaming | 0 0
  1. Exploit = function(x,y)
  2.  
  3. modules = [];
  4.  
  5. print("You are about to run the exploitation module.");
  6. print("Please select an argument if needed or just press [Enter].");
  7. print("If you don't want to execute that function press [ctrl+c].");
  8.  
  9. argument = user_input("argument:")
  10.  
  11. for object in x
  12.  
  13. for buffer in object.buffer
  14.  
  15. attack = y.overflow(object.address,buffer,argument);
  16. module = {"Lib":y.lib_name,"version":y.version,"address":object.address,"buffer":buffer,"arg":argument,"type":typeof(attack)};
  17. modules.push(module);
  18.  
  19. end for
  20.  
  21. end for
  22.  
  23. return modules;
  24. end function
Tags: Script
Advertisement
Add Comment
Please, Sign In to add comment