mirror of
https://github.com/lief-project/LIEF
synced 2026-06-08 15:30:44 +00:00
27 lines
718 B
C++
27 lines
718 B
C++
#include <LIEF/LIEF.hpp>
|
|
#include <filesystem>
|
|
|
|
void process_file(const std::filesystem::path& target) {
|
|
LIEF::ELF::Parser::parse(target.string(), LIEF::ELF::ParserConfig::all());
|
|
}
|
|
|
|
void process_dir(const std::filesystem::path& target) {
|
|
for (const auto& e : std::filesystem::directory_iterator(target)) {
|
|
if (e.is_directory()) {
|
|
process_dir(e.path());
|
|
} else if (e.is_regular_file() && LIEF::ELF::is_elf(e.path().string())) {
|
|
process_file(e.path());
|
|
}
|
|
}
|
|
}
|
|
|
|
int main(int /*argc*/, const char** argv) {
|
|
const std::filesystem::path target{argv[1]};
|
|
if (std::filesystem::is_directory(target)) {
|
|
process_dir(target);
|
|
} else {
|
|
process_file(target);
|
|
}
|
|
return EXIT_SUCCESS;
|
|
}
|