passgen/main.cpp
2024-04-28 13:55:23 +02:00

41 lines
710 B
C++

#include <format>
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
std::vector<std::string> readWordlist(std::string filePath)
{
std::vector<std::string> map;
std::ifstream file(filePath);
if (file.is_open()) {
std::string line;
while (std::getline(file, line)) {
map.push_back(line);
}
} else {
std::cout << std::format("ERROR: failed op open '{}'\n", filePath);
}
return map;
}
int main(int argc, char *argv[]) {
std::string path;
if (argc == 2) {
path = argv[1];
} else {
path = "eff_large_wordlist.txt";
}
std::vector<std::string> wordlist = readWordlist(path);
if (wordlist.size() == 0) {
return 1;
}
std::cout << wordlist[0] << "\n";
}