Yattaze

Simple Hackex Ip Spammer

Aug 30th, 2016
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.45 KB | None | 0 0
  1. require_relative 'lib/hackex'
  2.  
  3. puts "Email: "
  4. email = gets.chomp
  5. puts "Password: "
  6. password = gets.chomp
  7.  
  8. HackEx.LoginDo(email, password) do |http, auth_token, user|
  9.  
  10. puts "IP to spam: "
  11.  
  12. UID = gets.chomp
  13. username = HackEx::Request.Do(http, HackEx::Request.VictimInfo(auth_token, UID))["user"]["username"]
  14. puts "Spam level: "
  15. level = gets.chomp
  16. HackEx.SpamUpload(http, auth_token, UID, level)
  17. puts "Successfully uploading spam to #{username}!"
  18. end
Add Comment
Please, Sign In to add comment