Skip to content

Commit

Permalink
v1.2 - ascii art added
Browse files Browse the repository at this point in the history
  • Loading branch information
maldevel committed Nov 18, 2018
1 parent f48f96d commit e7af2b7
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Written by:
* Open solution file ("PassCat.sln").
* Choose "Release" option from the dropdown menu in the configuration manager and "x64" Platform.
* Select "Build" -> "Build Solution" from the menu or press the "F6" keyboard shortcut.
* Executable location: "C:\[path]\[to]\passcat\x64\Release\PassCat.exe"
* Executable location: "C:\\[path]\[to]\passcat\x64\Release\PassCat.exe"

---

Expand Down
19 changes: 15 additions & 4 deletions passcat/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,28 @@

#include <windows.h>
#include <iostream>

using namespace std;
#include "libpasscat.h"
#include "config.h"

#define VERSION "1.1"
#define VERSION "1.2"

int main(int argc, char *argv[])
{
std::cout << std::endl << "-------------------------------------------" << std::endl;
std::cout << std::endl;
std::cout << std::endl <<
R"(___________ .__ _________ )" << std::endl <<
R"(\__ ___/_ _ __ ____ | |___ __ ____ / _____/ ____ ____ )" << std::endl <<
R"( | | \ \/ \/ // __ \| |\ \/ // __ \ \_____ \_/ __ \_/ ___\ )" << std::endl <<
R"( | | \ /\ ___/| |_\ /\ ___/ / \ ___/\ \___ )" << std::endl <<
R"( |____| \/\_/ \___ >____/\_/ \___ >_______ /\___ >\___ >)" << std::endl <<
R"( \/ \/ \/ \/ \/ )" << std::endl <<
std::endl;
std::cout << "----------------------------------------------------------------" << std::endl;
std::cout << " PassCat v." << VERSION << " - Passwords Recovery Tool" << std::endl;
std::cout << "-------------------------------------------" << std::endl << std::endl;
std::cout << " PassCat is an open source tool licensed under GPLv3." << std::endl;
std::cout << " Please visit https://github.com/twelvesec/passcat for more.." << std::endl;
std::cout << "----------------------------------------------------------------" << std::endl << std::endl;

libpasscat::init();

Expand Down

0 comments on commit e7af2b7

Please sign in to comment.