Skip to content

Instantly share code, notes, and snippets.

@mubix
Created February 20, 2014 04:54
Show Gist options
  • Save mubix/9107276 to your computer and use it in GitHub Desktop.
Save mubix/9107276 to your computer and use it in GitHub Desktop.
Just charset brute force script
#!/usr/bin/env ruby
#
## Brute code stolen form: https://gist.github.com/petehamilton/4755855
#
def result?(sub)
puts sub
1 == 2
end
def crack_yielding(chars)
crack_yield(chars){ |p|
return p if result?(p)
}
end
def crack_yield(chars)
chars.each { |c| yield c }
crack_yield(chars) { |c|
chars.each do |x|
yield c + x
end
}
end
chars = ('a'..'z').to_a
(0..9).each {|x| chars << x.to_s}
crack_yielding(chars)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment