LIEF/fuzzing/pe_fuzzer.cpp

14 lines
362 B
C++
Raw Normal View History

2017-09-28 10:54:37 +02:00
#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::PE::Binary> b{LIEF::PE::Parser::parse(raw)};
} catch (const LIEF::exception& e) {
std::cout << e.what() << std::endl;
}
return 0;
}