├── AUTHORS ├── KVM-PT ├── .gitignore ├── Kconfig ├── Makefile.template ├── README ├── cpuid.c ├── cpuid.h ├── debugfs.c ├── emulate.c ├── header │ ├── asm-generic │ │ └── kvm_para.h │ ├── kvm │ │ └── iodev.h │ ├── linux │ │ ├── kvm_host.h │ │ ├── kvm_irqfd.h │ │ ├── kvm_para.h │ │ └── kvm_types.h │ ├── uapi │ │ ├── asm-generic │ │ │ └── kvm_para.h │ │ ├── asm │ │ │ └── kvm.h │ │ └── linux │ │ │ ├── kvm.h │ │ │ └── kvm_para.h │ └── x86 │ │ ├── include │ │ ├── asm │ │ │ ├── kvm_emulate.h │ │ │ ├── kvm_host.h │ │ │ ├── kvm_page_track.h │ │ │ └── kvm_para.h │ │ └── uapi │ │ │ └── asm │ │ │ └── kvm_para.h │ │ └── kvm │ │ └── kvm_cache_regs.h ├── hyperv.c ├── hyperv.h ├── i8254.c ├── i8254.h ├── i8259.c ├── ioapic.c ├── ioapic.h ├── irq.c ├── irq.h ├── irq_comm.c ├── lapic.c ├── lapic.h ├── load.sh ├── mmu.c ├── mmu.h ├── mmu_audit.c ├── mtrr.c ├── page_track.c ├── paging_tmpl.h ├── pmu.c ├── pmu.h ├── pmu_amd.c ├── pmu_intel.c ├── tss.h ├── usermode_test │ ├── .gitignore │ ├── compile.sh │ ├── support_test.c │ ├── test.c │ └── test_signal.c ├── virt │ ├── kvm │ │ ├── Kconfig │ │ ├── async_pf.c │ │ ├── async_pf.h │ │ ├── coalesced_mmio.c │ │ ├── coalesced_mmio.h │ │ ├── eventfd.c │ │ ├── irqbypass.c │ │ ├── irqchip.c │ │ ├── kvm_main.c │ │ ├── vfio.c │ │ └── vfio.h │ └── lib │ │ ├── Kconfig │ │ └── irqbypass.c ├── vmx.c ├── vmx.h ├── vmx_evmcs.h ├── vmx_fdl.c ├── vmx_fdl.h ├── vmx_pt.c ├── vmx_pt.h ├── vmx_shadow_fields.h ├── x86.c └── x86.h ├── LICENSE ├── Makefile ├── QEMU-PT ├── .gitignore ├── compile_qemu_pt.sh ├── qemu-4.2.50.zip └── qemu_pt.patch ├── README.md ├── Targets ├── bhyve │ ├── .gitignore │ ├── VM │ │ ├── .gitignore │ │ ├── copy_install_files.sh │ │ ├── create_pre_snapshot.sh │ │ ├── pre_snapshot │ │ │ └── .keep │ │ └── prepare.sh │ ├── agent │ │ ├── bin │ │ │ ├── loader │ │ │ ├── req_data │ │ │ ├── set_ip_range │ │ │ └── set_vmm_ip_range │ │ ├── compile.sh │ │ └── src │ │ │ ├── install.sh │ │ │ ├── loader.c │ │ │ ├── req_data.c │ │ │ ├── run.sh │ │ │ ├── run_asan.sh │ │ │ ├── set_ip_range.c │ │ │ └── set_vmm_ip_range.c │ ├── config_template.ron │ └── sharedir │ │ ├── hypertrash_crash_detector.c │ │ ├── kafl_user.h │ │ ├── req_data │ │ ├── run.sh │ │ └── set_ip_range.c └── qemu │ ├── .gitignore │ ├── VM │ ├── .gitignore │ ├── copy_install_files.sh │ ├── create_pre_snapshot.sh │ └── prepare.sh │ ├── agent │ ├── bin │ │ └── .keep │ ├── build_sharedir.sh │ ├── compile.sh │ ├── kafl_user.h │ └── src │ │ ├── hypertrash_crash_detector.c │ │ ├── hypertrash_crash_detector_asan.c │ │ ├── loader.c │ │ ├── req_data.c │ │ ├── run.sh │ │ ├── run_asan.sh │ │ ├── set_ip_range.c │ │ └── set_kvm_ip_range.c │ ├── config_template.ron │ ├── misc │ ├── grub.cfg │ ├── install.sh │ └── sources.list │ ├── sharedir │ └── .keep │ └── sharedir_asan │ └── .keep ├── nyx_fuzzer ├── .gitignore ├── config │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── fuzz_runner │ ├── .gitignore │ ├── Cargo.toml │ └── src │ │ ├── exitreason.rs │ │ ├── forksrv │ │ ├── error.rs │ │ ├── mod.rs │ │ └── newtypes.rs │ │ ├── lib.rs │ │ └── nyx │ │ ├── aux_buffer.rs │ │ ├── mem_barrier.rs │ │ ├── mod.rs │ │ ├── params.rs │ │ └── qemu_process.rs ├── helpers │ ├── .gitignore │ ├── Cargo.toml │ └── src │ │ ├── hash_by_ref.rs │ │ └── lib.rs ├── hypervisor_spec │ ├── .gitignore │ ├── build │ │ ├── .gitignore │ │ ├── custom_includes.h │ │ ├── hypertrash_os │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── bin │ │ │ │ └── .keep │ │ │ ├── grub │ │ │ │ ├── .gitignore │ │ │ │ ├── grub.zip │ │ │ │ ├── install.sh │ │ │ │ └── patches │ │ │ │ │ ├── kern_efi_mm.patch │ │ │ │ │ ├── loader_multiboot.patch │ │ │ │ │ └── video_video.patch │ │ │ ├── include │ │ │ │ ├── acpi.h │ │ │ │ ├── apic.h │ │ │ │ ├── bmp.h │ │ │ │ ├── config.h │ │ │ │ ├── cpuid.h │ │ │ │ ├── efi.h │ │ │ │ ├── fuzz.h │ │ │ │ ├── hypercube_opcodes.h │ │ │ │ ├── io.h │ │ │ │ ├── isa.h │ │ │ │ ├── isr.h │ │ │ │ ├── kafl_user.h │ │ │ │ ├── libk.h │ │ │ │ ├── mboot.h │ │ │ │ ├── mbootv1.h │ │ │ │ ├── mem.h │ │ │ │ ├── mmio.h │ │ │ │ ├── msr.h │ │ │ │ ├── panic.h │ │ │ │ ├── pci.h │ │ │ │ ├── pic.h │ │ │ │ ├── serial.h │ │ │ │ ├── smp.h │ │ │ │ ├── system.h │ │ │ │ ├── test.h │ │ │ │ ├── tty.h │ │ │ │ └── vga.h │ │ │ ├── iso │ │ │ │ └── hypertrash_os_bios.iso │ │ │ ├── misc │ │ │ │ ├── crash.hexa │ │ │ │ ├── grub.cfg │ │ │ │ ├── linker.ld │ │ │ │ └── logo.bmp │ │ │ ├── src │ │ │ │ ├── acpi.c │ │ │ │ ├── apic.c │ │ │ │ ├── asm │ │ │ │ │ ├── ap_boot.s │ │ │ │ │ ├── boot.s │ │ │ │ │ ├── boot_v2.s │ │ │ │ │ ├── bootv1.s │ │ │ │ │ └── cpu_tables.s │ │ │ │ ├── cpuid.c │ │ │ │ ├── efi.c │ │ │ │ ├── fuzz.c │ │ │ │ ├── gdt.c │ │ │ │ ├── hypercube_opcodes.c │ │ │ │ ├── idt.c │ │ │ │ ├── isa.c │ │ │ │ ├── isr.c │ │ │ │ ├── kernel.c │ │ │ │ ├── libk.c │ │ │ │ ├── mboot.c │ │ │ │ ├── mem.c │ │ │ │ ├── msr.c │ │ │ │ ├── panic.c │ │ │ │ ├── pci.c │ │ │ │ ├── pic.c │ │ │ │ ├── serial.c │ │ │ │ ├── smp.c │ │ │ │ └── tty.c │ │ │ ├── tesseract │ │ │ │ ├── compile.sh │ │ │ │ ├── core.c │ │ │ │ ├── core.h │ │ │ │ ├── decompiler.c │ │ │ │ ├── decompiler.h │ │ │ │ ├── dict.c │ │ │ │ ├── dict.h │ │ │ │ ├── generate_config.c │ │ │ │ ├── io.h │ │ │ │ ├── main.c │ │ │ │ ├── mmio.h │ │ │ │ ├── opcodes.c │ │ │ │ ├── opcodes.h │ │ │ │ ├── state.c │ │ │ │ └── state.h │ │ │ └── xorriso │ │ └── userspace_tester.c │ ├── gen_spec.py │ ├── hexa_spec │ │ ├── .gitignore │ │ ├── __init__.py │ │ ├── ahci.py │ │ ├── legacy.py │ │ └── xhci.py │ ├── make.sh │ └── make_sharedirs.sh ├── rust_fuzzer │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── config.ron │ ├── config_forkserver.ron │ ├── config_kernel.ron │ ├── config_snapshot.ron │ ├── config_snapshot_cluster_ubuntu.ron │ ├── deploy.sh │ ├── spec.msgp │ └── src │ │ ├── bitmap.rs │ │ ├── fuzzer.rs │ │ ├── input.rs │ │ ├── main.rs │ │ ├── queue.rs │ │ └── romu.rs ├── rust_fuzzer_debug │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ └── main.rs └── structured_fuzzer │ ├── .gitignore │ ├── Cargo.toml │ ├── examples │ ├── display.rs │ └── gen.rs │ ├── interpreter │ ├── build │ │ ├── .gitignore │ │ ├── a.out │ │ ├── bytecode_spec.h │ │ ├── bytecode_spec.template.h │ │ ├── data_include.h │ │ ├── interpreter.h │ │ ├── interpreter_main.c │ │ ├── make.sh │ │ └── spec.msgp │ ├── example_spec.msgp │ ├── example_spec.py │ ├── spec_lib │ │ ├── .gitignore │ │ ├── __init__.py │ │ ├── data_spec.py │ │ ├── generators.py │ │ ├── graph_builder.py │ │ ├── graph_spec.py │ │ └── templates │ │ │ ├── bytecode_spec.jinja.h │ │ │ ├── data_include.jinja.h │ │ │ ├── data_struct.jinja.h │ │ │ └── interpreter.jinja.h │ ├── spec_vec_u8.msgp │ ├── spec_vec_u8.py │ ├── test_spec.msgp │ └── test_spec.py │ └── src │ ├── custom_dict.rs │ ├── data_buff.rs │ ├── graph_mutator │ ├── atomic_data.rs │ ├── generators.rs │ ├── graph_builder.rs │ ├── graph_iter.rs │ ├── graph_storage.rs │ ├── mod.rs │ ├── newtypes.rs │ ├── spec.rs │ └── spec_loader.rs │ ├── lib.rs │ ├── mutator.rs │ ├── primitive_mutator │ ├── .gitignore │ ├── inplace_mutation.rs │ ├── mod.rs │ ├── mutations.txt │ ├── mutator.rs │ └── size_changing_mutation.rs │ └── random │ ├── choices.rs │ ├── distributions.rs │ ├── mod.rs │ └── romu.rs └── paper.png /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/AUTHORS -------------------------------------------------------------------------------- /KVM-PT/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/.gitignore -------------------------------------------------------------------------------- /KVM-PT/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/Kconfig -------------------------------------------------------------------------------- /KVM-PT/Makefile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/Makefile.template -------------------------------------------------------------------------------- /KVM-PT/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/README -------------------------------------------------------------------------------- /KVM-PT/cpuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/cpuid.c -------------------------------------------------------------------------------- /KVM-PT/cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/cpuid.h -------------------------------------------------------------------------------- /KVM-PT/debugfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/debugfs.c -------------------------------------------------------------------------------- /KVM-PT/emulate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/emulate.c -------------------------------------------------------------------------------- /KVM-PT/header/asm-generic/kvm_para.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/header/asm-generic/kvm_para.h -------------------------------------------------------------------------------- /KVM-PT/header/kvm/iodev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/header/kvm/iodev.h -------------------------------------------------------------------------------- /KVM-PT/header/linux/kvm_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/header/linux/kvm_host.h -------------------------------------------------------------------------------- /KVM-PT/header/linux/kvm_irqfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/header/linux/kvm_irqfd.h -------------------------------------------------------------------------------- /KVM-PT/header/linux/kvm_para.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/header/linux/kvm_para.h -------------------------------------------------------------------------------- /KVM-PT/header/linux/kvm_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/header/linux/kvm_types.h -------------------------------------------------------------------------------- /KVM-PT/header/uapi/asm-generic/kvm_para.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/header/uapi/asm-generic/kvm_para.h -------------------------------------------------------------------------------- /KVM-PT/header/uapi/asm/kvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/header/uapi/asm/kvm.h -------------------------------------------------------------------------------- /KVM-PT/header/uapi/linux/kvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/header/uapi/linux/kvm.h -------------------------------------------------------------------------------- /KVM-PT/header/uapi/linux/kvm_para.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/header/uapi/linux/kvm_para.h -------------------------------------------------------------------------------- /KVM-PT/header/x86/include/asm/kvm_emulate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/header/x86/include/asm/kvm_emulate.h -------------------------------------------------------------------------------- /KVM-PT/header/x86/include/asm/kvm_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/header/x86/include/asm/kvm_host.h -------------------------------------------------------------------------------- /KVM-PT/header/x86/include/asm/kvm_page_track.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/header/x86/include/asm/kvm_page_track.h -------------------------------------------------------------------------------- /KVM-PT/header/x86/include/asm/kvm_para.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/header/x86/include/asm/kvm_para.h -------------------------------------------------------------------------------- /KVM-PT/header/x86/include/uapi/asm/kvm_para.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/header/x86/include/uapi/asm/kvm_para.h -------------------------------------------------------------------------------- /KVM-PT/header/x86/kvm/kvm_cache_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/header/x86/kvm/kvm_cache_regs.h -------------------------------------------------------------------------------- /KVM-PT/hyperv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/hyperv.c -------------------------------------------------------------------------------- /KVM-PT/hyperv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/hyperv.h -------------------------------------------------------------------------------- /KVM-PT/i8254.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/i8254.c -------------------------------------------------------------------------------- /KVM-PT/i8254.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/i8254.h -------------------------------------------------------------------------------- /KVM-PT/i8259.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/i8259.c -------------------------------------------------------------------------------- /KVM-PT/ioapic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/ioapic.c -------------------------------------------------------------------------------- /KVM-PT/ioapic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/ioapic.h -------------------------------------------------------------------------------- /KVM-PT/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/irq.c -------------------------------------------------------------------------------- /KVM-PT/irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/irq.h -------------------------------------------------------------------------------- /KVM-PT/irq_comm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/irq_comm.c -------------------------------------------------------------------------------- /KVM-PT/lapic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/lapic.c -------------------------------------------------------------------------------- /KVM-PT/lapic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/lapic.h -------------------------------------------------------------------------------- /KVM-PT/load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/load.sh -------------------------------------------------------------------------------- /KVM-PT/mmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/mmu.c -------------------------------------------------------------------------------- /KVM-PT/mmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/mmu.h -------------------------------------------------------------------------------- /KVM-PT/mmu_audit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/mmu_audit.c -------------------------------------------------------------------------------- /KVM-PT/mtrr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/mtrr.c -------------------------------------------------------------------------------- /KVM-PT/page_track.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/page_track.c -------------------------------------------------------------------------------- /KVM-PT/paging_tmpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/paging_tmpl.h -------------------------------------------------------------------------------- /KVM-PT/pmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/pmu.c -------------------------------------------------------------------------------- /KVM-PT/pmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/pmu.h -------------------------------------------------------------------------------- /KVM-PT/pmu_amd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/pmu_amd.c -------------------------------------------------------------------------------- /KVM-PT/pmu_intel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/pmu_intel.c -------------------------------------------------------------------------------- /KVM-PT/tss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/tss.h -------------------------------------------------------------------------------- /KVM-PT/usermode_test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/usermode_test/.gitignore -------------------------------------------------------------------------------- /KVM-PT/usermode_test/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/usermode_test/compile.sh -------------------------------------------------------------------------------- /KVM-PT/usermode_test/support_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/usermode_test/support_test.c -------------------------------------------------------------------------------- /KVM-PT/usermode_test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/usermode_test/test.c -------------------------------------------------------------------------------- /KVM-PT/usermode_test/test_signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/usermode_test/test_signal.c -------------------------------------------------------------------------------- /KVM-PT/virt/kvm/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/virt/kvm/Kconfig -------------------------------------------------------------------------------- /KVM-PT/virt/kvm/async_pf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/virt/kvm/async_pf.c -------------------------------------------------------------------------------- /KVM-PT/virt/kvm/async_pf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/virt/kvm/async_pf.h -------------------------------------------------------------------------------- /KVM-PT/virt/kvm/coalesced_mmio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/virt/kvm/coalesced_mmio.c -------------------------------------------------------------------------------- /KVM-PT/virt/kvm/coalesced_mmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/virt/kvm/coalesced_mmio.h -------------------------------------------------------------------------------- /KVM-PT/virt/kvm/eventfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/virt/kvm/eventfd.c -------------------------------------------------------------------------------- /KVM-PT/virt/kvm/irqbypass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/virt/kvm/irqbypass.c -------------------------------------------------------------------------------- /KVM-PT/virt/kvm/irqchip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/virt/kvm/irqchip.c -------------------------------------------------------------------------------- /KVM-PT/virt/kvm/kvm_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/virt/kvm/kvm_main.c -------------------------------------------------------------------------------- /KVM-PT/virt/kvm/vfio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/virt/kvm/vfio.c -------------------------------------------------------------------------------- /KVM-PT/virt/kvm/vfio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/virt/kvm/vfio.h -------------------------------------------------------------------------------- /KVM-PT/virt/lib/Kconfig: -------------------------------------------------------------------------------- 1 | config IRQ_BYPASS_MANAGER 2 | tristate 3 | -------------------------------------------------------------------------------- /KVM-PT/virt/lib/irqbypass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/virt/lib/irqbypass.c -------------------------------------------------------------------------------- /KVM-PT/vmx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/vmx.c -------------------------------------------------------------------------------- /KVM-PT/vmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/vmx.h -------------------------------------------------------------------------------- /KVM-PT/vmx_evmcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/vmx_evmcs.h -------------------------------------------------------------------------------- /KVM-PT/vmx_fdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/vmx_fdl.c -------------------------------------------------------------------------------- /KVM-PT/vmx_fdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/vmx_fdl.h -------------------------------------------------------------------------------- /KVM-PT/vmx_pt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/vmx_pt.c -------------------------------------------------------------------------------- /KVM-PT/vmx_pt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/vmx_pt.h -------------------------------------------------------------------------------- /KVM-PT/vmx_shadow_fields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/vmx_shadow_fields.h -------------------------------------------------------------------------------- /KVM-PT/x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/x86.c -------------------------------------------------------------------------------- /KVM-PT/x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/KVM-PT/x86.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Makefile -------------------------------------------------------------------------------- /QEMU-PT/.gitignore: -------------------------------------------------------------------------------- 1 | qemu/ 2 | -------------------------------------------------------------------------------- /QEMU-PT/compile_qemu_pt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/QEMU-PT/compile_qemu_pt.sh -------------------------------------------------------------------------------- /QEMU-PT/qemu-4.2.50.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/QEMU-PT/qemu-4.2.50.zip -------------------------------------------------------------------------------- /QEMU-PT/qemu_pt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/QEMU-PT/qemu_pt.patch -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/README.md -------------------------------------------------------------------------------- /Targets/bhyve/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/bhyve/.gitignore -------------------------------------------------------------------------------- /Targets/bhyve/VM/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/bhyve/VM/.gitignore -------------------------------------------------------------------------------- /Targets/bhyve/VM/copy_install_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/bhyve/VM/copy_install_files.sh -------------------------------------------------------------------------------- /Targets/bhyve/VM/create_pre_snapshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/bhyve/VM/create_pre_snapshot.sh -------------------------------------------------------------------------------- /Targets/bhyve/VM/pre_snapshot/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Targets/bhyve/VM/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/bhyve/VM/prepare.sh -------------------------------------------------------------------------------- /Targets/bhyve/agent/bin/loader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/bhyve/agent/bin/loader -------------------------------------------------------------------------------- /Targets/bhyve/agent/bin/req_data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/bhyve/agent/bin/req_data -------------------------------------------------------------------------------- /Targets/bhyve/agent/bin/set_ip_range: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/bhyve/agent/bin/set_ip_range -------------------------------------------------------------------------------- /Targets/bhyve/agent/bin/set_vmm_ip_range: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/bhyve/agent/bin/set_vmm_ip_range -------------------------------------------------------------------------------- /Targets/bhyve/agent/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/bhyve/agent/compile.sh -------------------------------------------------------------------------------- /Targets/bhyve/agent/src/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/bhyve/agent/src/install.sh -------------------------------------------------------------------------------- /Targets/bhyve/agent/src/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/bhyve/agent/src/loader.c -------------------------------------------------------------------------------- /Targets/bhyve/agent/src/req_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/bhyve/agent/src/req_data.c -------------------------------------------------------------------------------- /Targets/bhyve/agent/src/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/bhyve/agent/src/run.sh -------------------------------------------------------------------------------- /Targets/bhyve/agent/src/run_asan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/bhyve/agent/src/run_asan.sh -------------------------------------------------------------------------------- /Targets/bhyve/agent/src/set_ip_range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/bhyve/agent/src/set_ip_range.c -------------------------------------------------------------------------------- /Targets/bhyve/agent/src/set_vmm_ip_range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/bhyve/agent/src/set_vmm_ip_range.c -------------------------------------------------------------------------------- /Targets/bhyve/config_template.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/bhyve/config_template.ron -------------------------------------------------------------------------------- /Targets/bhyve/sharedir/hypertrash_crash_detector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/bhyve/sharedir/hypertrash_crash_detector.c -------------------------------------------------------------------------------- /Targets/bhyve/sharedir/kafl_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/bhyve/sharedir/kafl_user.h -------------------------------------------------------------------------------- /Targets/bhyve/sharedir/req_data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/bhyve/sharedir/req_data -------------------------------------------------------------------------------- /Targets/bhyve/sharedir/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/bhyve/sharedir/run.sh -------------------------------------------------------------------------------- /Targets/bhyve/sharedir/set_ip_range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/bhyve/sharedir/set_ip_range.c -------------------------------------------------------------------------------- /Targets/qemu/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/qemu/.gitignore -------------------------------------------------------------------------------- /Targets/qemu/VM/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/qemu/VM/.gitignore -------------------------------------------------------------------------------- /Targets/qemu/VM/copy_install_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/qemu/VM/copy_install_files.sh -------------------------------------------------------------------------------- /Targets/qemu/VM/create_pre_snapshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/qemu/VM/create_pre_snapshot.sh -------------------------------------------------------------------------------- /Targets/qemu/VM/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/qemu/VM/prepare.sh -------------------------------------------------------------------------------- /Targets/qemu/agent/bin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Targets/qemu/agent/build_sharedir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/qemu/agent/build_sharedir.sh -------------------------------------------------------------------------------- /Targets/qemu/agent/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/qemu/agent/compile.sh -------------------------------------------------------------------------------- /Targets/qemu/agent/kafl_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/qemu/agent/kafl_user.h -------------------------------------------------------------------------------- /Targets/qemu/agent/src/hypertrash_crash_detector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/qemu/agent/src/hypertrash_crash_detector.c -------------------------------------------------------------------------------- /Targets/qemu/agent/src/hypertrash_crash_detector_asan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/qemu/agent/src/hypertrash_crash_detector_asan.c -------------------------------------------------------------------------------- /Targets/qemu/agent/src/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/qemu/agent/src/loader.c -------------------------------------------------------------------------------- /Targets/qemu/agent/src/req_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/qemu/agent/src/req_data.c -------------------------------------------------------------------------------- /Targets/qemu/agent/src/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/qemu/agent/src/run.sh -------------------------------------------------------------------------------- /Targets/qemu/agent/src/run_asan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/qemu/agent/src/run_asan.sh -------------------------------------------------------------------------------- /Targets/qemu/agent/src/set_ip_range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/qemu/agent/src/set_ip_range.c -------------------------------------------------------------------------------- /Targets/qemu/agent/src/set_kvm_ip_range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/qemu/agent/src/set_kvm_ip_range.c -------------------------------------------------------------------------------- /Targets/qemu/config_template.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/qemu/config_template.ron -------------------------------------------------------------------------------- /Targets/qemu/misc/grub.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/qemu/misc/grub.cfg -------------------------------------------------------------------------------- /Targets/qemu/misc/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/qemu/misc/install.sh -------------------------------------------------------------------------------- /Targets/qemu/misc/sources.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/Targets/qemu/misc/sources.list -------------------------------------------------------------------------------- /Targets/qemu/sharedir/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Targets/qemu/sharedir_asan/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nyx_fuzzer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/.gitignore -------------------------------------------------------------------------------- /nyx_fuzzer/config/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | -------------------------------------------------------------------------------- /nyx_fuzzer/config/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/config/Cargo.lock -------------------------------------------------------------------------------- /nyx_fuzzer/config/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/config/Cargo.toml -------------------------------------------------------------------------------- /nyx_fuzzer/config/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/config/src/lib.rs -------------------------------------------------------------------------------- /nyx_fuzzer/fuzz_runner/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /nyx_fuzzer/fuzz_runner/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/fuzz_runner/Cargo.toml -------------------------------------------------------------------------------- /nyx_fuzzer/fuzz_runner/src/exitreason.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/fuzz_runner/src/exitreason.rs -------------------------------------------------------------------------------- /nyx_fuzzer/fuzz_runner/src/forksrv/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/fuzz_runner/src/forksrv/error.rs -------------------------------------------------------------------------------- /nyx_fuzzer/fuzz_runner/src/forksrv/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/fuzz_runner/src/forksrv/mod.rs -------------------------------------------------------------------------------- /nyx_fuzzer/fuzz_runner/src/forksrv/newtypes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/fuzz_runner/src/forksrv/newtypes.rs -------------------------------------------------------------------------------- /nyx_fuzzer/fuzz_runner/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/fuzz_runner/src/lib.rs -------------------------------------------------------------------------------- /nyx_fuzzer/fuzz_runner/src/nyx/aux_buffer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/fuzz_runner/src/nyx/aux_buffer.rs -------------------------------------------------------------------------------- /nyx_fuzzer/fuzz_runner/src/nyx/mem_barrier.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/fuzz_runner/src/nyx/mem_barrier.rs -------------------------------------------------------------------------------- /nyx_fuzzer/fuzz_runner/src/nyx/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/fuzz_runner/src/nyx/mod.rs -------------------------------------------------------------------------------- /nyx_fuzzer/fuzz_runner/src/nyx/params.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/fuzz_runner/src/nyx/params.rs -------------------------------------------------------------------------------- /nyx_fuzzer/fuzz_runner/src/nyx/qemu_process.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/fuzz_runner/src/nyx/qemu_process.rs -------------------------------------------------------------------------------- /nyx_fuzzer/helpers/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /nyx_fuzzer/helpers/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/helpers/Cargo.toml -------------------------------------------------------------------------------- /nyx_fuzzer/helpers/src/hash_by_ref.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/helpers/src/hash_by_ref.rs -------------------------------------------------------------------------------- /nyx_fuzzer/helpers/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/helpers/src/lib.rs -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/.gitignore: -------------------------------------------------------------------------------- 1 | *.msgp 2 | -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/.gitignore -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/custom_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/custom_includes.h -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/.gitignore -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/Makefile -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/bin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/grub/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/grub/.gitignore -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/grub/grub.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/grub/grub.zip -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/grub/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/grub/install.sh -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/grub/patches/kern_efi_mm.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/grub/patches/kern_efi_mm.patch -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/grub/patches/loader_multiboot.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/grub/patches/loader_multiboot.patch -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/grub/patches/video_video.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/grub/patches/video_video.patch -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/acpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/acpi.h -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/apic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/apic.h -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/bmp.h -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/config.h -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/cpuid.h -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/efi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/efi.h -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/fuzz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/fuzz.h -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/hypercube_opcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/hypercube_opcodes.h -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/io.h -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/isa.h -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/isr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/isr.h -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/kafl_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/kafl_user.h -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/libk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/libk.h -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/mboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/mboot.h -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/mbootv1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/mbootv1.h -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/mem.h -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/mmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/mmio.h -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/msr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/msr.h -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/panic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/panic.h -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/pci.h -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/pic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/pic.h -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/serial.h -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/smp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/smp.h -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/system.h -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/test.h -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/tty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/tty.h -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/include/vga.h -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/iso/hypertrash_os_bios.iso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/iso/hypertrash_os_bios.iso -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/misc/crash.hexa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/misc/crash.hexa -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/misc/grub.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/misc/grub.cfg -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/misc/linker.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/misc/linker.ld -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/misc/logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/misc/logo.bmp -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/acpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/acpi.c -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/apic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/apic.c -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/asm/ap_boot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/asm/ap_boot.s -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/asm/boot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/asm/boot.s -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/asm/boot_v2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/asm/boot_v2.s -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/asm/bootv1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/asm/bootv1.s -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/asm/cpu_tables.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/asm/cpu_tables.s -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/cpuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/cpuid.c -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/efi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/efi.c -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/fuzz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/fuzz.c -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/gdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/gdt.c -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/hypercube_opcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/hypercube_opcodes.c -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/idt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/idt.c -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/isa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/isa.c -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/isr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/isr.c -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/kernel.c -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/libk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/libk.c -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/mboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/mboot.c -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/mem.c -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/msr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/msr.c -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/panic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/panic.c -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/pci.c -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/pic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/pic.c -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/serial.c -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/smp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/smp.c -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/src/tty.c -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/tesseract/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/tesseract/compile.sh -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/tesseract/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/tesseract/core.c -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/tesseract/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/tesseract/core.h -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/tesseract/decompiler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/tesseract/decompiler.c -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/tesseract/decompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/tesseract/decompiler.h -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/tesseract/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/tesseract/dict.c -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/tesseract/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/tesseract/dict.h -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/tesseract/generate_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/tesseract/generate_config.c -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/tesseract/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/tesseract/io.h -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/tesseract/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/tesseract/main.c -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/tesseract/mmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/tesseract/mmio.h -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/tesseract/opcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/tesseract/opcodes.c -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/tesseract/opcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/tesseract/opcodes.h -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/tesseract/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/tesseract/state.c -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/tesseract/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/tesseract/state.h -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/hypertrash_os/xorriso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/hypertrash_os/xorriso -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/build/userspace_tester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/build/userspace_tester.c -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/gen_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/gen_spec.py -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/hexa_spec/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/hexa_spec/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/hexa_spec/ahci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/hexa_spec/ahci.py -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/hexa_spec/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/hexa_spec/legacy.py -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/hexa_spec/xhci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/hexa_spec/xhci.py -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/make.sh -------------------------------------------------------------------------------- /nyx_fuzzer/hypervisor_spec/make_sharedirs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/hypervisor_spec/make_sharedirs.sh -------------------------------------------------------------------------------- /nyx_fuzzer/rust_fuzzer/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /nyx_fuzzer/rust_fuzzer/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/rust_fuzzer/Cargo.lock -------------------------------------------------------------------------------- /nyx_fuzzer/rust_fuzzer/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/rust_fuzzer/Cargo.toml -------------------------------------------------------------------------------- /nyx_fuzzer/rust_fuzzer/config.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/rust_fuzzer/config.ron -------------------------------------------------------------------------------- /nyx_fuzzer/rust_fuzzer/config_forkserver.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/rust_fuzzer/config_forkserver.ron -------------------------------------------------------------------------------- /nyx_fuzzer/rust_fuzzer/config_kernel.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/rust_fuzzer/config_kernel.ron -------------------------------------------------------------------------------- /nyx_fuzzer/rust_fuzzer/config_snapshot.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/rust_fuzzer/config_snapshot.ron -------------------------------------------------------------------------------- /nyx_fuzzer/rust_fuzzer/config_snapshot_cluster_ubuntu.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/rust_fuzzer/config_snapshot_cluster_ubuntu.ron -------------------------------------------------------------------------------- /nyx_fuzzer/rust_fuzzer/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/rust_fuzzer/deploy.sh -------------------------------------------------------------------------------- /nyx_fuzzer/rust_fuzzer/spec.msgp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/rust_fuzzer/spec.msgp -------------------------------------------------------------------------------- /nyx_fuzzer/rust_fuzzer/src/bitmap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/rust_fuzzer/src/bitmap.rs -------------------------------------------------------------------------------- /nyx_fuzzer/rust_fuzzer/src/fuzzer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/rust_fuzzer/src/fuzzer.rs -------------------------------------------------------------------------------- /nyx_fuzzer/rust_fuzzer/src/input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/rust_fuzzer/src/input.rs -------------------------------------------------------------------------------- /nyx_fuzzer/rust_fuzzer/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/rust_fuzzer/src/main.rs -------------------------------------------------------------------------------- /nyx_fuzzer/rust_fuzzer/src/queue.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/rust_fuzzer/src/queue.rs -------------------------------------------------------------------------------- /nyx_fuzzer/rust_fuzzer/src/romu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/rust_fuzzer/src/romu.rs -------------------------------------------------------------------------------- /nyx_fuzzer/rust_fuzzer_debug/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/rust_fuzzer_debug/Cargo.lock -------------------------------------------------------------------------------- /nyx_fuzzer/rust_fuzzer_debug/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/rust_fuzzer_debug/Cargo.toml -------------------------------------------------------------------------------- /nyx_fuzzer/rust_fuzzer_debug/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/rust_fuzzer_debug/src/main.rs -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/.gitignore -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/Cargo.toml -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/examples/display.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/examples/display.rs -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/examples/gen.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/examples/gen.rs -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/interpreter/build/.gitignore: -------------------------------------------------------------------------------- 1 | input.bin 2 | interpreter 3 | -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/interpreter/build/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/interpreter/build/a.out -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/interpreter/build/bytecode_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/interpreter/build/bytecode_spec.h -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/interpreter/build/bytecode_spec.template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/interpreter/build/bytecode_spec.template.h -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/interpreter/build/data_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/interpreter/build/data_include.h -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/interpreter/build/interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/interpreter/build/interpreter.h -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/interpreter/build/interpreter_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/interpreter/build/interpreter_main.c -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/interpreter/build/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/interpreter/build/make.sh -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/interpreter/build/spec.msgp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/interpreter/build/spec.msgp -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/interpreter/example_spec.msgp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/interpreter/example_spec.msgp -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/interpreter/example_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/interpreter/example_spec.py -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/interpreter/spec_lib/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | __pycache__ 3 | -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/interpreter/spec_lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/interpreter/spec_lib/data_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/interpreter/spec_lib/data_spec.py -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/interpreter/spec_lib/generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/interpreter/spec_lib/generators.py -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/interpreter/spec_lib/graph_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/interpreter/spec_lib/graph_builder.py -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/interpreter/spec_lib/graph_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/interpreter/spec_lib/graph_spec.py -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/interpreter/spec_lib/templates/bytecode_spec.jinja.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/interpreter/spec_lib/templates/bytecode_spec.jinja.h -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/interpreter/spec_lib/templates/data_include.jinja.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/interpreter/spec_lib/templates/data_include.jinja.h -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/interpreter/spec_lib/templates/data_struct.jinja.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/interpreter/spec_lib/templates/data_struct.jinja.h -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/interpreter/spec_lib/templates/interpreter.jinja.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/interpreter/spec_lib/templates/interpreter.jinja.h -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/interpreter/spec_vec_u8.msgp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/interpreter/spec_vec_u8.msgp -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/interpreter/spec_vec_u8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/interpreter/spec_vec_u8.py -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/interpreter/test_spec.msgp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/interpreter/test_spec.msgp -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/interpreter/test_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/interpreter/test_spec.py -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/src/custom_dict.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/src/custom_dict.rs -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/src/data_buff.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/src/data_buff.rs -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/src/graph_mutator/atomic_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/src/graph_mutator/atomic_data.rs -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/src/graph_mutator/generators.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/src/graph_mutator/generators.rs -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/src/graph_mutator/graph_builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/src/graph_mutator/graph_builder.rs -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/src/graph_mutator/graph_iter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/src/graph_mutator/graph_iter.rs -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/src/graph_mutator/graph_storage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/src/graph_mutator/graph_storage.rs -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/src/graph_mutator/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/src/graph_mutator/mod.rs -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/src/graph_mutator/newtypes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/src/graph_mutator/newtypes.rs -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/src/graph_mutator/spec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/src/graph_mutator/spec.rs -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/src/graph_mutator/spec_loader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/src/graph_mutator/spec_loader.rs -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/src/lib.rs -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/src/mutator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/src/mutator.rs -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/src/primitive_mutator/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/src/primitive_mutator/inplace_mutation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/src/primitive_mutator/inplace_mutation.rs -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/src/primitive_mutator/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/src/primitive_mutator/mod.rs -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/src/primitive_mutator/mutations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/src/primitive_mutator/mutations.txt -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/src/primitive_mutator/mutator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/src/primitive_mutator/mutator.rs -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/src/primitive_mutator/size_changing_mutation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/src/primitive_mutator/size_changing_mutation.rs -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/src/random/choices.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/src/random/choices.rs -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/src/random/distributions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/src/random/distributions.rs -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/src/random/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/src/random/mod.rs -------------------------------------------------------------------------------- /nyx_fuzzer/structured_fuzzer/src/random/romu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/nyx_fuzzer/structured_fuzzer/src/random/romu.rs -------------------------------------------------------------------------------- /paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUB-SysSec/Nyx/HEAD/paper.png --------------------------------------------------------------------------------