hi, here is my script so far to make rainbow tables
require 'digest/md5'
string = "a"
File.open("rainbow.txt", "a") do |f|
while string != "zzzzzzzz"
md5 = Digest::MD5.hexdigest(string)
f.puts string + " : " + md5
string = string.next
end
end
but string only goes into lowercase...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.