Skip to content

Instantly share code, notes, and snippets.

@eiginn
Forked from mubix/brutelist.rb
Created February 28, 2014 16:58
Show Gist options
  • Save eiginn/9274847 to your computer and use it in GitHub Desktop.
Save eiginn/9274847 to your computer and use it in GitHub Desktop.
#!/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