
* linux kernel (x509_cert) and process fuzzing example * rework filters * update to latest qemu * working for process and kernel fuzzing * new i2s mutator for binary only fuzzers * refactoring modules with new filtering interface * add state as parameter of harness * hide unused global in usermode * Script for stub bindings generation * do not try to check whether it is worth generating the bindings, always generate when the env variable is on. * add taplo to fmt_all.sh * Moved fuzzers (again) in a target-centric way. * fix rust 2024 warnings. * new libafl_qemu harness structure. * rename qemu_systemmode into qemu_baremetal * fix qemu baremetal makefile * fix formatter --------- Co-authored-by: Toka <tokazerkje@outlook.com>
35 lines
896 B
C
35 lines
896 B
C
#include <stdint.h>
|
|
|
|
__attribute__((weak)) void __sanitizer_cov_trace_pc_guard_init(uint32_t *start,
|
|
uint32_t *stop) {
|
|
}
|
|
|
|
__attribute__((weak)) void __sanitizer_cov_trace_pc_guard(uint32_t *guard) {
|
|
}
|
|
|
|
__attribute__((weak)) void __cmplog_rtn_hook(uint8_t *ptr1, uint8_t *ptr2) {
|
|
}
|
|
|
|
__attribute__((weak)) void __cmplog_rtn_gcc_stdstring_cstring(
|
|
uint8_t *stdstring, uint8_t *cstring) {
|
|
}
|
|
|
|
__attribute__((weak)) void __cmplog_rtn_gcc_stdstring_stdstring(
|
|
uint8_t *stdstring1, uint8_t *stdstring2) {
|
|
}
|
|
|
|
__attribute__((weak)) void __cmplog_rtn_llvm_stdstring_cstring(
|
|
uint8_t *stdstring, uint8_t *cstring) {
|
|
}
|
|
|
|
__attribute__((weak)) void __cmplog_rtn_llvm_stdstring_stdstring(
|
|
uint8_t *stdstring1, uint8_t *stdstring2) {
|
|
}
|
|
|
|
extern void libafl_main(void);
|
|
|
|
int main(int argc, char **argv) {
|
|
libafl_main();
|
|
return 0;
|
|
}
|