-
-
Save jugyo/2641537 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require "open-uri" | |
[ | |
"http://pastebin.com/raw.php?i=Kc9ng18h", | |
"http://pastebin.com/raw.php?i=vCMndK2L", | |
"http://pastebin.com/raw.php?i=JdQkuYwG", | |
"http://pastebin.com/raw.php?i=fw43srjY" | |
].each do |url| | |
open(url).each_line do |line| | |
name, password = line.chomp.split(/:/) | |
if name == ARGV[0] | |
puts password | |
exit | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment