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

Choose a prefix for the password recovery #56

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
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
1 change: 1 addition & 0 deletions include/Arguments.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ class Arguments

std::size_t maxLength = 0; ///< Maximum password length to try during password recovery
bytevec charset; ///< Characters to generate password candidates
std::string prefix; ///< Expected recovered password prefix

bool help = false; ///< Tell whether help message is needed or not

Expand Down
4 changes: 2 additions & 2 deletions include/password.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Recovery
Recovery(const Keys& keys, const bytevec& charset, Progress& progress);

/// Look for a password of length 6 or less
bool recoverShortPassword();
bool recoverShortPassword(const Keys& initial);

/// Look for a password of given length (at least 7)
bool recoverLongPassword(const Keys& initial, std::size_t length);
Expand Down Expand Up @@ -43,6 +43,6 @@ class Recovery
};

/// Try to recover the password associated with the given keys
bool recoverPassword(const Keys& keys, std::size_t max_length, const bytevec& charset, std::string& password, Progress& progress);
bool recoverPassword(const std::string& prefix, const Keys& keys, std::size_t max_length, const bytevec& charset, std::string& password, Progress& progress);

#endif // BKCRACK_PASSWORD_HPP
3 changes: 3 additions & 0 deletions src/Arguments.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,9 @@ void Arguments::parseArgument()
maxLength = readSize("length");
charset = readCharset();
break;
case 'm':
prefix = readString("prefix");
break;
case 'h':
help = true;
break;
Expand Down
3 changes: 2 additions & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ Crack legacy zip encryption with Biham and Kocher's known plaintext attack.
?a alpha-numerical characters (same as ?l?u?d)
?p printable characters (same as ?a?s)
?b all bytes (0x00 - 0xff)
-m prefix The expected starting characters of the password to recover

-h Show this help and exit)_";

Expand Down Expand Up @@ -168,7 +169,7 @@ try

{
ConsoleProgress progress(std::cout);
success = recoverPassword(keysvec.front(), args.maxLength, args.charset, password, progress);
success = recoverPassword(args.prefix, keysvec.front(), args.maxLength, args.charset, password, progress);
}

if(success)
Expand Down
25 changes: 12 additions & 13 deletions src/password.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,19 +38,19 @@ Recovery::Recovery(const Keys& keys, const bytevec& charset, Progress& progress)
}
}

bool Recovery::recoverShortPassword()
bool Recovery::recoverShortPassword(const Keys& initial)
{
Keys initial;
Keys init = initial;

for(int length = 6; length >= 0; length--)
{
if(recover(initial))
if(recover(init))
{
password.erase(0, 6 - length);
return true;
}

initial.updateBackwardPlaintext(charset.front());
init.updateBackwardPlaintext(charset.front());
}

return false;
Expand Down Expand Up @@ -176,16 +176,17 @@ bool Recovery::recursion(int i)
return false;
}

bool recoverPassword(const Keys& keys, std::size_t max_length, const bytevec& charset, std::string& password, Progress& progress)
bool recoverPassword(const std::string& prefix, const Keys& keys, std::size_t max_length, const bytevec& charset, std::string& password, Progress& progress)
{
Recovery worker(keys, charset, progress);
const Keys initial{prefix};

// look for a password of length between 0 and 6
progress.log([](std::ostream& os) { os << "length 0-6..." << std::endl; });

if(worker.recoverShortPassword())
if(worker.recoverShortPassword(initial))
{
password = worker.getPassword();
password = prefix + worker.getPassword();
progress.state = Progress::State::EarlyExit;
return true;
}
Expand All @@ -195,9 +196,9 @@ bool recoverPassword(const Keys& keys, std::size_t max_length, const bytevec& ch
{
progress.log([length](std::ostream& os) { os << "length " << length << "..." << std::endl; });

if(worker.recoverLongPassword(Keys{}, length))
if(worker.recoverLongPassword(initial, length))
{
password = worker.getPassword();
password = prefix + worker.getPassword();
progress.state = Progress::State::EarlyExit;
return true;
}
Expand All @@ -222,15 +223,13 @@ bool recoverPassword(const Keys& keys, std::size_t max_length, const bytevec& ch
if(progress.state != Progress::State::Normal)
continue; // cannot break out of an OpenMP for loop

Keys init;
Keys init = initial;
init.update(charset[i / charsetSize]);
init.update(charset[i % charsetSize]);

if(worker.recoverLongPassword(init, length - 2))
{
password = worker.getPassword();
password.insert(password.begin(), charset[i % charsetSize]);
password.insert(password.begin(), charset[i / charsetSize]);
password = prefix + static_cast<char>(charset[i / charsetSize]) + static_cast<char>(charset[i % charsetSize]) + worker.getPassword();
found = true;
progress.state = Progress::State::EarlyExit;
}
Expand Down