Advertisement
Freack100

Untitled

Apr 30th, 2016
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.27 KB | None | 0 0
  1. require "httparty"
  2.  
  3. "a".upto "z" do |ch1|
  4.     "a".upto "z" do |ch2|
  5.         "a".upto "z" do |ch3|
  6.             response = HTTParty.get("https://minecraft.net/haspaid.jsp?user=#{ch1+ch2+ch3}")
  7.             if response.body == "false" then
  8.                 puts "#{ch1+ch2+ch3} is available"
  9.             end
  10.         end
  11.     end
  12. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement