LIEF/fuzzing/macho_fuzzer.cpp

18 lines
447 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};
std::vector<LIEF::MachO::Binary*> binaries;
try {
binaries = LIEF::MachO::Parser::parse(raw);
} catch (const LIEF::exception& e) {
std::cout << e.what() << std::endl;
}
for (LIEF::MachO::Binary* b: binaries) {
delete b;
}
return 0;
}