Skip to content

Commit

Permalink
Update checkApps.h
Browse files Browse the repository at this point in the history
  • Loading branch information
efchatz authored Oct 20, 2024
1 parent 4024359 commit c76a0b7
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions headers/core/checkApps.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
#include "../nordpass/app/getCredsnordpass1.h"
#include "../nordpass/app/getCredsnordpass2.h"
#include "../dashlane/getCredsdashlaneEntries.h"
#include "../dashlane/getCredsdashlaneEntries2.h"
#include "../dashlane/getCredsdashlaneMaster.h"
#include "../lastpass/getCredslastpassEntries.h"
#include "../lastpass/getCredslastpassMasterPass.h"
Expand Down Expand Up @@ -357,7 +356,7 @@ int checkApps() {
getCredschromium(fileInput);
std::cout << "Done!\n";
std::cout << "If zero credentials were found, ensure that the app is up, unlocked and running!\n";
}
}
}

//keeper
Expand Down Expand Up @@ -612,7 +611,7 @@ int checkApps() {
std::wcerr << L"Failed to get the current user's login name." << std::endl;
return 1;
}

const char* processName = "chrome.exe";
// Step 1: Find PIDs by process name
std::vector<DWORD> pids;
Expand Down Expand Up @@ -690,7 +689,7 @@ int checkApps() {
}


processName = "chrome.exe";
processName = "chrome.exe";

// Step 1: Find PIDs by process name
std::vector<DWORD> pids;
Expand Down Expand Up @@ -735,12 +734,9 @@ int checkApps() {
fileInput = "app.dmp";
}

std::cout << "Searching for entries (1/2).\n";
std::cout << "Searching for entries.\n";
getCredsdashlaneEntries(fileInput);
std::cout << "Done!\n";
std::cout << "Searching for entries (2/2).\n";
getCredsdashlaneEntries2(fileInput);
std::cout << "Done!\n";
std::cout << "Searching for master username and password.\n";
getCredsdashlaneMaster(fileInput);
std::cout << "Done!\n";
Expand Down Expand Up @@ -1562,8 +1558,8 @@ int checkApps() {
&& userInput != "keeper" && userInput != "chrome" && userInput != "brave"
&& userInput != "msedge" && userInput != "lastpass" && userInput != "nordpass" && userInput != "roboform"
&& userInput != "bitwarden" && userInput != "norton" && userInput != "bitdefender"
&& userInput != "ironvest" && userInput != "passwarden" && userInput != "avira" && userInput != "opera"
&& userInput != "passwordboss" && userInput != "kaspersky") {
&& userInput != "ironvest" && userInput != "passwarden" && userInput != "avira"
&& userInput != "opera" && userInput != "passwordboss" && userInput != "kaspersky") {
std::cout << "User input did not match a specific password manager.\n";
std::cout << "The input must be case-sensitive.\n";
return 1;
Expand Down

0 comments on commit c76a0b7

Please sign in to comment.