mirror of
https://github.com/QuasarApp/LIEF.git
synced 2025-04-27 12:54:32 +00:00
14 lines
354 B
C++
14 lines
354 B
C++
#include <LIEF/LIEF.hpp>
|
|
#include <vector>
|
|
#include <memory>
|
|
|
|
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
|
std::vector<uint8_t> raw = {data, data + size};
|
|
try {
|
|
std::unique_ptr<LIEF::Binary> b{LIEF::Parser::parse(raw)};
|
|
} catch (const LIEF::exception& e) {
|
|
std::cout << e.what() << std::endl;
|
|
}
|
|
return 0;
|
|
}
|