Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add alternative hashing methods #7

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# BozoCrack
BozoCrack is a depressingly effective MD5 password hash cracker with almost zero CPU/GPU load. Instead of rainbow tables, dictionaries, or brute force, BozoCrack simply *finds* the plaintext password. Specifically, it googles the MD5 hash and hopes the plaintext appears somewhere on the first page of results.
BozoCrack is a depressingly effective password hash cracker with almost zero CPU/GPU load. Instead of rainbow tables, dictionaries, or brute force, BozoCrack simply *finds* the plaintext password. Specifically, it googles the hash and hopes the plaintext appears somewhere on the first page of results.

It works way better than it ever should.

Expand All @@ -9,7 +9,13 @@ Basic usage:

$ ruby bozocrack.rb my_md5_hashes.txt

The input file has no specified format. BozoCrack automatically picks up strings that look like MD5 hashes. A single line shouldn't contain more than one hash.
The input file has no specified format. BozoCrack automatically picks up strings that look like hashes. A single line shouldn't contain more than one hash.

Advanced usage:

$ ruby bozocrack.rb --hash sha1 my_sha1_hashes.txt

hash can be passed md5 (default), sha1 or sha2

Example with output:

Expand Down
49 changes: 42 additions & 7 deletions bozocrack.rb
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,14 +1,38 @@
#!/usr/bin/env ruby

require 'digest/md5'
require 'net/http'

HASHES = {
:md5 => {
:require => 'digest/md5',
:size => 32,
:class => Digest::MD5
},
:sha1 => {
:require => 'digest/sha1',
:size => 40,
:class => Digest::SHA1
},
:sha2 => {
:require => 'digest/sha2',
:size => 64,
:class => Digest::SHA2
},
}

class BozoCrack

def initialize(filename)
def initialize(filename, hash=:md5)
@hashes = Array.new
@cache = Hash.new
@hash = HASHES[hash]
raise "Unknown hash function #{hash} - try one of #{HASHES.keys.join(', ')}\n" unless @hash
require @hash[:require]
@hash_regex = "\\b([a-fA-F0-9]{#{@hash[:size]}})\\b"

File.new(filename).each_line do |line|
if m = line.chomp.match(/\b([a-fA-F0-9]{32})\b/)
if m = line.chomp.match(/#{@hash_regex}/)
@hashes << m[1]
end
end
Expand Down Expand Up @@ -45,7 +69,7 @@ def crack_single_hash(hash)

def dictionary_attack(hash, wordlist)
wordlist.each do |word|
if Digest::MD5.hexdigest(word) == hash.downcase
if @hash[:class].hexdigest(word) == hash.downcase
return word
end
end
Expand All @@ -55,7 +79,7 @@ def dictionary_attack(hash, wordlist)
def load_cache(filename = "cache")
if File.file? filename
File.new(filename).each_line do |line|
if m = line.chomp.match(/^([a-fA-F0-9]{32}):(.*)$/)
if m = line.chomp.match(/^(#{@hash_regex}):(.*)$/)
@cache[m[1]] = m[2]
end
end
Expand All @@ -70,8 +94,19 @@ def append_to_cache(hash, plaintext, filename = "cache")

end

hash = :md5
while ARGV[0] =~ /^--/ do
opt = ARGV.shift
if opt == "--hash"
raise "#{opt} needs a parameter" if ARGV.empty?
hash = ARGV.shift.to_sym
else
raise "Unknown option #{opt}"
end
end

if ARGV.size == 1
BozoCrack.new(ARGV[0]).crack
BozoCrack.new(ARGV.shift, hash).crack
else
puts "Usage example: ruby bozocrack.rb file_with_md5_hashes.txt"
end
puts "Usage example: ruby #{File.basename($0)} [arg[s]] file_with_md5_hashes.txt"
end