From e7af2b7b82d25b23e10be791db36ba2242a78faf Mon Sep 17 00:00:00 2001 From: maldevel Date: Sun, 18 Nov 2018 21:53:35 +0200 Subject: [PATCH] v1.2 - ascii art added --- README.md | 2 +- passcat/main.cpp | 19 +++++++++++++++---- 2 files changed, 16 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index bc4c52b..ef170bf 100644 --- a/README.md +++ b/README.md @@ -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" --- diff --git a/passcat/main.cpp b/passcat/main.cpp index dbd99a4..9be02b7 100644 --- a/passcat/main.cpp +++ b/passcat/main.cpp @@ -24,17 +24,28 @@ #include #include - +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();