├── .appveyor.yml ├── .builds ├── freebsd.yml ├── netbsd.yml └── openbsd.yml ├── .clang-format ├── .dockerignore ├── .git-blame-ignore-revs ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── cmake_test │ ├── CMakeLists.txt │ └── rz_core_test.c ├── dependabot.yml ├── labeler.yml ├── meson-android-aarch64.ini ├── meson-android-arm.ini ├── meson-android-x86_64.ini ├── subproject_test │ ├── meson.build │ └── subprojects │ │ └── rizin.wrap ├── upload.sh └── workflows │ ├── ci.yml │ ├── code-analysis.yml │ ├── coverity-scan.yml │ ├── labeler.yml │ ├── linter.yml │ ├── muon.yml │ ├── rzshell-treesitter-tests.yml │ └── tcc.yml ├── .gitignore ├── .lgtm.yml ├── .prettierignore ├── .pylintrc ├── .travis.yml ├── .woodpecker └── macos-arm64.yml ├── BUILDING.md ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── COPYING ├── COPYING.LESSER ├── DEVELOPERS.md ├── Dockerfile ├── Doxyfile ├── LICENSES ├── Apache-2.0.txt ├── BSD-2-Clause.txt ├── BSD-3-Clause.txt ├── CC-BY-SA-4.0.txt ├── CC-PDDC.txt ├── CC0-1.0.txt ├── GPL-1.0-or-later.txt ├── GPL-2.0-only.txt ├── GPL-2.0-or-later.txt ├── GPL-3.0-or-later.txt ├── LGPL-2.0-or-later.txt ├── LGPL-2.1-only.txt ├── LGPL-2.1-or-later.txt ├── LGPL-3.0-only.txt ├── MIT.txt └── NCSA.txt ├── README.md ├── REUSE.toml ├── SECURITY.md ├── binrz ├── blob │ ├── main.c │ ├── meson.build │ └── meson_install_links.sh ├── man │ ├── rizin.1 │ ├── rz-asm.1 │ ├── rz-ax.1 │ ├── rz-bin.1 │ ├── rz-diff.1 │ ├── rz-esil.7 │ ├── rz-find.1 │ ├── rz-gg.1 │ ├── rz-hash.1 │ ├── rz-run.1 │ ├── rz-sign.1 │ └── rz-test.1 ├── meson.build ├── rizin │ ├── Info.plist │ ├── macos_sign.sh │ ├── meson.build │ ├── rizin.c │ ├── rizin_ios.xml │ └── rizin_macos.xml ├── rz-asm │ ├── meson.build │ └── rz-asm.c ├── rz-ax │ ├── meson.build │ └── rz-ax.c ├── rz-bin │ ├── meson.build │ └── rz-bin.c ├── rz-diff │ ├── meson.build │ └── rz-diff.c ├── rz-find │ ├── meson.build │ └── rz-find.c ├── rz-gg │ ├── meson.build │ ├── rz-gg.c │ ├── shellcodes.c.src │ ├── syscall.r │ └── xorencoder.asm ├── rz-hash │ ├── meson.build │ └── rz-hash.c ├── rz-run │ ├── meson.build │ └── rz-run.c ├── rz-sign │ ├── meson.build │ └── rz-sign.c └── rz-test │ ├── load.c │ ├── meson.build │ ├── run.c │ ├── rz-test.c │ └── rz_test.h ├── codecov.yml ├── dist ├── deb │ ├── README.md │ ├── debian.changelog │ ├── debian.compat │ ├── debian.control │ ├── debian.librizin-common.install │ ├── debian.librizin-dev.install │ ├── debian.rizin.install │ ├── debian.rules │ └── rizin.dsc ├── osx │ ├── Distribution │ ├── Resources │ │ ├── COPYING │ │ ├── COPYING.LESSER │ │ ├── rizin-logo.png │ │ └── welcome.rtf │ ├── build_osx_package.sh │ └── rizin.unpkg │ │ └── PackageInfo ├── rpm │ └── rizin.spec └── windows │ ├── build_windows_installer.ps1 │ ├── rizin.ico │ ├── rizin.iss │ └── vsdevenv.ps1 ├── doc ├── PACKAGERS.md ├── RELEASE.md ├── asm_strings.md ├── avr.md ├── brainfuck.md ├── calling-conventions.md ├── crosscompile.md ├── debug-internals.md ├── debug.md ├── esil.md ├── examples │ ├── cross_builds │ │ └── meson-linux-s390x.ini │ └── egg │ │ ├── exit.r │ │ ├── hi.r │ │ ├── inc.r │ │ ├── loop.r │ │ ├── simple.r │ │ ├── sys.r │ │ └── write.r ├── fortunes.fun ├── fortunes.tips ├── gdb.md ├── hud ├── img │ ├── hexagon-asm-syntax-general.png │ ├── hexagon-asm-syntax-general.png.license │ ├── hexagon-asm-syntax-regex.png │ ├── hexagon-asm-syntax-regex.png.license │ └── rizin.svg ├── register_profile.md ├── release-template.md ├── rzil.md ├── rzshell.md ├── siol.md └── windbg.md ├── librz ├── README.md ├── RizinConfig.cmake.in ├── RzModulesConfig.cmake.in ├── arch │ ├── acode.c │ ├── analysis.c │ ├── analysis_private.h │ ├── aop.c │ ├── arch.c │ ├── asm.c │ ├── binutils_as.c │ ├── binutils_as.h │ ├── block.c │ ├── cc.c │ ├── class.c │ ├── cond.c │ ├── cpus │ │ ├── avr-ATTiny48.sdb.txt │ │ ├── avr-ATTiny88.sdb.txt │ │ ├── avr-ATmega1280.sdb.txt │ │ ├── avr-ATmega1281.sdb.txt │ │ ├── avr-ATmega16.sdb.txt │ │ ├── avr-ATmega168.sdb.txt │ │ ├── avr-ATmega2560.sdb.txt │ │ ├── avr-ATmega2561.sdb.txt │ │ ├── avr-ATmega640.sdb.txt │ │ ├── avr-ATmega8.sdb.txt │ │ ├── avr-ATmega88.sdb.txt │ │ ├── avr-ATxmega128a4u.sdb.txt │ │ └── meson.build │ ├── cycles.c │ ├── data.c │ ├── deprecated_arch_helper.h │ ├── dwarf_process.c │ ├── esil │ │ ├── esil.c │ │ ├── esil_interrupt.c │ │ ├── esil_sources.c │ │ ├── esil_stats.c │ │ └── esil_trace.c │ ├── fcn.c │ ├── filter.c │ ├── function.c │ ├── hint.c │ ├── il │ │ ├── analysis_il.c │ │ └── analysis_il_trace.c │ ├── il_trace.c │ ├── isa │ │ ├── 6502 │ │ │ ├── 6502_il.inc │ │ │ ├── 6502dis.c │ │ │ └── 6502dis.h │ │ ├── 8051 │ │ │ ├── 8051_ass.c │ │ │ ├── 8051_ass.h │ │ │ ├── 8051_disas.c │ │ │ ├── 8051_disas.h │ │ │ ├── 8051_il.c │ │ │ ├── 8051_il.h │ │ │ ├── 8051_ops.h │ │ │ └── 8051_parse.c │ │ ├── alpha │ │ │ ├── alpha.h │ │ │ ├── alpha.inc │ │ │ └── alpha_dwarf_regnum_table.h │ │ ├── amd29k │ │ │ ├── amd29k.c │ │ │ ├── amd29k.h │ │ │ └── amd29k_internal.h │ │ ├── arm │ │ │ ├── arm_accessors32.h │ │ │ ├── arm_accessors64.h │ │ │ ├── arm_cs.h │ │ │ ├── arm_dwarf_regnum_table.h │ │ │ ├── arm_esil32.c │ │ │ ├── arm_esil64.c │ │ │ ├── arm_il32.c │ │ │ ├── arm_il64.c │ │ │ ├── arm_il_common.inc │ │ │ ├── arm_it.c │ │ │ ├── arm_it.h │ │ │ ├── armass.c │ │ │ ├── armass16_const.h │ │ │ ├── armass64.c │ │ │ ├── armass64_const.h │ │ │ └── asm-arm.h │ │ ├── avr │ │ │ ├── assembler.c │ │ │ ├── assembler.h │ │ │ ├── avr_esil.c │ │ │ ├── avr_esil.h │ │ │ ├── avr_il.c │ │ │ ├── avr_il.h │ │ │ ├── common.h │ │ │ ├── disassembler.c │ │ │ └── disassembler.h │ │ ├── cil │ │ │ ├── cil_dis.c │ │ │ ├── cil_dis.h │ │ │ ├── opcode.def │ │ │ ├── opcodes_double.def │ │ │ ├── opcodes_prefix.def │ │ │ └── opcodes_single.def │ │ ├── cr16 │ │ │ ├── cr16_disas.c │ │ │ └── cr16_disas.h │ │ ├── dalvik │ │ │ └── opcode.h │ │ ├── dcpu16 │ │ │ ├── asm.c │ │ │ ├── dcpu16.h │ │ │ └── dis.c │ │ ├── ebc │ │ │ ├── ebc_disas.c │ │ │ └── ebc_disas.h │ │ ├── gb │ │ │ ├── gb.h │ │ │ ├── gb_il.inc │ │ │ ├── gb_makros.h │ │ │ ├── gb_op_table.h │ │ │ ├── gbasm.c │ │ │ ├── gbdis.c │ │ │ └── meta_gb_cmt.c │ │ ├── h8300 │ │ │ ├── h8300_disas.c │ │ │ ├── h8300_disas.h │ │ │ ├── h8300_dwarf_regnum_table.h │ │ │ ├── h8300_esil.c │ │ │ └── h8300_il.c │ │ ├── h8500 │ │ │ ├── h8500.c │ │ │ └── h8500.h │ │ ├── hexagon │ │ │ ├── hexagon.c │ │ │ ├── hexagon.h │ │ │ ├── hexagon_arch.c │ │ │ ├── hexagon_arch.h │ │ │ ├── hexagon_disas.c │ │ │ ├── hexagon_dwarf_reg_num_table.inc │ │ │ ├── hexagon_il.c │ │ │ ├── hexagon_il.h │ │ │ ├── hexagon_il_getter_table.h │ │ │ ├── hexagon_insn.h │ │ │ ├── hexagon_reg_tables.h │ │ │ └── il_ops │ │ │ │ ├── hexagon_il_A2_ops.c │ │ │ │ ├── hexagon_il_A4_ops.c │ │ │ │ ├── hexagon_il_A5_ops.c │ │ │ │ ├── hexagon_il_A6_ops.c │ │ │ │ ├── hexagon_il_A7_ops.c │ │ │ │ ├── hexagon_il_C2_ops.c │ │ │ │ ├── hexagon_il_C4_ops.c │ │ │ │ ├── hexagon_il_F2_ops.c │ │ │ │ ├── hexagon_il_G4_ops.c │ │ │ │ ├── hexagon_il_IMPORTED_ops.c │ │ │ │ ├── hexagon_il_J2_ops.c │ │ │ │ ├── hexagon_il_J4_ops.c │ │ │ │ ├── hexagon_il_L2_ops.c │ │ │ │ ├── hexagon_il_L4_ops.c │ │ │ │ ├── hexagon_il_L6_ops.c │ │ │ │ ├── hexagon_il_M2_ops.c │ │ │ │ ├── hexagon_il_M4_ops.c │ │ │ │ ├── hexagon_il_M5_ops.c │ │ │ │ ├── hexagon_il_M6_ops.c │ │ │ │ ├── hexagon_il_M7_ops.c │ │ │ │ ├── hexagon_il_PS_ops.c │ │ │ │ ├── hexagon_il_R6_ops.c │ │ │ │ ├── hexagon_il_S2_ops.c │ │ │ │ ├── hexagon_il_S4_ops.c │ │ │ │ ├── hexagon_il_S5_ops.c │ │ │ │ ├── hexagon_il_S6_ops.c │ │ │ │ ├── hexagon_il_SA1_ops.c │ │ │ │ ├── hexagon_il_SL1_ops.c │ │ │ │ ├── hexagon_il_SL2_ops.c │ │ │ │ ├── hexagon_il_SS1_ops.c │ │ │ │ ├── hexagon_il_SS2_ops.c │ │ │ │ ├── hexagon_il_UNDOCUMENTED_ops.c │ │ │ │ ├── hexagon_il_V6_ops.c │ │ │ │ ├── hexagon_il_Y2_ops.c │ │ │ │ ├── hexagon_il_Y4_ops.c │ │ │ │ ├── hexagon_il_Y5_ops.c │ │ │ │ ├── hexagon_il_Y6_ops.c │ │ │ │ ├── hexagon_il_dep_ops.c │ │ │ │ ├── hexagon_il_invalid_ops.c │ │ │ │ └── hexagon_il_non_insn_ops.c │ │ ├── i4004 │ │ │ ├── i4004dis.c │ │ │ └── i4004dis.h │ │ ├── i8080 │ │ │ ├── i8080dis.c │ │ │ └── i8080dis.h │ │ ├── java │ │ │ ├── assembler.c │ │ │ ├── assembler.h │ │ │ ├── bytecode.h │ │ │ ├── const.h │ │ │ ├── jvm.c │ │ │ └── jvm.h │ │ ├── lh5801 │ │ │ ├── lh5801.c │ │ │ └── lh5801.h │ │ ├── lm32 │ │ │ └── lm32_isa.h │ │ ├── loongarch │ │ │ ├── loongarch.h │ │ │ └── loongarch.inc │ │ ├── luac │ │ │ ├── lua_arch.c │ │ │ ├── lua_arch.h │ │ │ ├── v53 │ │ │ │ ├── analysis_53.c │ │ │ │ ├── arch_53.h │ │ │ │ ├── assembly_53.c │ │ │ │ ├── disassembly_53.c │ │ │ │ └── opcode_53.c │ │ │ └── v54 │ │ │ │ ├── analysis_54.c │ │ │ │ ├── arch_54.h │ │ │ │ ├── assembly_54.c │ │ │ │ ├── disassembly_54.c │ │ │ │ └── opcode_54.c │ │ ├── mcore │ │ │ ├── mcore.c │ │ │ └── mcore.h │ │ ├── mcs96 │ │ │ └── mcs96.h │ │ ├── mips │ │ │ ├── il │ │ │ │ ├── atomic.c │ │ │ │ ├── common.c │ │ │ │ ├── cop2.c │ │ │ │ ├── fp.c │ │ │ │ └── hw.c │ │ │ ├── mips_assembler.c │ │ │ ├── mips_assembler.h │ │ │ ├── mips_esil.c │ │ │ ├── mips_il.c │ │ │ └── mips_internal.h │ │ ├── msp430 │ │ │ ├── msp430_disas.c │ │ │ ├── msp430_disas.h │ │ │ ├── msp430_il.c │ │ │ ├── msp430_il.h │ │ │ ├── msp430_il_flags.h │ │ │ ├── msp430_il_getset.h │ │ │ ├── msp430_il_jmp_utils.h │ │ │ └── msp430_register_names.h │ │ ├── or1k │ │ │ ├── or1k_disas.c │ │ │ └── or1k_disas.h │ │ ├── pic │ │ │ ├── pic.h │ │ │ ├── pic_baseline.c │ │ │ ├── pic_baseline.h │ │ │ ├── pic_highend.c │ │ │ ├── pic_highend.h │ │ │ ├── pic_highend_analysis.c │ │ │ ├── pic_highend_esil.inc │ │ │ ├── pic_highend_il.inc │ │ │ ├── pic_il.inc │ │ │ ├── pic_midrange.c │ │ │ ├── pic_midrange.h │ │ │ ├── pic_midrange_analysis.c │ │ │ ├── pic_midrange_esil.inc │ │ │ └── pic_midrange_il.inc │ │ ├── ppc │ │ │ ├── libps │ │ │ │ ├── libps.c │ │ │ │ ├── libps.h │ │ │ │ └── libps_internal.h │ │ │ ├── libvle │ │ │ │ ├── vle.c │ │ │ │ ├── vle.h │ │ │ │ └── vle_internal.h │ │ │ ├── ppc_analysis.h │ │ │ ├── ppc_dwarf_regnum_table.h │ │ │ ├── ppc_il.c │ │ │ ├── ppc_il.h │ │ │ ├── ppc_il_flag_ops.c │ │ │ └── ppc_il_ops.c │ │ ├── propeller │ │ │ ├── propeller_disas.c │ │ │ └── propeller_disas.h │ │ ├── pyc │ │ │ ├── opcode.c │ │ │ ├── opcode.h │ │ │ ├── opcode_10.c │ │ │ ├── opcode_11.c │ │ │ ├── opcode_12.c │ │ │ ├── opcode_13.c │ │ │ ├── opcode_14.c │ │ │ ├── opcode_15.c │ │ │ ├── opcode_16.c │ │ │ ├── opcode_20.c │ │ │ ├── opcode_21.c │ │ │ ├── opcode_22.c │ │ │ ├── opcode_23.c │ │ │ ├── opcode_24.c │ │ │ ├── opcode_25.c │ │ │ ├── opcode_26.c │ │ │ ├── opcode_27.c │ │ │ ├── opcode_2x.c │ │ │ ├── opcode_30.c │ │ │ ├── opcode_31.c │ │ │ ├── opcode_310.c │ │ │ ├── opcode_311.c │ │ │ ├── opcode_312.c │ │ │ ├── opcode_313.c │ │ │ ├── opcode_32.c │ │ │ ├── opcode_33.c │ │ │ ├── opcode_34.c │ │ │ ├── opcode_35.c │ │ │ ├── opcode_36.c │ │ │ ├── opcode_37.c │ │ │ ├── opcode_38.c │ │ │ ├── opcode_39.c │ │ │ ├── opcode_3x.c │ │ │ ├── opcode_analysis.c │ │ │ ├── opcode_arg_fmt.c │ │ │ ├── pyc_dis.c │ │ │ └── pyc_dis.h │ │ ├── rl78 │ │ │ ├── rl78.c │ │ │ ├── rl78.h │ │ │ ├── rl78_dwarf_reg.h │ │ │ ├── rl78_instr.c │ │ │ ├── rl78_instr.h │ │ │ ├── rl78_maps.c │ │ │ ├── rl78_maps.h │ │ │ ├── rl78_operand.c │ │ │ └── rl78_operand.h │ │ ├── rsp │ │ │ ├── rsp_idec.c │ │ │ └── rsp_idec.h │ │ ├── rx │ │ │ ├── rx.c │ │ │ ├── rx.h │ │ │ ├── rx_dwarf_regnum_table.h │ │ │ ├── rx_inst.c │ │ │ ├── rx_inst.h │ │ │ ├── rx_opcode_detail.c │ │ │ ├── rx_opcode_detail.h │ │ │ └── rx_str.inc │ │ ├── sh │ │ │ ├── assembler.c │ │ │ ├── assembler.h │ │ │ ├── common.h │ │ │ ├── disassembler.c │ │ │ ├── disassembler.h │ │ │ ├── lookup.c │ │ │ ├── regs.h │ │ │ ├── sh_dwarf_regnum_table.h │ │ │ ├── sh_il.c │ │ │ └── sh_il.h │ │ ├── snes │ │ │ ├── snes.h │ │ │ ├── snes_op_table.h │ │ │ └── snesdis.c │ │ ├── sparc │ │ │ ├── sparc_il.c │ │ │ ├── sparc_il.h │ │ │ └── sparc_il_ops.c │ │ ├── spc700 │ │ │ ├── spc700_opcode_table.h │ │ │ ├── spc700dis.c │ │ │ └── spc700dis.h │ │ ├── tms320 │ │ │ ├── c55x │ │ │ │ └── table.h │ │ │ ├── c55x_plus │ │ │ │ ├── c55plus.c │ │ │ │ ├── c55plus.h │ │ │ │ ├── c55plus_analysis.c │ │ │ │ ├── c55plus_analysis.h │ │ │ │ ├── c55plus_decode.c │ │ │ │ ├── decode.h │ │ │ │ ├── decode_funcs.c │ │ │ │ ├── decode_funcs.h │ │ │ │ ├── hashtable.c │ │ │ │ ├── hashtable.h │ │ │ │ ├── hashvector.c │ │ │ │ ├── hashvector.h │ │ │ │ ├── ins.c │ │ │ │ ├── ins.h │ │ │ │ ├── utils.c │ │ │ │ └── utils.h │ │ │ ├── c64x │ │ │ │ ├── c64x.c │ │ │ │ └── c64x.h │ │ │ ├── scripts │ │ │ │ └── c55x_gen_tbl.pl │ │ │ ├── tms320_dasm.c │ │ │ └── tms320_dasm.h │ │ ├── tricore │ │ │ ├── README.md │ │ │ ├── tricore.h │ │ │ ├── tricore.inc │ │ │ ├── tricore_dwarf_regnum_table.h │ │ │ ├── tricore_il.c │ │ │ ├── tricore_il.h │ │ │ └── tricore_il_fp.inc │ │ ├── v810 │ │ │ ├── v810.h │ │ │ ├── v810_disas.c │ │ │ ├── v810_disas.h │ │ │ └── v810_il.c │ │ ├── v850 │ │ │ ├── v850_disas.c │ │ │ ├── v850_disas.h │ │ │ ├── v850_dwarf_reg_num_table.h │ │ │ ├── v850_esil.inc │ │ │ ├── v850_il.c │ │ │ └── v850_il.h │ │ ├── wasm │ │ │ ├── wasm.c │ │ │ └── wasm.h │ │ ├── x86 │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── il_fp_ops.inc │ │ │ ├── il_ops.inc │ │ │ ├── x86_dwarf_regnum_table.h │ │ │ ├── x86_il.c │ │ │ ├── x86_il.h │ │ │ └── x86_mnemonics.h │ │ ├── xap │ │ │ ├── dis.c │ │ │ └── dis.h │ │ └── xtensa │ │ │ ├── xtensa.c │ │ │ ├── xtensa.h │ │ │ ├── xtensa_dwarf_regnum_table.h │ │ │ ├── xtensa_esil.c │ │ │ └── xtensa_il.c │ ├── isa_gnu │ │ ├── arc │ │ │ ├── arc-dis.c │ │ │ ├── arc-dis.h │ │ │ ├── arc-ext.c │ │ │ ├── arc-ext.h │ │ │ ├── arc-opc-cgen.h │ │ │ ├── arc-opc.c │ │ │ ├── arc-opc.h │ │ │ ├── arc.h │ │ │ ├── arcompact-dis.c │ │ │ └── arcompact-dis.h │ │ ├── common_gnu │ │ │ ├── ansidecl.h │ │ │ ├── bfdlink.h │ │ │ ├── disas-asm.h │ │ │ ├── elf-bfd.h │ │ │ ├── elf │ │ │ │ ├── common.h │ │ │ │ ├── external.h │ │ │ │ ├── internal.h │ │ │ │ ├── mips.h │ │ │ │ ├── reloc-macros.h │ │ │ │ └── xtensa.h │ │ │ ├── libiberty.h │ │ │ ├── mybfd.h │ │ │ ├── opcode │ │ │ │ ├── cris.h │ │ │ │ ├── hppa.h │ │ │ │ ├── lanai.h │ │ │ │ ├── mips.h │ │ │ │ ├── ppc.h │ │ │ │ └── sparc.h │ │ │ ├── opintl.h │ │ │ ├── safe-ctype.h │ │ │ ├── symcat.h │ │ │ └── sysdep.h │ │ ├── cris │ │ │ ├── cris-dis.c │ │ │ ├── cris-opc.c │ │ │ └── cris_context.h │ │ ├── hppa │ │ │ ├── hppa-dis.c │ │ │ └── libhppa.h │ │ ├── lanai │ │ │ ├── lanai-dis.c │ │ │ └── lanai-opc.c │ │ ├── riscv │ │ │ ├── riscv-opc.c │ │ │ ├── riscv-opc.h │ │ │ ├── riscv.c │ │ │ ├── riscv.h │ │ │ └── riscv_inc.h │ │ ├── sparc │ │ │ └── sparc-opc.c │ │ ├── vax │ │ │ ├── vax-dis.c │ │ │ └── vax.h │ │ └── z80 │ │ │ ├── expressions.c │ │ │ ├── z80.c │ │ │ ├── z80_tab.h │ │ │ ├── z80asm.c │ │ │ └── z80asm.h │ ├── jmptbl.c │ ├── labels.c │ ├── meson.build │ ├── meta.c │ ├── no_rtti.c │ ├── op.c │ ├── opcodes │ │ ├── 6502.sdb.txt │ │ ├── 8051.sdb.txt │ │ ├── LH5801.sdb.txt │ │ ├── arc.sdb.txt │ │ ├── arm.sdb.txt │ │ ├── avr.sdb.txt │ │ ├── chip8.sdb.txt │ │ ├── dalvik.sdb.txt │ │ ├── i4004.sdb.txt │ │ ├── i8080.sdb.txt │ │ ├── java.sdb.txt │ │ ├── lm32.sdb.txt │ │ ├── m68k.sdb.txt │ │ ├── malbolge.sdb.txt │ │ ├── meson.build │ │ ├── mips.sdb.txt │ │ ├── msp430.sdb.txt │ │ ├── pic18c.sdb.txt │ │ ├── ppc.sdb.txt │ │ ├── propeller.sdb.txt │ │ ├── riscv.sdb.txt │ │ ├── rl78.sdb.txt │ │ ├── rx.sdb.txt │ │ ├── sh.sdb.txt │ │ ├── sparc.sdb.txt │ │ ├── sysz.sdb.txt │ │ ├── tms320.sdb.txt │ │ ├── tricore.sdb.txt │ │ ├── v810.sdb.txt │ │ ├── v850.sdb.txt │ │ ├── x86.sdb.txt │ │ ├── xtensa.sdb.txt │ │ └── z80.sdb.txt │ ├── p │ │ ├── analysis │ │ │ ├── analysis_6502.c │ │ │ ├── analysis_8051.c │ │ │ ├── analysis_alpha_cs.c │ │ │ ├── analysis_amd29k.c │ │ │ ├── analysis_arm_cs.c │ │ │ ├── analysis_arm_hacks.inc │ │ │ ├── analysis_avr.c │ │ │ ├── analysis_bf.c │ │ │ ├── analysis_chip8.c │ │ │ ├── analysis_cil.c │ │ │ ├── analysis_cr16.c │ │ │ ├── analysis_dalvik.c │ │ │ ├── analysis_ebc.c │ │ │ ├── analysis_gb.c │ │ │ ├── analysis_h8300.c │ │ │ ├── analysis_h8500.c │ │ │ ├── analysis_hexagon.c │ │ │ ├── analysis_i4004.c │ │ │ ├── analysis_i8080.c │ │ │ ├── analysis_java.c │ │ │ ├── analysis_loongarch_cs.c │ │ │ ├── analysis_luac.c │ │ │ ├── analysis_m680x_cs.c │ │ │ ├── analysis_m68k_cs.c │ │ │ ├── analysis_malbolge.c │ │ │ ├── analysis_mcore.c │ │ │ ├── analysis_mips_cs.c │ │ │ ├── analysis_msp430.c │ │ │ ├── analysis_null.c │ │ │ ├── analysis_or1k.c │ │ │ ├── analysis_pic.c │ │ │ ├── analysis_ppc_cs.c │ │ │ ├── analysis_propeller.c │ │ │ ├── analysis_pyc.c │ │ │ ├── analysis_riscv_cs.c │ │ │ ├── analysis_rl78.c │ │ │ ├── analysis_rsp.c │ │ │ ├── analysis_rx.c │ │ │ ├── analysis_sh.c │ │ │ ├── analysis_snes.c │ │ │ ├── analysis_sparc_cs.c │ │ │ ├── analysis_spc700.c │ │ │ ├── analysis_sysz.c │ │ │ ├── analysis_tms320.c │ │ │ ├── analysis_tricore_cs.c │ │ │ ├── analysis_v810.c │ │ │ ├── analysis_v850.c │ │ │ ├── analysis_wasm.c │ │ │ ├── analysis_x86_zydis.c │ │ │ ├── analysis_xap.c │ │ │ ├── analysis_xcore_cs.c │ │ │ └── analysis_xtensa_cs.c │ │ ├── arch_6502.c │ │ ├── arch_8051.c │ │ ├── arch_alpha.c │ │ ├── arch_amd29k.c │ │ ├── arch_arm_as.c │ │ ├── arch_arm_cs.c │ │ ├── arch_avr.c │ │ ├── arch_bf.c │ │ ├── arch_chip8.c │ │ ├── arch_cil.c │ │ ├── arch_cr16.c │ │ ├── arch_dalvik.c │ │ ├── arch_dcpu16.c │ │ ├── arch_ebc.c │ │ ├── arch_gb.c │ │ ├── arch_h8300.c │ │ ├── arch_h8500.c │ │ ├── arch_hexagon.c │ │ ├── arch_i4004.c │ │ ├── arch_i8080.c │ │ ├── arch_java.c │ │ ├── arch_lh5801.c │ │ ├── arch_lm32.c │ │ ├── arch_loongarch_cs.c │ │ ├── arch_luac.c │ │ ├── arch_m680x_cs.c │ │ ├── arch_m68k_cs.c │ │ ├── arch_malbolge.c │ │ ├── arch_mcore.c │ │ ├── arch_mcs96.c │ │ ├── arch_mips_cs.c │ │ ├── arch_msp430.c │ │ ├── arch_null.c │ │ ├── arch_or1k.c │ │ ├── arch_pic.c │ │ ├── arch_ppc_as.c │ │ ├── arch_ppc_cs.c │ │ ├── arch_propeller.c │ │ ├── arch_pyc.c │ │ ├── arch_riscv_cs.c │ │ ├── arch_rl78.c │ │ ├── arch_rsp.c │ │ ├── arch_rx.c │ │ ├── arch_sh.c │ │ ├── arch_snes.c │ │ ├── arch_sparc_cs.c │ │ ├── arch_spc700.c │ │ ├── arch_sysz.c │ │ ├── arch_tms320.c │ │ ├── arch_tricore_cs.c │ │ ├── arch_v810.c │ │ ├── arch_v850.c │ │ ├── arch_wasm.c │ │ ├── arch_x86_as.c │ │ ├── arch_x86_nasm.c │ │ ├── arch_x86_nz.c │ │ ├── arch_x86_zydis.c │ │ ├── arch_xap.c │ │ ├── arch_xcore_cs.c │ │ ├── arch_xtensa_cs.c │ │ ├── asm │ │ │ ├── asm_6502.c │ │ │ ├── asm_8051.c │ │ │ ├── asm_alpha_cs.c │ │ │ ├── asm_amd29k.c │ │ │ ├── asm_arm_as.c │ │ │ ├── asm_arm_cs.c │ │ │ ├── asm_arm_hacks.inc │ │ │ ├── asm_avr.c │ │ │ ├── asm_bf.c │ │ │ ├── asm_chip8.c │ │ │ ├── asm_cil.c │ │ │ ├── asm_cr16.c │ │ │ ├── asm_dalvik.c │ │ │ ├── asm_dcpu16.c │ │ │ ├── asm_ebc.c │ │ │ ├── asm_gb.c │ │ │ ├── asm_h8300.c │ │ │ ├── asm_h8500.c │ │ │ ├── asm_hexagon.c │ │ │ ├── asm_i4004.c │ │ │ ├── asm_i8080.c │ │ │ ├── asm_java.c │ │ │ ├── asm_lh5801.c │ │ │ ├── asm_lm32.c │ │ │ ├── asm_loongarch_cs.c │ │ │ ├── asm_luac.c │ │ │ ├── asm_m680x_cs.c │ │ │ ├── asm_m68k_cs.c │ │ │ ├── asm_malbolge.c │ │ │ ├── asm_mcore.c │ │ │ ├── asm_mcs96.c │ │ │ ├── asm_mips_cs.c │ │ │ ├── asm_msp430.c │ │ │ ├── asm_null.c │ │ │ ├── asm_or1k.c │ │ │ ├── asm_pic.c │ │ │ ├── asm_ppc_as.c │ │ │ ├── asm_ppc_cs.c │ │ │ ├── asm_propeller.c │ │ │ ├── asm_pyc.c │ │ │ ├── asm_riscv_cs.c │ │ │ ├── asm_rl78.c │ │ │ ├── asm_rsp.c │ │ │ ├── asm_rx.c │ │ │ ├── asm_sh.c │ │ │ ├── asm_snes.c │ │ │ ├── asm_sparc_cs.c │ │ │ ├── asm_spc700.c │ │ │ ├── asm_sysz.c │ │ │ ├── asm_tms320.c │ │ │ ├── asm_tricore_cs.c │ │ │ ├── asm_v810.c │ │ │ ├── asm_v850.c │ │ │ ├── asm_wasm.c │ │ │ ├── asm_x86_as.c │ │ │ ├── asm_x86_cs.c │ │ │ ├── asm_x86_nasm.c │ │ │ ├── asm_x86_nz.c │ │ │ ├── asm_x86_vm.c │ │ │ ├── asm_x86_zydis.c │ │ │ ├── asm_xap.c │ │ │ ├── asm_xcore_cs.c │ │ │ ├── asm_xtensa_cs.c │ │ │ └── cs_helper.h │ │ └── parse │ │ │ ├── parse_6502_pseudo.c │ │ │ ├── parse_arm_pseudo.c │ │ │ ├── parse_avr_pseudo.c │ │ │ ├── parse_chip8_pseudo.c │ │ │ ├── parse_dalvik_pseudo.c │ │ │ ├── parse_m68k_pseudo.c │ │ │ ├── parse_mips_pseudo.c │ │ │ ├── parse_ppc_pseudo.c │ │ │ ├── parse_sh_pseudo.c │ │ │ ├── parse_tms320_pseudo.c │ │ │ ├── parse_v850_pseudo.c │ │ │ ├── parse_wasm_pseudo.c │ │ │ └── parse_x86_pseudo_zydis.c │ ├── p_gnu │ │ ├── analysis │ │ │ ├── analysis_arc_gnu.c │ │ │ ├── analysis_cris_gnu.c │ │ │ ├── analysis_riscv_gnu.c │ │ │ ├── analysis_vax_gnu.c │ │ │ └── analysis_z80_gnu.c │ │ ├── arch_arc.c │ │ ├── arch_cris.c │ │ ├── arch_hppa.c │ │ ├── arch_lanai.c │ │ ├── arch_riscv.c │ │ ├── arch_vax.c │ │ ├── arch_z80.c │ │ ├── asm │ │ │ ├── asm_arc_gnu.c │ │ │ ├── asm_cris_gnu.c │ │ │ ├── asm_hppa_gnu.c │ │ │ ├── asm_lanai_gnu.c │ │ │ ├── asm_riscv_gnu.c │ │ │ ├── asm_vax_gnu.c │ │ │ └── asm_z80_gnu.c │ │ └── parse │ │ │ ├── parse_riscv_gnu.c │ │ │ └── parse_z80_gnu.c │ ├── parse.c │ ├── parse_helper.c │ ├── parse_helper.h │ ├── pdb_process.c │ ├── platform_profile.c │ ├── platform_target_index.c │ ├── platforms │ │ ├── arm-arm1176-bcm2835.sdb.txt │ │ ├── arm-cortexA72-bcm2711.sdb.txt │ │ ├── arm-cortexA8-omap3430.sdb.txt │ │ ├── meson.build │ │ └── x86-generic-generic.sdb.txt │ ├── reflines.c │ ├── rtti.c │ ├── rtti_itanium.c │ ├── rtti_msvc.c │ ├── serialize_analysis.c │ ├── similarity.c │ ├── swift_rtti.c │ ├── switch.c │ ├── types.c │ ├── types │ │ ├── cc-arm-16.sdb.txt │ │ ├── cc-arm-32.sdb.txt │ │ ├── cc-arm-64.sdb.txt │ │ ├── cc-avr-8.sdb.txt │ │ ├── cc-hexagon-32.sdb.txt │ │ ├── cc-m68k-32.sdb.txt │ │ ├── cc-mips-32.sdb.txt │ │ ├── cc-mips-64.sdb.txt │ │ ├── cc-ppc-32.sdb.txt │ │ ├── cc-ppc-64.sdb.txt │ │ ├── cc-riscv-64.sdb.txt │ │ ├── cc-rx-32.sdb.txt │ │ ├── cc-sh-32.sdb.txt │ │ ├── cc-sparc-32.sdb.txt │ │ ├── cc-spc700-16.sdb.txt │ │ ├── cc-sysz-64.sdb.txt │ │ ├── cc-tricore-32.sdb.txt │ │ ├── cc-x86-16.sdb.txt │ │ ├── cc-x86-32.sdb.txt │ │ ├── cc-x86-64.sdb.txt │ │ ├── cc-xtensa-32.sdb.txt │ │ ├── functions-android.sdb.txt │ │ ├── functions-libc.sdb.txt │ │ ├── functions-linux.sdb.txt │ │ ├── functions-macos.sdb.txt │ │ ├── functions-windows.sdb.txt │ │ ├── functions-windows_bcrypt.sdb.txt │ │ ├── functions-windows_cfgmgr32.sdb.txt │ │ ├── functions-windows_combaseapi.sdb.txt │ │ ├── functions-windows_commctrl.sdb.txt │ │ ├── functions-windows_consoleapi2.sdb.txt │ │ ├── functions-windows_dbghelp.sdb.txt │ │ ├── functions-windows_evntrace.sdb.txt │ │ ├── functions-windows_fileapi.sdb.txt │ │ ├── functions-windows_libloaderapi.sdb.txt │ │ ├── functions-windows_memoryapi.sdb.txt │ │ ├── functions-windows_ncrypt.sdb.txt │ │ ├── functions-windows_objbase.sdb.txt │ │ ├── functions-windows_oleauto.sdb.txt │ │ ├── functions-windows_processthreadsapi.sdb.txt │ │ ├── functions-windows_psapi.sdb.txt │ │ ├── functions-windows_securitybaseapi.sdb.txt │ │ ├── functions-windows_shellapi.sdb.txt │ │ ├── functions-windows_shlwapi.sdb.txt │ │ ├── functions-windows_synchapi.sdb.txt │ │ ├── functions-windows_sysinfoapi.sdb.txt │ │ ├── functions-windows_threadpoolapiset.sdb.txt │ │ ├── functions-windows_userenv.sdb.txt │ │ ├── functions-windows_winbase.sdb.txt │ │ ├── functions-windows_wincred.sdb.txt │ │ ├── functions-windows_wincrypt.sdb.txt │ │ ├── functions-windows_winhttp.sdb.txt │ │ ├── functions-windows_winldap.sdb.txt │ │ ├── functions-windows_winnls.sdb.txt │ │ ├── functions-windows_winreg.sdb.txt │ │ ├── functions-windows_winsock2.sdb.txt │ │ ├── functions-windows_winsvc.sdb.txt │ │ ├── functions-windows_winuser.sdb.txt │ │ ├── functions-windows_ws2spi.sdb.txt │ │ ├── meson.build │ │ ├── spec.sdb.txt │ │ ├── types-16.sdb.txt │ │ ├── types-32.sdb.txt │ │ ├── types-64.sdb.txt │ │ ├── types-android.sdb.txt │ │ ├── types-arm-ios-16.sdb.txt │ │ ├── types-arm-ios-32.sdb.txt │ │ ├── types-arm-ios-64.sdb.txt │ │ ├── types-atomic.sdb.txt │ │ ├── types-libc.sdb.txt │ │ ├── types-linux.sdb.txt │ │ ├── types-macos.sdb.txt │ │ ├── types-windows.sdb.txt │ │ ├── types-windows_bcrypt.sdb.txt │ │ ├── types-windows_combaseapi.sdb.txt │ │ ├── types-windows_commctrl.sdb.txt │ │ ├── types-windows_dbghelp.sdb.txt │ │ ├── types-windows_evntrace.sdb.txt │ │ ├── types-windows_fileapi.sdb.txt │ │ ├── types-windows_libloaderapi.sdb.txt │ │ ├── types-windows_memoryapi.sdb.txt │ │ ├── types-windows_ncrypt.sdb.txt │ │ ├── types-windows_objbase.sdb.txt │ │ ├── types-windows_processthreadsapi.sdb.txt │ │ ├── types-windows_shlwapi.sdb.txt │ │ ├── types-windows_wincrypt.sdb.txt │ │ ├── types-windows_winhttp.sdb.txt │ │ ├── types-windows_winldap.sdb.txt │ │ ├── types-windows_winsock2.sdb.txt │ │ ├── types-windows_ws2spi.sdb.txt │ │ ├── types-x86-macos-64.sdb.txt │ │ ├── types-x86-windows-32.sdb.txt │ │ └── types-x86-windows-64.sdb.txt │ ├── value.c │ ├── var.c │ ├── var_global.c │ ├── vtable.c │ └── xrefs.c ├── bin │ ├── README.md │ ├── bfile.c │ ├── bfile_string.c │ ├── bin.c │ ├── bin_demangle.c │ ├── bin_language.c │ ├── bin_ldr.c │ ├── bobj.c │ ├── bobj_process.c │ ├── bobj_process_class.c │ ├── bobj_process_entry.c │ ├── bobj_process_field.c │ ├── bobj_process_file.c │ ├── bobj_process_import.c │ ├── bobj_process_map.c │ ├── bobj_process_reloc.c │ ├── bobj_process_section.c │ ├── bobj_process_string.c │ ├── bobj_process_symbol.c │ ├── d │ │ ├── bios │ │ ├── cdex.h │ │ ├── dex │ │ ├── dex.h │ │ ├── dll │ │ │ ├── AVICAP.sdb.txt │ │ │ ├── AVIFILE.sdb.txt │ │ │ ├── AWDEVL16.sdb.txt │ │ │ ├── CARDS.sdb.txt │ │ │ ├── CMC.sdb.txt │ │ │ ├── COMM.sdb.txt │ │ │ ├── COMMCTRL.sdb.txt │ │ │ ├── COMMDLG.sdb.txt │ │ │ ├── COMPOBJ.sdb.txt │ │ │ ├── CSPMAN.sdb.txt │ │ │ ├── DCIMAN.sdb.txt │ │ │ ├── DDEML.sdb.txt │ │ │ ├── DESKCP16.sdb.txt │ │ │ ├── DIBENG.sdb.txt │ │ │ ├── DISPDIB.sdb.txt │ │ │ ├── DISPLAY.sdb.txt │ │ │ ├── DSKMAINT.sdb.txt │ │ │ ├── ENABLE3.sdb.txt │ │ │ ├── FAXCODEC.sdb.txt │ │ │ ├── GDI.sdb.txt │ │ │ ├── INET16.sdb.txt │ │ │ ├── IOSCLASS.sdb.txt │ │ │ ├── KERNEL.sdb.txt │ │ │ ├── KEYBOARD.sdb.txt │ │ │ ├── LZEXPAND.sdb.txt │ │ │ ├── MAINCP16.sdb.txt │ │ │ ├── MAPI.sdb.txt │ │ │ ├── MAPIU.sdb.txt │ │ │ ├── MAPIX.sdb.txt │ │ │ ├── MCIAVI.sdb.txt │ │ │ ├── MCICDA.sdb.txt │ │ │ ├── MCIMIDI.sdb.txt │ │ │ ├── MCIOLE.sdb.txt │ │ │ ├── MCIWAVE.sdb.txt │ │ │ ├── MIDIMAP.sdb.txt │ │ │ ├── ML3XEC16.sdb.txt │ │ │ ├── MMCI.sdb.txt │ │ │ ├── MMSYSTEM.sdb.txt │ │ │ ├── MODEM.sdb.txt │ │ │ ├── MODEMUI.sdb.txt │ │ │ ├── MOUSE.sdb.txt │ │ │ ├── MSACM.sdb.txt │ │ │ ├── MSACMMAP.sdb.txt │ │ │ ├── MSDOS.sdb.txt │ │ │ ├── MSDOSD.sdb.txt │ │ │ ├── MSJSTICK.sdb.txt │ │ │ ├── MSMIXMGR.sdb.txt │ │ │ ├── MSPCIC.sdb.txt │ │ │ ├── MSPRINT.sdb.txt │ │ │ ├── MSTCP.sdb.txt │ │ │ ├── MSVIDEO.sdb.txt │ │ │ ├── NETAPI.sdb.txt │ │ │ ├── NETCPL.sdb.txt │ │ │ ├── NETDI.sdb.txt │ │ │ ├── NETOS.sdb.txt │ │ │ ├── NETWARE.sdb.txt │ │ │ ├── NW16.sdb.txt │ │ │ ├── OLE2.sdb.txt │ │ │ ├── OLE2CONV.sdb.txt │ │ │ ├── OLE2DISP.sdb.txt │ │ │ ├── OLE2NLS.sdb.txt │ │ │ ├── OLECLI.sdb.txt │ │ │ ├── OLESVR.sdb.txt │ │ │ ├── PIFMGR.sdb.txt │ │ │ ├── PKPD.sdb.txt │ │ │ ├── PMSPL.sdb.txt │ │ │ ├── POWER.sdb.txt │ │ │ ├── RASAPI16.sdb.txt │ │ │ ├── README.txt │ │ │ ├── RNASETUP.sdb.txt │ │ │ ├── RSRC16.sdb.txt │ │ │ ├── SB16SND.sdb.txt │ │ │ ├── SBFM.sdb.txt │ │ │ ├── SETUP4.sdb.txt │ │ │ ├── SETUPX.sdb.txt │ │ │ ├── SHELL.sdb.txt │ │ │ ├── SOUND.sdb.txt │ │ │ ├── SPOOLER.sdb.txt │ │ │ ├── STORAGE.sdb.txt │ │ │ ├── SYSCLASS.sdb.txt │ │ │ ├── SYSDETMG.sdb.txt │ │ │ ├── SYSDM.sdb.txt │ │ │ ├── SYSEDIT.sdb.txt │ │ │ ├── SYSTEM.sdb.txt │ │ │ ├── SYSTHUNK.sdb.txt │ │ │ ├── TAPI.sdb.txt │ │ │ ├── TAPIADDR.sdb.txt │ │ │ ├── TOOLHELP.sdb.txt │ │ │ ├── TYPELIB.sdb.txt │ │ │ ├── UMDM16.sdb.txt │ │ │ ├── USER.sdb.txt │ │ │ ├── VER.sdb.txt │ │ │ ├── WHLP16T.sdb.txt │ │ │ ├── WIN32S16.sdb.txt │ │ │ ├── WIN87EM.sdb.txt │ │ │ ├── WINASPI.sdb.txt │ │ │ ├── WINNET16.sdb.txt │ │ │ ├── WINOLDAP.sdb.txt │ │ │ ├── WINSOCK.sdb.txt │ │ │ ├── WINSPL16.sdb.txt │ │ │ ├── WPSAPD.sdb.txt │ │ │ ├── WPSUNI.sdb.txt │ │ │ ├── WPSUNIRE.sdb.txt │ │ │ ├── WSASRV.sdb.txt │ │ │ ├── aclui.sdb.txt │ │ │ ├── activeds.sdb.txt │ │ │ ├── atl.sdb.txt │ │ │ ├── borlndmm.sdb.txt │ │ │ ├── browseui.sdb.txt │ │ │ ├── cabinet.sdb.txt │ │ │ ├── comctl32.sdb.txt │ │ │ ├── csmfpapi.sdb.txt │ │ │ ├── csmtpapi.sdb.txt │ │ │ ├── csncdapi.sdb.txt │ │ │ ├── dsound.sdb.txt │ │ │ ├── gsprop32.sdb.txt │ │ │ ├── iertutil.sdb.txt │ │ │ ├── kernel32.sdb.txt │ │ │ ├── mfc100u.sdb.txt │ │ │ ├── mfc120.sdb.txt │ │ │ ├── mfc140u.sdb.txt │ │ │ ├── mfc30.sdb.txt │ │ │ ├── mfc40.sdb.txt │ │ │ ├── mfc42.sdb.txt │ │ │ ├── mfc42u.sdb.txt │ │ │ ├── mfc71.sdb.txt │ │ │ ├── mfc71u.sdb.txt │ │ │ ├── mfc90u.sdb.txt │ │ │ ├── msi.sdb.txt │ │ │ ├── mstlsapi.sdb.txt │ │ │ ├── msvbvm50.sdb.txt │ │ │ ├── msvbvm60.sdb.txt │ │ │ ├── odbc32.sdb.txt │ │ │ ├── oleaut32.sdb.txt │ │ │ ├── olecli32.sdb.txt │ │ │ ├── oledlg.sdb.txt │ │ │ ├── olepro32.sdb.txt │ │ │ ├── olesvr32.sdb.txt │ │ │ ├── shdocvw.sdb.txt │ │ │ ├── shell32.sdb.txt │ │ │ ├── shlwapi.sdb.txt │ │ │ ├── spr32d70.sdb.txt │ │ │ ├── urlmon.sdb.txt │ │ │ ├── uxtheme.sdb.txt │ │ │ ├── vb40032.sdb.txt │ │ │ ├── vssapi.sdb.txt │ │ │ ├── winmm.sdb.txt │ │ │ ├── wldap32.sdb.txt │ │ │ ├── ws2_32.sdb.txt │ │ │ ├── wsnmp32.sdb.txt │ │ │ └── wsock32.sdb.txt │ │ ├── elf32 │ │ ├── elf64 │ │ ├── elf_enums │ │ ├── jni.h │ │ ├── macho │ │ ├── meson.build │ │ ├── mz │ │ ├── pe32 │ │ └── zip │ ├── dbginfo.c │ ├── dwarf │ │ ├── abbrev.c │ │ ├── addr.c │ │ ├── aranges.c │ │ ├── attr.c │ │ ├── block.c │ │ ├── dwarf.c │ │ ├── dwarf_private.h │ │ ├── endian_reader.c │ │ ├── endian_reader.h │ │ ├── enum.c │ │ ├── line.c │ │ ├── line_str.c │ │ ├── lists.c │ │ ├── loclists.c │ │ ├── loclists.h │ │ ├── macro.h │ │ ├── op.c │ │ ├── op.h │ │ ├── rnglists.c │ │ ├── str.c │ │ ├── str_offsets.c │ │ ├── unit.c │ │ ├── value.c │ │ └── value.h │ ├── filter.c │ ├── format │ │ ├── bflt │ │ │ ├── bflt.c │ │ │ └── bflt.h │ │ ├── coff │ │ │ ├── coff.c │ │ │ ├── coff.h │ │ │ ├── coff_reloc.c │ │ │ └── coff_specs.h │ │ ├── dex │ │ │ ├── dex.c │ │ │ └── dex.h │ │ ├── dmp │ │ │ ├── dmp64.c │ │ │ ├── dmp64.h │ │ │ └── dmp_specs.h │ │ ├── elf │ │ │ ├── elf.c │ │ │ ├── elf.h │ │ │ ├── elf64.c │ │ │ ├── elf64.h │ │ │ ├── elf64_arm.c │ │ │ ├── elf64_corefile.c │ │ │ ├── elf64_dynamic.c │ │ │ ├── elf64_ehdr.c │ │ │ ├── elf64_hash.c │ │ │ ├── elf64_imports.c │ │ │ ├── elf64_info.c │ │ │ ├── elf64_map.c │ │ │ ├── elf64_misc.c │ │ │ ├── elf64_notes.c │ │ │ ├── elf64_parser.c │ │ │ ├── elf64_parser.h │ │ │ ├── elf64_relocs.c │ │ │ ├── elf64_relocs_conversion.c │ │ │ ├── elf64_relocs_patching.c │ │ │ ├── elf64_sections.c │ │ │ ├── elf64_segments.c │ │ │ ├── elf64_strtab.c │ │ │ ├── elf64_symbols.c │ │ │ ├── elf_arm.c │ │ │ ├── elf_corefile.c │ │ │ ├── elf_dynamic.c │ │ │ ├── elf_dynamic.h │ │ │ ├── elf_ehdr.c │ │ │ ├── elf_hash.c │ │ │ ├── elf_imports.c │ │ │ ├── elf_info.c │ │ │ ├── elf_map.c │ │ │ ├── elf_misc.c │ │ │ ├── elf_notes.c │ │ │ ├── elf_parser.c │ │ │ ├── elf_parser.h │ │ │ ├── elf_relocs.c │ │ │ ├── elf_relocs_conversion.c │ │ │ ├── elf_relocs_patching.c │ │ │ ├── elf_sections.c │ │ │ ├── elf_segments.c │ │ │ ├── elf_specs.h │ │ │ ├── elf_strtab.c │ │ │ ├── elf_strtab.h │ │ │ ├── elf_symbols.c │ │ │ ├── glibc_elf.h │ │ │ └── nanomips_elf.h │ │ ├── java │ │ │ ├── class_attribute.c │ │ │ ├── class_attribute.h │ │ │ ├── class_bin.c │ │ │ ├── class_bin.h │ │ │ ├── class_const_pool.c │ │ │ ├── class_const_pool.h │ │ │ ├── class_exceptions.h │ │ │ ├── class_field.c │ │ │ ├── class_field.h │ │ │ ├── class_interface.c │ │ │ ├── class_interface.h │ │ │ ├── class_line_number.h │ │ │ ├── class_local_variable.h │ │ │ ├── class_method.c │ │ │ ├── class_method.h │ │ │ ├── class_module.h │ │ │ └── class_private.h │ │ ├── le │ │ │ ├── le.c │ │ │ ├── le.h │ │ │ └── le_specs.h │ │ ├── luac │ │ │ ├── luac_bin.c │ │ │ ├── luac_common.c │ │ │ ├── luac_common.h │ │ │ ├── v53 │ │ │ │ ├── luac_specs_53.h │ │ │ │ └── parse_53.c │ │ │ └── v54 │ │ │ │ ├── luac_specs_54.h │ │ │ │ └── parse_54.c │ │ ├── mach0 │ │ │ ├── coresymbolication.c │ │ │ ├── coresymbolication.h │ │ │ ├── dyldcache.c │ │ │ ├── dyldcache.h │ │ │ ├── dyldcache_rebase.c │ │ │ ├── fatmach0.c │ │ │ ├── fatmach0.h │ │ │ ├── kernelcache.c │ │ │ ├── kernelcache.h │ │ │ ├── mach0.c │ │ │ ├── mach0.h │ │ │ ├── mach064.c │ │ │ ├── mach064.h │ │ │ ├── mach064_chained_fixups.c │ │ │ ├── mach064_relocs.c │ │ │ ├── mach0_chained_fixups.c │ │ │ ├── mach0_common.c │ │ │ ├── mach0_defines.h │ │ │ ├── mach0_relocs.c │ │ │ ├── mach0_specs.h │ │ │ └── mach0_utils.inc │ │ ├── mbn │ │ │ ├── mbn.c │ │ │ └── mbn.h │ │ ├── mdmp │ │ │ ├── mdmp.c │ │ │ ├── mdmp.h │ │ │ ├── mdmp_pe.c │ │ │ ├── mdmp_pe.h │ │ │ ├── mdmp_pe64.c │ │ │ ├── mdmp_pe64.h │ │ │ ├── mdmp_specs.h │ │ │ └── mdmp_windefs.h │ │ ├── mdt │ │ │ ├── mdt.c │ │ │ └── mdt.h │ │ ├── mz │ │ │ ├── mz.c │ │ │ ├── mz.h │ │ │ └── mz_specs.h │ │ ├── ne │ │ │ ├── ne.c │ │ │ ├── ne.h │ │ │ └── ne_specs.h │ │ ├── nes │ │ │ └── nes_specs.h │ │ ├── nin │ │ │ ├── gba.h │ │ │ ├── n3ds.h │ │ │ ├── nds.h │ │ │ └── nin.h │ │ ├── nxo │ │ │ ├── nxo.c │ │ │ └── nxo.h │ │ ├── objc │ │ │ ├── mach064_classes.c │ │ │ ├── mach064_classes.h │ │ │ ├── mach0_classes.c │ │ │ └── mach0_classes.h │ │ ├── omf │ │ │ ├── omf.c │ │ │ ├── omf.h │ │ │ └── omf_specs.h │ │ ├── p9 │ │ │ ├── p9bin.c │ │ │ └── p9bin.h │ │ ├── pe │ │ │ ├── dotnet.c │ │ │ ├── dotnet.h │ │ │ ├── pe.c │ │ │ ├── pe.h │ │ │ ├── pe64.c │ │ │ ├── pe64.h │ │ │ ├── pe64_clr.c │ │ │ ├── pe64_debug.c │ │ │ ├── pe64_exports.c │ │ │ ├── pe64_hdr.c │ │ │ ├── pe64_imports.c │ │ │ ├── pe64_info.c │ │ │ ├── pe64_overlay.c │ │ │ ├── pe64_relocs.c │ │ │ ├── pe64_rsrc.c │ │ │ ├── pe64_section.c │ │ │ ├── pe64_security.c │ │ │ ├── pe64_tls.c │ │ │ ├── pe_clr.c │ │ │ ├── pe_debug.c │ │ │ ├── pe_exports.c │ │ │ ├── pe_hdr.c │ │ │ ├── pe_imports.c │ │ │ ├── pe_info.c │ │ │ ├── pe_overlay.c │ │ │ ├── pe_relocs.c │ │ │ ├── pe_rsrc.c │ │ │ ├── pe_section.c │ │ │ ├── pe_security.c │ │ │ ├── pe_specs.h │ │ │ ├── pe_tls.c │ │ │ ├── pemixed.c │ │ │ └── pemixed.h │ │ ├── psxexe │ │ │ └── psxexe.h │ │ ├── pyc │ │ │ ├── marshal.c │ │ │ ├── marshal.h │ │ │ ├── pyc.c │ │ │ ├── pyc.h │ │ │ ├── pyc_magic.c │ │ │ └── pyc_magic.h │ │ ├── qnx │ │ │ ├── qnx.h │ │ │ └── qnx_specs.h │ │ ├── spc700 │ │ │ └── spc_specs.h │ │ ├── te │ │ │ ├── te.c │ │ │ ├── te.h │ │ │ └── te_specs.h │ │ ├── vsf │ │ │ └── vsf_specs.h │ │ ├── wasm │ │ │ ├── wasm.c │ │ │ └── wasm.h │ │ ├── xbe │ │ │ ├── kernel.h │ │ │ └── xbe.h │ │ ├── xnu │ │ │ ├── mig_index.h │ │ │ ├── rz_cf_dict.c │ │ │ ├── rz_cf_dict.h │ │ │ └── scripts │ │ │ │ ├── build_mig_index.py │ │ │ │ └── machtraps.py │ │ └── zimg │ │ │ ├── zimg.c │ │ │ └── zimg.h │ ├── golang.c │ ├── i │ │ └── private.h │ ├── meson.build │ ├── p │ │ ├── bin_any.c │ │ ├── bin_art.c │ │ ├── bin_avr.c │ │ ├── bin_bf.c │ │ ├── bin_bflt.c │ │ ├── bin_bios.c │ │ ├── bin_bootimg.c │ │ ├── bin_cgc.c │ │ ├── bin_coff.c │ │ ├── bin_dex.c │ │ ├── bin_dmp64.c │ │ ├── bin_dol.c │ │ ├── bin_dyldcache.c │ │ ├── bin_elf.c │ │ ├── bin_elf.inc │ │ ├── bin_elf64.c │ │ ├── bin_java.c │ │ ├── bin_le.c │ │ ├── bin_luac.c │ │ ├── bin_mach0.c │ │ ├── bin_mach0.inc │ │ ├── bin_mach064.c │ │ ├── bin_mbn.c │ │ ├── bin_mdmp.c │ │ ├── bin_mdt.c │ │ ├── bin_menuet.c │ │ ├── bin_mz.c │ │ ├── bin_ne.c │ │ ├── bin_nes.c │ │ ├── bin_nin3ds.c │ │ ├── bin_nin64.c │ │ ├── bin_ninds.c │ │ ├── bin_ningb.c │ │ ├── bin_ningba.c │ │ ├── bin_ninsnes.c │ │ ├── bin_nro.c │ │ ├── bin_nso.c │ │ ├── bin_omf.c │ │ ├── bin_p9.c │ │ ├── bin_pe.c │ │ ├── bin_pe.inc │ │ ├── bin_pe64.c │ │ ├── bin_pebble.c │ │ ├── bin_prg.c │ │ ├── bin_psxexe.c │ │ ├── bin_pyc.c │ │ ├── bin_qnx.c │ │ ├── bin_smd.c │ │ ├── bin_sms.c │ │ ├── bin_spc700.c │ │ ├── bin_symbols.c │ │ ├── bin_te.c │ │ ├── bin_vsf.c │ │ ├── bin_wasm.c │ │ ├── bin_xbe.c │ │ ├── bin_xnu_kernelcache.c │ │ ├── bin_xtr_fatmach0.c │ │ ├── bin_xtr_pemixed.c │ │ ├── bin_xtr_sep64.c │ │ └── bin_zimg.c │ ├── pdb │ │ ├── cab_extract.c │ │ ├── dbi.c │ │ ├── dbi.h │ │ ├── gdata.c │ │ ├── modi.c │ │ ├── modi.h │ │ ├── omap.c │ │ ├── omap.h │ │ ├── pdb.c │ │ ├── pdb.h │ │ ├── pdb_downloader.c │ │ ├── pdb_downloader.h │ │ ├── stream_pe.c │ │ ├── stream_pe.h │ │ ├── symbol.c │ │ ├── symbol.h │ │ ├── symbol_enum.h │ │ ├── tpi.c │ │ └── tpi.h │ └── relocs_patch.c ├── config │ ├── README.md │ ├── config.c │ ├── hold.c │ ├── meson.build │ └── serialize_config.c ├── cons │ ├── README.md │ ├── bar.c │ ├── canvas.c │ ├── canvas_line.c │ ├── cons.c │ ├── cpipe.c │ ├── cutf8.c │ ├── d │ │ ├── ayu │ │ ├── basic │ │ ├── behelit │ │ ├── bold │ │ ├── bright │ │ ├── cga │ │ ├── consonance │ │ ├── cutter │ │ ├── dark │ │ ├── darkda │ │ ├── defragger │ │ ├── durian │ │ ├── focus │ │ ├── gb │ │ ├── gentoo │ │ ├── lima │ │ ├── mars │ │ ├── matrix │ │ ├── meson.build │ │ ├── monokai │ │ ├── nord │ │ ├── ogray │ │ ├── onedark │ │ ├── pink │ │ ├── rasta │ │ ├── sepia │ │ ├── smyck │ │ ├── solarized │ │ ├── tango │ │ ├── twilight │ │ ├── white │ │ ├── white2 │ │ ├── xvilka │ │ └── zenburn │ ├── dietline.c │ ├── grep.c │ ├── histogram.c │ ├── html.c │ ├── hud.c │ ├── input.c │ ├── less.c │ ├── line.c │ ├── meson.build │ ├── output.c │ ├── pager.c │ ├── pager_private.h │ ├── pal.c │ ├── prompt.c │ └── rgb.c ├── core │ ├── README.md │ ├── agraph.c │ ├── analysis_objc.c │ ├── analysis_tp.c │ ├── basefind.c │ ├── cagraph.c │ ├── canalysis.c │ ├── cannotated_code.c │ ├── carg.c │ ├── casm.c │ ├── cautocmpl.c │ ├── cbin.c │ ├── cbounds.c │ ├── cconfig.c │ ├── ccrypto.c │ ├── cdebug.c │ ├── cesil.c │ ├── cfile.c │ ├── cflag.c │ ├── cgraph.c │ ├── chash.c │ ├── cheap.c │ ├── cil.c │ ├── cio.c │ ├── clang.c │ ├── cmark.c │ ├── cmd │ │ ├── cmd.c │ │ ├── cmd_alias.c │ │ ├── cmd_analysis.c │ │ ├── cmd_api.c │ │ ├── cmd_block.c │ │ ├── cmd_cmp.c │ │ ├── cmd_debug.c │ │ ├── cmd_egg.c │ │ ├── cmd_eval.c │ │ ├── cmd_flag.c │ │ ├── cmd_flirt.c │ │ ├── cmd_hash.c │ │ ├── cmd_help.c │ │ ├── cmd_history.c │ │ ├── cmd_info.c │ │ ├── cmd_interactive.c │ │ ├── cmd_interactive_panel.c │ │ ├── cmd_interpret.c │ │ ├── cmd_linux_heap_glibc.c │ │ ├── cmd_macro.c │ │ ├── cmd_magic.c │ │ ├── cmd_mark.c │ │ ├── cmd_math.c │ │ ├── cmd_meta.c │ │ ├── cmd_open.c │ │ ├── cmd_plugins.c │ │ ├── cmd_print.c │ │ ├── cmd_project.c │ │ ├── cmd_query.c │ │ ├── cmd_quit.c │ │ ├── cmd_regs.c │ │ ├── cmd_regs_meta.inc │ │ ├── cmd_remote.c │ │ ├── cmd_resize.c │ │ ├── cmd_search.c │ │ ├── cmd_search_rop.c │ │ ├── cmd_seek.c │ │ ├── cmd_shell.c │ │ ├── cmd_system.c │ │ ├── cmd_tasks.c │ │ ├── cmd_type.c │ │ ├── cmd_windows_heap.c │ │ ├── cmd_write.c │ │ ├── cmd_yank.c │ │ └── rz-shell-parser-cmds.inc │ ├── cmd_descs │ │ ├── cmd_alias.yaml │ │ ├── cmd_analysis.yaml │ │ ├── cmd_block.yaml │ │ ├── cmd_cmp.yaml │ │ ├── cmd_debug.yaml │ │ ├── cmd_descs.c │ │ ├── cmd_descs.h │ │ ├── cmd_descs.yaml │ │ ├── cmd_descs_generate.py │ │ ├── cmd_descs_util.py │ │ ├── cmd_egg.yaml │ │ ├── cmd_eval.yaml │ │ ├── cmd_flag.yaml │ │ ├── cmd_flirt.yaml │ │ ├── cmd_heap_glibc.yaml │ │ ├── cmd_help.yaml │ │ ├── cmd_history.yaml │ │ ├── cmd_info.yaml │ │ ├── cmd_interactive.yaml │ │ ├── cmd_interactive_panel.yaml │ │ ├── cmd_interpret.yaml │ │ ├── cmd_macro.yaml │ │ ├── cmd_mark.yaml │ │ ├── cmd_math.yaml │ │ ├── cmd_meta.yaml │ │ ├── cmd_open.yaml │ │ ├── cmd_plugins.yaml │ │ ├── cmd_print.yaml │ │ ├── cmd_project.yaml │ │ ├── cmd_query.yaml │ │ ├── cmd_quit.yaml │ │ ├── cmd_remote.yaml │ │ ├── cmd_resize.yaml │ │ ├── cmd_search.yaml │ │ ├── cmd_seek.yaml │ │ ├── cmd_shell.yaml │ │ ├── cmd_system.yaml │ │ ├── cmd_tasks.yaml │ │ ├── cmd_type.yaml │ │ ├── cmd_write.yaml │ │ ├── cmd_yank.yaml │ │ ├── meson.build │ │ └── rzshell_which.py │ ├── cmeta.c │ ├── cmp.c │ ├── core.c │ ├── core_private.h │ ├── core_private_base.h │ ├── cparser.c │ ├── cpdb.c │ ├── cplugin.c │ ├── cprint.c │ ├── creg.c │ ├── csearch.c │ ├── csign.c │ ├── csyscall.c │ ├── ctypes.c │ ├── cvfile.c │ ├── devirtualize_cxx.c │ ├── devirtualize_objc.c │ ├── disasm.c │ ├── fortune.c │ ├── golang.c │ ├── hack.c │ ├── libs.c │ ├── linux_heap_glibc.c │ ├── linux_heap_glibc.h │ ├── linux_heap_glibc64.c │ ├── linux_heap_glibc64.h │ ├── linux_heap_jemalloc.c │ ├── meson.build │ ├── p │ │ ├── core_dex.c │ │ ├── core_java.c │ │ └── core_plugin_example.c │ ├── project.c │ ├── project_migrate.c │ ├── rop.c │ ├── rtr.c │ ├── rtr_http.c │ ├── rtr_shell.c │ ├── seek.c │ ├── serialize_core.c │ ├── task.c │ ├── tui │ │ ├── biteditor.c │ │ ├── classes.c │ │ ├── colors.c │ │ ├── comments.c │ │ ├── config.c │ │ ├── define.c │ │ ├── esil.c │ │ ├── flags.c │ │ ├── hud.c │ │ ├── modes.c │ │ ├── modes.h │ │ ├── panels.c │ │ ├── tabs.c │ │ ├── vasm.c │ │ ├── visual.c │ │ ├── vmarks.c │ │ ├── vmenus.c │ │ └── vmenus_graph.c │ ├── windows_heap.c │ └── yank.c ├── crypto │ ├── README.md │ ├── crypto.c │ ├── des.c │ ├── meson.build │ └── p │ │ ├── crypto_aes.c │ │ ├── crypto_aes_cbc.c │ │ ├── crypto_base16.c │ │ ├── crypto_base32.c │ │ ├── crypto_base36.c │ │ ├── crypto_base64.c │ │ ├── crypto_base85.c │ │ ├── crypto_base91.c │ │ ├── crypto_blowfish.c │ │ ├── crypto_cps2.c │ │ ├── crypto_des.c │ │ ├── crypto_punycode.c │ │ ├── crypto_rc2.c │ │ ├── crypto_rc4.c │ │ ├── crypto_rc6.c │ │ ├── crypto_rol.c │ │ ├── crypto_ror.c │ │ ├── crypto_rot.c │ │ ├── crypto_serpent.c │ │ ├── crypto_serpent_algo.c │ │ ├── crypto_serpent_algo.h │ │ ├── crypto_sm4.h │ │ ├── crypto_sm4_ecb.c │ │ └── crypto_xor.c ├── debug │ ├── README.md │ ├── bp.c │ ├── bp_io.c │ ├── bp_traptrace.c │ ├── bp_watch.c │ ├── ddesc.c │ ├── debug.c │ ├── desil.c │ ├── dmap.c │ ├── dreg.c │ ├── dsession.c │ ├── dsignal.c │ ├── meson.build │ ├── p │ │ ├── bfvm.c │ │ ├── bfvm.h │ │ ├── common_windows.c │ │ ├── common_windows.h │ │ ├── common_winkd.c │ │ ├── common_winkd.h │ │ ├── debug_bf.c │ │ ├── debug_bochs.c │ │ ├── debug_dmp.c │ │ ├── debug_gdb.c │ │ ├── debug_io.c │ │ ├── debug_null.c │ │ ├── debug_qnx.c │ │ ├── debug_windbg.c │ │ ├── debug_winkd.c │ │ └── native │ │ │ ├── android_arm.c │ │ │ ├── android_arm64.c │ │ │ ├── android_x86_64.c │ │ │ ├── apple_aarch64.c │ │ │ ├── apple_arm.c │ │ │ ├── apple_ppc.c │ │ │ ├── apple_x86_64.c │ │ │ ├── arm.c │ │ │ ├── bsd │ │ │ ├── bsd_debug.c │ │ │ ├── bsd_debug.h │ │ │ ├── kfbsd_debug.c │ │ │ ├── netbsd_debug.c │ │ │ └── openbsd_debug.c │ │ │ ├── bt.c │ │ │ ├── bt │ │ │ ├── fuzzy-all.c │ │ │ ├── generic-all.c │ │ │ ├── generic-x64.c │ │ │ ├── generic-x86.c │ │ │ ├── windows-all.c │ │ │ └── windows-x64.c │ │ │ ├── darwin.c │ │ │ ├── dragonfly.c │ │ │ ├── drx.c │ │ │ ├── kfbsd.c │ │ │ ├── linux │ │ │ ├── linux_coredump.c │ │ │ ├── linux_coredump.h │ │ │ ├── linux_debug.c │ │ │ ├── linux_debug.h │ │ │ └── linux_ptrace.h │ │ │ ├── linux_arm.c │ │ │ ├── linux_arm64.c │ │ │ ├── linux_mips32.c │ │ │ ├── linux_mips64.c │ │ │ ├── linux_other.c │ │ │ ├── linux_ppc.c │ │ │ ├── linux_x86_64.c │ │ │ ├── maps │ │ │ ├── darwin.c │ │ │ ├── windows_maps.c │ │ │ └── windows_maps.h │ │ │ ├── netbsd.c │ │ │ ├── openbsd.c │ │ │ ├── procfs.c │ │ │ ├── procfs.h │ │ │ ├── reg │ │ │ ├── darwin-arm.h │ │ │ ├── darwin-arm64.h │ │ │ ├── darwin-ppc.h │ │ │ ├── darwin-x64.h │ │ │ ├── darwin-x86.h │ │ │ ├── dragonflybsd-x64.h │ │ │ ├── kfbsd-arm64.h │ │ │ ├── kfbsd-x64.h │ │ │ ├── kfbsd-x86.h │ │ │ ├── linux-arm.h │ │ │ ├── linux-arm64.h │ │ │ ├── linux-loongarch64.h │ │ │ ├── linux-mips.h │ │ │ ├── linux-mips64.h │ │ │ ├── linux-ppc.h │ │ │ ├── linux-ppc64.h │ │ │ ├── linux-riscv64.h │ │ │ ├── linux-s390x.h │ │ │ ├── linux-x64-32.h │ │ │ ├── linux-x64.h │ │ │ ├── linux-x86.h │ │ │ ├── netbsd-x64.h │ │ │ ├── netbsd-x86.h │ │ │ ├── openbsd-x64.h │ │ │ ├── windows-arm.h │ │ │ ├── windows-arm64.h │ │ │ ├── windows-arm64_32.h │ │ │ ├── windows-x64.h │ │ │ └── windows-x86.h │ │ │ ├── unsupported.c │ │ │ ├── windows.c │ │ │ ├── windows │ │ │ ├── windows_debug.c │ │ │ ├── windows_debug.h │ │ │ ├── windows_message.c │ │ │ └── windows_message.h │ │ │ └── xnu │ │ │ ├── trap_arm.c │ │ │ ├── trap_x86.c │ │ │ ├── xnu_debug.c │ │ │ ├── xnu_debug.h │ │ │ ├── xnu_excthreads.c │ │ │ ├── xnu_threads.c │ │ │ └── xnu_threads.h │ ├── pid.c │ ├── plugin.c │ ├── serialize_bp.c │ ├── serialize_debug.c │ ├── snap.c │ └── trace.c ├── demangler │ ├── README.md │ ├── demangler.c │ └── meson.build ├── diff │ ├── README.md │ ├── bytes_diff.c │ ├── diff.c │ ├── distance.c │ ├── lines_diff.c │ ├── meson.build │ └── unified_diff.c ├── egg │ ├── README.md │ ├── egg.c │ ├── egg_Cfile.c │ ├── egg_lang.c │ ├── emit_arm.c │ ├── emit_trace.c │ ├── emit_x64.c │ ├── emit_x86.c │ ├── meson.build │ ├── p │ │ ├── egg_bind.c │ │ ├── egg_cb.c │ │ ├── egg_exec.c │ │ ├── egg_reverse.c │ │ ├── egg_shya.c │ │ └── egg_xor.c │ └── rlcc │ │ └── rlcc.c ├── flag │ ├── README.md │ ├── d │ │ ├── alloc │ │ ├── crypto │ │ ├── dylib │ │ ├── env │ │ ├── fs │ │ ├── meson.build │ │ ├── network │ │ ├── process │ │ ├── stdout │ │ ├── string │ │ ├── threads │ │ └── time │ ├── flag.c │ ├── meson.build │ ├── serialize_flag.c │ ├── tags.c │ └── zones.c ├── hash │ ├── README.md │ ├── algorithms │ │ ├── adler32 │ │ │ ├── adler32.c │ │ │ └── adler32.h │ │ ├── crc │ │ │ ├── crca.c │ │ │ └── crca.h │ │ ├── entropy │ │ │ ├── entropy.c │ │ │ └── entropy.h │ │ ├── fletcher │ │ │ ├── fletcher.c │ │ │ └── fletcher.h │ │ ├── md2 │ │ │ ├── md2.c │ │ │ └── md2.h │ │ ├── md4 │ │ │ ├── md4.c │ │ │ └── md4.h │ │ ├── md5 │ │ │ ├── md5.c │ │ │ └── md5.h │ │ ├── mod255 │ │ │ ├── mod255.c │ │ │ └── mod255.h │ │ ├── openssl_common.h │ │ ├── parity │ │ │ ├── parity.c │ │ │ └── parity.h │ │ ├── sha1 │ │ │ ├── sha1.c │ │ │ └── sha1.h │ │ ├── sha2 │ │ │ ├── sha2.c │ │ │ └── sha2.h │ │ ├── sm3 │ │ │ ├── sm3.c │ │ │ └── sm3.h │ │ ├── ssdeep │ │ │ ├── fnv_hash.h │ │ │ ├── roll_hash.c │ │ │ ├── ssdeep.c │ │ │ └── ssdeep.h │ │ ├── temperature │ │ │ ├── temperature.c │ │ │ └── temperature.h │ │ └── xor │ │ │ ├── xor.c │ │ │ └── xor.h │ ├── hash.c │ ├── meson.build │ ├── p │ │ ├── algo_adler32.c │ │ ├── algo_blake3.c │ │ ├── algo_crca.c │ │ ├── algo_entropy.c │ │ ├── algo_entropy_fractional.c │ │ ├── algo_fletcher.c │ │ ├── algo_md2.c │ │ ├── algo_md4.c │ │ ├── algo_md5.c │ │ ├── algo_mod255.c │ │ ├── algo_parity.c │ │ ├── algo_sha1.c │ │ ├── algo_sha256.c │ │ ├── algo_sha384.c │ │ ├── algo_sha512.c │ │ ├── algo_sm3.c │ │ ├── algo_ssdeep.c │ │ ├── algo_temperature.c │ │ ├── algo_xor16.c │ │ ├── algo_xor8.c │ │ └── algo_xxhash32.c │ └── randomart.c ├── il │ ├── README.md │ ├── definitions │ │ ├── bool.c │ │ ├── float.c │ │ ├── label.c │ │ ├── mem.c │ │ ├── value.c │ │ └── variable.c │ ├── il_events.c │ ├── il_export_json.c │ ├── il_export_string.c │ ├── il_graph.c │ ├── il_opcodes.c │ ├── il_reg.c │ ├── il_routines.c │ ├── il_validate.c │ ├── il_vm.c │ ├── il_vm_eval.c │ ├── meson.build │ ├── theory_bitv.c │ ├── theory_bool.c │ ├── theory_effect.c │ ├── theory_fbasic.c │ ├── theory_init.c │ └── theory_mem.c ├── include │ ├── meson.build │ ├── rz_agraph.h │ ├── rz_analysis.h │ ├── rz_arch.h │ ├── rz_asm.h │ ├── rz_basefind.h │ ├── rz_bin.h │ ├── rz_bin_dwarf.h │ ├── rz_bin_source_line.h │ ├── rz_bind.h │ ├── rz_bp.h │ ├── rz_build_version.h.in │ ├── rz_cmd.h │ ├── rz_cmp.h │ ├── rz_config.h │ ├── rz_cons.h │ ├── rz_constructor.h │ ├── rz_core.h │ ├── rz_crypto.h │ ├── rz_crypto │ │ ├── rz_aes.h │ │ ├── rz_des.h │ │ └── rz_sm4.h │ ├── rz_debug.h │ ├── rz_demangler.h │ ├── rz_diff.h │ ├── rz_drx.h │ ├── rz_egg.h │ ├── rz_endian.h │ ├── rz_flag.h │ ├── rz_flirt.h │ ├── rz_getopt.h │ ├── rz_hash.h │ ├── rz_heap_glibc.h │ ├── rz_heap_jemalloc.h │ ├── rz_il.h │ ├── rz_il │ │ ├── definitions │ │ │ ├── bool.h │ │ │ ├── definitions.h │ │ │ ├── float.h │ │ │ ├── label.h │ │ │ ├── mem.h │ │ │ ├── sort.h │ │ │ ├── value.h │ │ │ └── variable.h │ │ ├── rz_il_events.h │ │ ├── rz_il_opbuilder_begin.h │ │ ├── rz_il_opbuilder_end.h │ │ ├── rz_il_opcodes.h │ │ ├── rz_il_reg.h │ │ ├── rz_il_validate.h │ │ └── rz_il_vm.h │ ├── rz_io.h │ ├── rz_lang.h │ ├── rz_lib.h │ ├── rz_list.h │ ├── rz_magic.h │ ├── rz_main.h │ ├── rz_mark.h │ ├── rz_parse.h │ ├── rz_pdb.h │ ├── rz_platform.h │ ├── rz_project.h │ ├── rz_reg.h │ ├── rz_rop.h │ ├── rz_search.h │ ├── rz_sign.h │ ├── rz_skiplist.h │ ├── rz_skyline.h │ ├── rz_socket.h │ ├── rz_syscall.h │ ├── rz_th.h │ ├── rz_type.h │ ├── rz_types.h │ ├── rz_types_base.h │ ├── rz_types_overflow.h │ ├── rz_userconf.h.in │ ├── rz_util.h │ ├── rz_util │ │ ├── ht_inc.h │ │ ├── ht_pp.h │ │ ├── ht_pu.h │ │ ├── ht_sp.h │ │ ├── ht_ss.h │ │ ├── ht_su.h │ │ ├── ht_up.h │ │ ├── ht_uu.h │ │ ├── rz_alloc.h │ │ ├── rz_annotated_code.h │ │ ├── rz_ascii_table.h │ │ ├── rz_asn1.h │ │ ├── rz_assert.h │ │ ├── rz_axml.h │ │ ├── rz_base16.h │ │ ├── rz_base32.h │ │ ├── rz_base36.h │ │ ├── rz_base64.h │ │ ├── rz_base85.h │ │ ├── rz_base91.h │ │ ├── rz_big.h │ │ ├── rz_bits.h │ │ ├── rz_bitvector.h │ │ ├── rz_buf.h │ │ ├── rz_debruijn.h │ │ ├── rz_ebcdic.h │ │ ├── rz_event.h │ │ ├── rz_file.h │ │ ├── rz_float.h │ │ ├── rz_graph.h │ │ ├── rz_graph_drawable.h │ │ ├── rz_hex.h │ │ ├── rz_idpool.h │ │ ├── rz_intervaltree.h │ │ ├── rz_iterator.h │ │ ├── rz_itv.h │ │ ├── rz_json.h │ │ ├── rz_lang_byte_array.h │ │ ├── rz_log.h │ │ ├── rz_luhn.h │ │ ├── rz_mem.h │ │ ├── rz_name.h │ │ ├── rz_num.h │ │ ├── rz_panels.h │ │ ├── rz_path.h │ │ ├── rz_pj.h │ │ ├── rz_pkcs7.h │ │ ├── rz_print.h │ │ ├── rz_protobuf.h │ │ ├── rz_punycode.h │ │ ├── rz_range.h │ │ ├── rz_rbtree.h │ │ ├── rz_regex.h │ │ ├── rz_serialize.h │ │ ├── rz_set.h │ │ ├── rz_signal.h │ │ ├── rz_spaces.h │ │ ├── rz_stack.h │ │ ├── rz_str.h │ │ ├── rz_str_constpool.h │ │ ├── rz_str_search.h │ │ ├── rz_str_util.h │ │ ├── rz_strbuf.h │ │ ├── rz_strpool.h │ │ ├── rz_structured_data.h │ │ ├── rz_subprocess.h │ │ ├── rz_sys.h │ │ ├── rz_table.h │ │ ├── rz_th_ht.h │ │ ├── rz_time.h │ │ ├── rz_tree.h │ │ ├── rz_uleb128.h │ │ ├── rz_unicode.h │ │ ├── rz_utf16.h │ │ ├── rz_utf32.h │ │ ├── rz_utf8.h │ │ ├── rz_version.h │ │ └── rz_x509.h │ ├── rz_vector.h │ ├── rz_windows.h │ ├── rz_windows_heap.h │ └── sflib │ │ ├── common │ │ ├── sfsocketcall.h │ │ └── sftypes.h │ │ ├── darwin-arm-64 │ │ ├── ios-syscalls.py │ │ ├── ios-syscalls.txt │ │ ├── sflib.h │ │ ├── sfsyscall.h │ │ └── sfsysnr.h │ │ ├── darwin-x86-32 │ │ ├── sflib.h │ │ ├── sfsyscall.h │ │ └── sfsysnr.h │ │ ├── darwin-x86-64 │ │ ├── sflib.h │ │ ├── sfsyscall.h │ │ └── sfsysnr.h │ │ ├── linux-arm-32 │ │ ├── sflib.h │ │ ├── sfsyscall.h │ │ └── sfsysnr.h │ │ ├── linux-arm-64 │ │ ├── sflib.h │ │ ├── sfsyscall.h │ │ └── sfsysnr.h │ │ ├── linux-x86-32 │ │ ├── sflib.h │ │ ├── sfsyscall.h │ │ └── sfsysnr.h │ │ └── linux-x86-64 │ │ ├── sflib.h │ │ ├── sfsyscall.h │ │ └── sfsysnr.h ├── io │ ├── README.md │ ├── io.c │ ├── io_cache.c │ ├── io_desc.c │ ├── io_fd.c │ ├── io_map.c │ ├── io_memory.c │ ├── io_memory.h │ ├── io_plugin.c │ ├── io_private.h │ ├── ioutils.c │ ├── meson.build │ ├── p │ │ ├── io_ar.c │ │ ├── io_bfdbg.c │ │ ├── io_bochs.c │ │ ├── io_debug.c │ │ ├── io_default.c │ │ ├── io_dmp.c │ │ ├── io_fd.c │ │ ├── io_gdb.c │ │ ├── io_gzip.c │ │ ├── io_http.c │ │ ├── io_ihex.c │ │ ├── io_mach.c │ │ ├── io_malloc.c │ │ ├── io_null.c │ │ ├── io_procpid.c │ │ ├── io_ptrace.c │ │ ├── io_qnx.c │ │ ├── io_rzpipe.c │ │ ├── io_rzweb.c │ │ ├── io_self.c │ │ ├── io_shm.c │ │ ├── io_sparse.c │ │ ├── io_srec.c │ │ ├── io_tcp.c │ │ ├── io_titxt.c │ │ ├── io_w32.c │ │ ├── io_w32dbg.c │ │ ├── io_windbg.c │ │ ├── io_winedbg.c │ │ ├── io_winkd.c │ │ └── io_zip.c │ ├── p_cache.c │ └── serialize_io.c ├── lang │ ├── README.md │ ├── lang.c │ ├── meson.build │ └── p │ │ ├── c.c │ │ ├── cpipe.c │ │ ├── lib.c │ │ ├── pipe.c │ │ ├── pipe_helper.c │ │ └── pipe_helper.h ├── magic │ ├── README.md │ ├── d │ │ ├── default │ │ │ ├── apple │ │ │ ├── archive │ │ │ ├── cafebabe │ │ │ ├── code │ │ │ ├── compressed │ │ │ ├── database │ │ │ ├── elf │ │ │ ├── filesystems │ │ │ ├── firmware │ │ │ ├── flash │ │ │ ├── freebsd │ │ │ ├── gimp │ │ │ ├── gpg │ │ │ ├── html │ │ │ ├── images │ │ │ ├── java │ │ │ ├── jpeg │ │ │ ├── linux │ │ │ ├── mach │ │ │ ├── mail.news │ │ │ ├── microsoft │ │ │ ├── mime │ │ │ ├── netbsd │ │ │ ├── network │ │ │ ├── openbsd │ │ │ ├── pdf │ │ │ ├── perl │ │ │ ├── python │ │ │ ├── riff │ │ │ ├── sniffer │ │ │ ├── sql │ │ │ ├── ssh │ │ │ ├── uuencode │ │ │ ├── video │ │ │ ├── vim │ │ │ ├── vorbis │ │ │ └── zfs │ │ └── meson.build │ ├── magic-common.c │ ├── magic-load.c │ ├── magic-test.c │ ├── magic.c │ ├── magic.h │ └── meson.build ├── main │ ├── README.md │ ├── main.c │ ├── meson.build │ ├── rizin.c │ ├── rz-asm.c │ ├── rz-ax.c │ ├── rz-bin.c │ ├── rz-diff.c │ ├── rz-find.c │ ├── rz-gg.c │ ├── rz-hash.c │ ├── rz-run.c │ └── rz-sign.c ├── mark │ ├── mark.c │ ├── meson.build │ └── serialize_mark.c ├── meson.build ├── plugins.h.in ├── reg │ ├── README.md │ ├── arena.c │ ├── d │ │ ├── avr-ATmega8-8.sdb.txt │ │ └── meson.build │ ├── meson.build │ ├── profile.c │ ├── rcond.c │ ├── reg.c │ └── rvalue.c ├── search │ ├── README.md │ ├── bytepat.c │ ├── bytes_search.c │ ├── collection.c │ ├── cryptographic_search.c │ ├── cryptographic_search_aes.c │ ├── cryptographic_search_pki.c │ ├── cryptographic_search_sm4.c │ ├── cryptographic_search_x509.c │ ├── entropy_search.c │ ├── hash_search.c │ ├── keyword.c │ ├── magic_search.c │ ├── meson.build │ ├── options.c │ ├── regexp.c │ ├── search.c │ ├── search_internal.h │ ├── string_search.c │ └── value_search.c ├── sign │ ├── README.md │ ├── create.c │ ├── flirt.c │ ├── meson.build │ ├── pat.c │ ├── sigdb.c │ └── sign.c ├── socket │ ├── README.md │ ├── meson.build │ ├── run.c │ ├── rzpipe.c │ ├── socket.c │ ├── socket_http.c │ ├── socket_http_server.c │ ├── socket_proc.c │ └── socket_serial.c ├── syscall │ ├── README.md │ ├── d │ │ ├── darwin-arm-32.sdb.txt │ │ ├── darwin-arm-64.sdb.txt │ │ ├── darwin-x86-32.sdb.txt │ │ ├── darwin-x86-64.sdb.txt │ │ ├── dos-x86-16.sdb.txt │ │ ├── freebsd-x86-32.sdb.txt │ │ ├── gen.sh │ │ ├── ios-arm-32.sdb.txt │ │ ├── ios-arm-64.sdb.txt │ │ ├── ios-x86-32.sdb.txt │ │ ├── linux-arm-32.sdb.txt │ │ ├── linux-arm-64.sdb.txt │ │ ├── linux-mips-32.sdb.txt │ │ ├── linux-sparc-32.sdb.txt │ │ ├── linux-x86-32.sdb.txt │ │ ├── linux-x86-64.sdb.txt │ │ ├── meson.build │ │ ├── netbsd-x86-32.sdb.txt │ │ ├── openbsd-x86-32.sdb.txt │ │ ├── openbsd-x86-64.sdb.txt │ │ ├── par.sh │ │ ├── s110-arm-16.sdb.txt │ │ ├── windows-x86-32.sdb.txt │ │ └── windows-x86-64.sdb.txt │ ├── d2 │ │ ├── gen.sh │ │ └── x86-16.txt │ ├── meson.build │ └── syscall.c ├── type │ ├── README.md │ ├── base.c │ ├── format.c │ ├── function.c │ ├── helpers.c │ ├── meson.build │ ├── parser │ │ ├── c_cpp_parser.c │ │ ├── types_parser.c │ │ ├── types_parser.h │ │ └── types_storage.c │ ├── path.c │ ├── serialize_functions.c │ ├── serialize_types.c │ ├── type.c │ └── typeclass.c └── util │ ├── README.md │ ├── alloc.c │ ├── annotated_code.c │ ├── ascii_table.c │ ├── asn1.c │ ├── asn1_oids.h │ ├── assert.c │ ├── astr.c │ ├── axml.c │ ├── axml_resources.h │ ├── base16.c │ ├── base32.c │ ├── base36.c │ ├── base64.c │ ├── base85.c │ ├── base91.c │ ├── big-gmp.c │ ├── big-ssl.c │ ├── big.c │ ├── bits.c │ ├── bitvector.c │ ├── buf.c │ ├── buf_bytes.c │ ├── buf_file.c │ ├── buf_io.c │ ├── buf_io_fd.c │ ├── buf_mmap.c │ ├── buf_ref.c │ ├── buf_sparse.c │ ├── calc.c │ ├── chmod.c │ ├── compression.c │ ├── debruijn.c │ ├── ebcdic.c │ ├── event.c │ ├── file.c │ ├── float │ ├── float.c │ └── float_internal.c │ ├── getopt.c │ ├── graph.c │ ├── graph_drawable.c │ ├── hex.c │ ├── ht │ ├── ht_inc.c │ ├── ht_pp.c │ ├── ht_pu.c │ ├── ht_sp.c │ ├── ht_ss.c │ ├── ht_su.c │ ├── ht_up.c │ └── ht_uu.c │ ├── idpool.c │ ├── intervaltree.c │ ├── iterator.c │ ├── itv.c │ ├── json_indent.c │ ├── json_parser.c │ ├── lang_byte_array.c │ ├── lib.c │ ├── list.c │ ├── log.c │ ├── luhn.c │ ├── mem.c │ ├── meson.build │ ├── name.c │ ├── path.c │ ├── pj.c │ ├── pkcs7.c │ ├── print.c │ ├── protobuf.c │ ├── punycode.c │ ├── range.c │ ├── rbtree.c │ ├── regex.c │ ├── sdb │ ├── README.md │ └── src │ │ ├── array.c │ │ ├── base64.c │ │ ├── buffer.c │ │ ├── buffer.h │ │ ├── cdb.c │ │ ├── cdb.h │ │ ├── cdb_make.c │ │ ├── cdb_make.h │ │ ├── diff.c │ │ ├── disk.c │ │ ├── fmt.c │ │ ├── lock.c │ │ ├── main.c │ │ ├── match.c │ │ ├── meson.build │ │ ├── ns.c │ │ ├── num.c │ │ ├── query.c │ │ ├── sdb.c │ │ ├── sdb.h │ │ ├── sdb_private.h │ │ ├── sdbht.c │ │ ├── sdbht.h │ │ ├── text.c │ │ └── util.c │ ├── serialize_spaces.c │ ├── set.c │ ├── signal.c │ ├── skiplist.c │ ├── skyline.c │ ├── spaces.c │ ├── stack.c │ ├── str.c │ ├── str_constpool.c │ ├── str_search.c │ ├── str_trim.c │ ├── strbuf.c │ ├── strpool.c │ ├── structured_data.c │ ├── structured_data_json.c │ ├── structured_data_yaml.c │ ├── subprocess.c │ ├── sys.c │ ├── syscmd.c │ ├── table.c │ ├── thread.c │ ├── thread.h │ ├── thread_cond.c │ ├── thread_hash_table.c │ ├── thread_iterators.c │ ├── thread_lock.c │ ├── thread_pool.c │ ├── thread_queue.c │ ├── thread_sem.c │ ├── thread_types.c │ ├── time.c │ ├── tree.c │ ├── uleb128.c │ ├── unicode.c │ ├── unum.c │ ├── utf16.c │ ├── utf32.c │ ├── utf8.c │ ├── vector.c │ ├── version.c │ ├── w32-sys.c │ ├── x509.c │ └── x509.h ├── meson.build ├── meson_options.txt ├── snapcraft.yaml ├── subprojects ├── blake3.wrap ├── capstone-next.wrap ├── capstone-v4.wrap ├── capstone-v5.wrap ├── capstone-v6.wrap ├── libdemangle.wrap ├── liblzma.wrap ├── libmspack.wrap ├── libzip.wrap ├── lz4.wrap ├── mpc │ ├── LICENSE.md │ ├── meson.build │ ├── mpc.c │ └── mpc.h ├── nettle │ ├── .clang-format │ ├── aes-decrypt-internal.c │ ├── aes-decrypt-table.c │ ├── aes-decrypt.c │ ├── aes-encrypt-internal.c │ ├── aes-encrypt-table.c │ ├── aes-encrypt.c │ ├── aes-internal.h │ ├── aes-invert-internal.c │ ├── aes-set-decrypt-key.c │ ├── aes-set-encrypt-key.c │ ├── aes-set-key-internal.c │ ├── aes.h │ ├── aes128-decrypt.c │ ├── aes128-encrypt.c │ ├── aes128-set-decrypt-key.c │ ├── aes128-set-encrypt-key.c │ ├── aes192-decrypt.c │ ├── aes192-encrypt.c │ ├── aes192-set-decrypt-key.c │ ├── aes192-set-encrypt-key.c │ ├── aes256-decrypt.c │ ├── aes256-encrypt.c │ ├── aes256-set-decrypt-key.c │ ├── aes256-set-encrypt-key.c │ ├── aesdata.c │ ├── macros.h │ ├── meson.build │ └── nettle-types.h ├── packagefiles │ ├── blake3 │ │ ├── meson.build │ │ └── unix_syntax_check.S │ ├── capstone-4.0.2 │ │ └── meson.build │ ├── capstone-5.0.1 │ │ └── meson.build │ ├── capstone-6.0.0-alpha5 │ │ └── meson.build │ ├── capstone-next │ │ └── meson.build │ ├── libmspack │ │ ├── config.h.inc │ │ ├── meson.build │ │ └── meson_options.txt │ ├── libzip-1.11.3 │ │ ├── cmake-config.h.in │ │ ├── cmake-zipconf.h.in │ │ ├── create_zip_err_str.py │ │ ├── meson.build │ │ └── meson_options.txt │ ├── lz4-1.10.0 │ │ └── meson.build │ ├── pcre2 │ │ └── meson.build │ ├── pcre2_cross_native │ │ └── meson.build │ ├── rizin-grammar-c │ │ └── meson.build │ ├── tree-sitter-0.25.3 │ │ ├── lib │ │ │ ├── include │ │ │ │ └── tree_sitter │ │ │ │ │ └── api.h │ │ │ └── src │ │ │ │ └── parser.h │ │ ├── meson.build │ │ └── src │ │ │ └── tree_sitter │ │ │ └── parser.h │ ├── xz-5.8.1 │ │ ├── config.h.meson │ │ ├── meson.build │ │ ├── meson_options.txt │ │ └── src │ │ │ ├── liblzma │ │ │ └── meson.build │ │ │ └── meson.build │ ├── zlib-1.3.1 │ │ └── meson.build │ ├── zstd-1.5.7 │ │ ├── lib │ │ │ └── meson.build │ │ ├── meson.build │ │ └── meson_options.txt │ └── zydis │ │ ├── amalgamated-dist │ │ ├── Zydis.c │ │ └── Zydis.h │ │ └── meson.build ├── pcre2.wrap ├── pcre2_cross_native.wrap ├── ptrace-wrap │ ├── README.md │ ├── include │ │ └── ptrace_wrap.h │ ├── meson.build │ ├── meson_options.txt │ └── src │ │ └── ptrace_wrap.c ├── rizin-grammar-c.wrap ├── rizin-shell-parser │ ├── .gitignore │ ├── Cargo.toml │ ├── README.md │ ├── binding.gyp │ ├── bindings │ │ ├── node │ │ │ ├── binding.cc │ │ │ └── index.js │ │ └── rust │ │ │ ├── build.rs │ │ │ └── lib.rs │ ├── corpus │ │ ├── cmd_specifier.txt │ │ ├── cmd_substitution.txt │ │ ├── comments.txt │ │ ├── escape_args.txt │ │ ├── grep_commands.txt │ │ ├── iter_commands.txt │ │ ├── pipes.txt │ │ ├── quoted_args.txt │ │ ├── redirects.txt │ │ ├── repeated_commands.txt │ │ ├── search_commands.txt │ │ ├── simple_commands.txt │ │ ├── special_commands.txt │ │ └── temporary_changes.txt │ ├── grammar.js │ ├── meson.build │ ├── meson_tree_sitter_generate.py │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── grammar.json │ │ ├── meson.build │ │ ├── node-types.json │ │ ├── parser.c │ │ ├── scanner.c │ │ └── tree_sitter │ │ │ ├── alloc.h │ │ │ ├── array.h │ │ │ └── parser.h │ └── tree-sitter.json ├── rzar │ ├── ar.c │ ├── ar.h │ └── meson.build ├── rzgdb │ ├── include │ │ ├── arch.h │ │ ├── gdbclient │ │ │ ├── commands.h │ │ │ ├── core.h │ │ │ ├── responses.h │ │ │ └── xml.h │ │ ├── gdbr_common.h │ │ ├── gdbserver │ │ │ └── core.h │ │ ├── libgdbr.h │ │ ├── packet.h │ │ ├── reg │ │ │ ├── arm32.h │ │ │ ├── arm64.h │ │ │ ├── avr.h │ │ │ ├── lm32.h │ │ │ ├── mips.h │ │ │ ├── riscv64.h │ │ │ ├── sh.h │ │ │ ├── tricore.h │ │ │ ├── v850.h │ │ │ ├── x86_32.h │ │ │ └── x86_64.h │ │ └── utils.h │ ├── meson.build │ └── src │ │ ├── arch.c │ │ ├── common.c │ │ ├── gdbclient │ │ ├── core.c │ │ ├── responses.c │ │ └── xml.c │ │ ├── gdbserver │ │ └── core.c │ │ ├── libgdbr.c │ │ ├── packet.c │ │ └── utils.c ├── rzheap │ ├── meson.build │ ├── rz_jemalloc │ │ ├── internal │ │ │ ├── arena.h │ │ │ ├── assert.h │ │ │ ├── atomic.h │ │ │ ├── base.h │ │ │ ├── bitmap.h │ │ │ ├── chunk.h │ │ │ ├── chunk_dss.h │ │ │ ├── chunk_mmap.h │ │ │ ├── ckh.h │ │ │ ├── ctl.h │ │ │ ├── extent.h │ │ │ ├── hash.h │ │ │ ├── huge.h │ │ │ ├── jemalloc_internal.h │ │ │ ├── jemalloc_internal_decls.h │ │ │ ├── jemalloc_internal_defs.h │ │ │ ├── jemalloc_internal_macros.h │ │ │ ├── mb.h │ │ │ ├── msvc_compat │ │ │ │ └── windows_extra.h │ │ │ ├── mutex.h │ │ │ ├── nstime.h │ │ │ ├── pages.h │ │ │ ├── ph.h │ │ │ ├── private_namespace.h │ │ │ ├── private_unnamespace.h │ │ │ ├── prng.h │ │ │ ├── prof.h │ │ │ ├── public_namespace.h │ │ │ ├── public_unnamespace.h │ │ │ ├── ql.h │ │ │ ├── qr.h │ │ │ ├── quarantine.h │ │ │ ├── rb.h │ │ │ ├── rtree.h │ │ │ ├── size_classes.h │ │ │ ├── smoothstep.h │ │ │ ├── spin.h │ │ │ ├── stats.h │ │ │ ├── tcache.h │ │ │ ├── ticker.h │ │ │ ├── tsd.h │ │ │ ├── util.h │ │ │ ├── valgrind.h │ │ │ └── witness.h │ │ ├── jemalloc.h │ │ ├── jemalloc_defs.h │ │ ├── jemalloc_macros.h │ │ ├── jemalloc_macros.h.in │ │ ├── jemalloc_mangle.h │ │ ├── jemalloc_mangle_jet.h │ │ ├── jemalloc_protos.h │ │ ├── jemalloc_protos.h.in │ │ ├── jemalloc_protos_jet.h │ │ ├── jemalloc_rename.h │ │ └── jemalloc_typedefs.h │ └── rz_windows │ │ └── windows_heap.h ├── rzqnx │ ├── include │ │ ├── arch.h │ │ ├── core.h │ │ ├── dsmsgs.h │ │ ├── gdb_signals.h │ │ ├── libqnxr.h │ │ ├── packet.h │ │ ├── sigutil.h │ │ └── utils.h │ ├── meson.build │ └── src │ │ ├── core.c │ │ ├── packet.c │ │ ├── sigutil.c │ │ └── utils.c ├── rzspp │ ├── LICENSE │ ├── README.md │ ├── bin │ │ ├── main.c │ │ └── meson.build │ ├── config.h.in │ ├── meson.build │ ├── p │ │ ├── cpp.h │ │ ├── sh.h │ │ └── spp.h │ ├── rz_api.c │ ├── rz_api.h │ ├── spp.1 │ ├── spp.c │ └── spp.h ├── rzw32dbg_wrap │ ├── include │ │ └── w32dbg_wrap.h │ ├── meson.build │ └── src │ │ └── w32dbg_wrap.c ├── rzwinkd │ ├── iob_net.c │ ├── iob_pipe.c │ ├── kd.c │ ├── kd.h │ ├── meson.build │ ├── profiles.h │ ├── transport.c │ ├── transport.h │ ├── winkd.c │ └── winkd.h ├── sigdb.wrap ├── softfloat.wrap ├── softfloat_cross_native.wrap ├── tree-sitter.wrap ├── xxhash │ ├── LICENSE │ ├── README.md │ ├── meson.build │ ├── xxhash.c │ └── xxhash.h ├── yxml │ ├── .gitignore │ ├── COPYING │ ├── meson.build │ ├── yxml.c │ └── yxml.h ├── zlib.wrap ├── zstd.wrap └── zydis.wrap ├── sys ├── check_meson_subproject.py ├── clang-format.py ├── create_tags_rz.py ├── cross-arm64-windows.txt ├── lsan_check.py ├── macos-cert.sh ├── meson_cmake_prefix_dir.py ├── meson_dist_script.py ├── meson_git_wrapper.py ├── rzshell_which.py ├── syscall_preprocessing.py └── version.py ├── test ├── .gitignore ├── README.md ├── bench │ ├── bench_bitvector.c │ ├── bench_utils.c │ ├── bench_utils.h │ └── meson.build ├── db │ ├── abi │ │ ├── compilers │ │ │ ├── clang │ │ │ ├── clang_64 │ │ │ ├── gcc │ │ │ ├── gcc_64 │ │ │ ├── pelles_c │ │ │ └── visual_studio │ │ ├── languages │ │ │ ├── ada │ │ │ ├── assembly │ │ │ ├── freepascal │ │ │ ├── go │ │ │ ├── nim │ │ │ └── rust │ │ └── platforms │ │ │ ├── dyn_symbols │ │ │ ├── entries │ │ │ ├── main_signatures │ │ │ ├── platform_detect │ │ │ ├── reg_profile │ │ │ └── sections │ ├── analysis │ │ ├── 6502 │ │ ├── 8051 │ │ ├── amd29k │ │ ├── arc │ │ ├── arm │ │ ├── arm64 │ │ ├── avr │ │ ├── chip8 │ │ ├── classes │ │ ├── cris │ │ ├── dalvik │ │ ├── gb │ │ ├── golang │ │ ├── h8300 │ │ ├── h8500 │ │ ├── hexagon │ │ ├── i4004 │ │ ├── java │ │ ├── loongarch │ │ ├── luac │ │ ├── m680x │ │ ├── m68k │ │ ├── mach0 │ │ ├── mcore │ │ ├── mips │ │ ├── msp430 │ │ ├── noreturn │ │ ├── null │ │ ├── path │ │ ├── pic │ │ ├── ppc │ │ ├── riscv │ │ ├── rl78 │ │ ├── rx │ │ ├── sh │ │ ├── snes │ │ ├── sparc │ │ ├── spc700 │ │ ├── sysz │ │ ├── thumb │ │ ├── tms320 │ │ ├── tms320.c64x_32 │ │ ├── tricore │ │ ├── v810 │ │ ├── v850 │ │ ├── vars │ │ ├── x86_16 │ │ ├── x86_32 │ │ ├── x86_64 │ │ ├── xap │ │ ├── xtensa │ │ └── z80 │ ├── archos │ │ ├── darwin-arm64 │ │ │ ├── dbg │ │ │ └── dbg_io │ │ ├── darwin-x64 │ │ │ ├── cmd_i │ │ │ └── dbg │ │ ├── freebsd-x64 │ │ │ └── dbg │ │ ├── linux-any │ │ │ └── cmd_i │ │ ├── linux-arm64 │ │ │ └── dbg │ │ ├── linux-ppc │ │ │ ├── dbg_mem │ │ │ ├── dbg_reg │ │ │ ├── dbg_sig │ │ │ └── dbg_step │ │ ├── linux-x64 │ │ │ ├── .dbg_fork │ │ │ ├── .dbg_fork2 │ │ │ ├── asm_x64_as │ │ │ ├── bug_6678 │ │ │ ├── cmd_k │ │ │ ├── cmd_list │ │ │ ├── dbg │ │ │ ├── dbg_aaa_dcu │ │ │ ├── dbg_afvd │ │ │ ├── dbg_aslr │ │ │ ├── dbg_bps │ │ │ ├── dbg_bps2 │ │ │ ├── dbg_cmdbps │ │ │ ├── dbg_cont │ │ │ ├── dbg_cont_back │ │ │ ├── dbg_de │ │ │ ├── dbg_dl │ │ │ ├── dbg_dmh │ │ │ ├── dbg_dmhd │ │ │ ├── dbg_dmht │ │ │ ├── dbg_dmi │ │ │ ├── dbg_dr │ │ │ ├── dbg_dt │ │ │ ├── dbg_dts │ │ │ ├── dbg_fds │ │ │ ├── dbg_gdbserver │ │ │ ├── dbg_gdbserver_rebase │ │ │ ├── dbg_io │ │ │ ├── dbg_maps │ │ │ ├── dbg_oo │ │ │ ├── dbg_px0 │ │ │ ├── dbg_search_x │ │ │ ├── dbg_seginfo │ │ │ ├── dbg_step │ │ │ ├── dbg_step_back │ │ │ ├── dbg_trace │ │ │ ├── dbg_wps │ │ │ ├── debuginfod │ │ │ └── shell_uname │ │ ├── netbsd-x64 │ │ │ └── dbg │ │ ├── not-windows-any │ │ │ ├── cmd_interpreter │ │ │ ├── cmd_pt │ │ │ └── rz_run │ │ ├── openbsd-x64 │ │ │ └── dbg │ │ └── windows-x64 │ │ │ ├── dbg_32_on_64 │ │ │ ├── dbg_dts │ │ │ ├── dbg_oo │ │ │ └── dbg_rebase │ ├── asm │ │ ├── 6502 │ │ ├── 8051 │ │ ├── amd29k_29000_32 │ │ ├── arc_16 │ │ ├── arc_32 │ │ ├── arm_16 │ │ ├── arm_32 │ │ ├── arm_64 │ │ ├── arm_cortexm_16 │ │ ├── avr │ │ ├── bf │ │ ├── chip8 │ │ ├── cil │ │ ├── cr16 │ │ ├── dalvik │ │ ├── ebc │ │ ├── gb │ │ ├── h8300 │ │ ├── h8300_h8300h_16 │ │ ├── h8500 │ │ ├── hexagon │ │ ├── i4004 │ │ ├── java │ │ ├── lh5801 │ │ ├── luac_5.3_16 │ │ ├── luac_5.4_16 │ │ ├── mips_mips2_32 │ │ ├── mips_mips32r6_32 │ │ ├── mips_mips3_32 │ │ ├── mips_mips5_32 │ │ ├── mips_mips64_64 │ │ ├── mips_mips64r2_64 │ │ ├── mips_mips64r6_64 │ │ ├── msp430 │ │ ├── or1k │ │ ├── pic_baseline_8 │ │ ├── pic_highend_8 │ │ ├── pic_midrange_8 │ │ ├── ppc_64 │ │ ├── ppc_qpx_64 │ │ ├── riscv_32 │ │ ├── rl78 │ │ ├── rx │ │ ├── sh │ │ ├── snes_16 │ │ ├── sparc_v8_32 │ │ ├── sparc_v9_64 │ │ ├── spc700 │ │ ├── tms320_c55x+_32 │ │ ├── tms320_c55x_32 │ │ ├── tricore │ │ ├── v810 │ │ ├── v850 │ │ ├── wasm │ │ ├── x86_16 │ │ ├── x86_32 │ │ ├── x86_64 │ │ ├── xtensa │ │ └── z80 │ ├── cmd │ │ ├── 0000 │ │ ├── archs │ │ ├── backtickgrep │ │ ├── basic │ │ ├── bitmask │ │ ├── bug_3788 │ │ ├── bug_backtick │ │ ├── bug_duplicate_vtables │ │ ├── cmd_0 │ │ ├── cmd_Ch │ │ ├── cmd_a8 │ │ ├── cmd_aL │ │ ├── cmd_a_capital_o │ │ ├── cmd_aae │ │ ├── cmd_ab │ │ ├── cmd_ac │ │ ├── cmd_acll │ │ ├── cmd_ad │ │ ├── cmd_aea │ │ ├── cmd_aecb │ │ ├── cmd_aek │ │ ├── cmd_aes │ │ ├── cmd_aesb │ │ ├── cmd_aex │ │ ├── cmd_aez │ │ ├── cmd_af │ │ ├── cmd_afb │ │ ├── cmd_afcl │ │ ├── cmd_afl │ │ ├── cmd_afn │ │ ├── cmd_afv │ │ ├── cmd_afvd │ │ ├── cmd_ag │ │ ├── cmd_agC │ │ ├── cmd_agf │ │ ├── cmd_ah │ │ ├── cmd_ahi │ │ ├── cmd_aii │ │ ├── cmd_alias │ │ ├── cmd_an │ │ ├── cmd_ao │ │ ├── cmd_ar │ │ ├── cmd_ara │ │ ├── cmd_arp │ │ ├── cmd_as │ │ ├── cmd_asn1 │ │ ├── cmd_att │ │ ├── cmd_av │ │ ├── cmd_avD │ │ ├── cmd_avg │ │ ├── cmd_avr │ │ ├── cmd_avx │ │ ├── cmd_ax │ │ ├── cmd_b │ │ ├── cmd_basefind │ │ ├── cmd_c │ │ ├── cmd_cond │ │ ├── cmd_coverage │ │ ├── cmd_dh │ │ ├── cmd_disassembly │ │ ├── cmd_dmh │ │ ├── cmd_dr │ │ ├── cmd_dr_equal │ │ ├── cmd_ds │ │ ├── cmd_ec │ │ ├── cmd_egg │ │ ├── cmd_env │ │ ├── cmd_eval │ │ ├── cmd_extend │ │ ├── cmd_flags │ │ ├── cmd_flags_stress │ │ ├── cmd_foreach │ │ ├── cmd_fuzzed │ │ ├── cmd_graph │ │ ├── cmd_hash │ │ ├── cmd_help │ │ ├── cmd_http_post │ │ ├── cmd_i │ │ ├── cmd_idp │ │ ├── cmd_interactive_modes │ │ ├── cmd_interpret │ │ ├── cmd_json │ │ ├── cmd_k │ │ ├── cmd_list │ │ ├── cmd_long_string │ │ ├── cmd_macros │ │ ├── cmd_mark │ │ ├── cmd_math │ │ ├── cmd_meta │ │ ├── cmd_open │ │ ├── cmd_ownshell │ │ ├── cmd_p- │ │ ├── cmd_p6 │ │ ├── cmd_pB │ │ ├── cmd_pFb │ │ ├── cmd_p_capital_c │ │ ├── cmd_pa │ │ ├── cmd_pad │ │ ├── cmd_pae │ │ ├── cmd_pc │ │ ├── cmd_pd │ │ ├── cmd_pd2 │ │ ├── cmd_pd_bugs │ │ ├── cmd_pd_bytes │ │ ├── cmd_pde │ │ ├── cmd_pdj │ │ ├── cmd_pdr │ │ ├── cmd_pf │ │ ├── cmd_pf2 │ │ ├── cmd_pf_elf │ │ ├── cmd_pf_write │ │ ├── cmd_pfd │ │ ├── cmd_ph │ │ ├── cmd_pi │ │ ├── cmd_pif │ │ ├── cmd_pipe │ │ ├── cmd_pix │ │ ├── cmd_plf │ │ ├── cmd_pointer │ │ ├── cmd_print │ │ ├── cmd_print_misc │ │ ├── cmd_ps │ │ ├── cmd_psj │ │ ├── cmd_pt │ │ ├── cmd_pv │ │ ├── cmd_px │ │ ├── cmd_pxd │ │ ├── cmd_pxw │ │ ├── cmd_question │ │ ├── cmd_r │ │ ├── cmd_repeats │ │ ├── cmd_rop │ │ ├── cmd_search │ │ ├── cmd_search_F │ │ ├── cmd_search_a │ │ ├── cmd_search_crypto │ │ ├── cmd_search_g │ │ ├── cmd_search_hash │ │ ├── cmd_search_hit │ │ ├── cmd_search_in │ │ ├── cmd_search_m │ │ ├── cmd_search_v │ │ ├── cmd_search_x │ │ ├── cmd_search_z │ │ ├── cmd_seek │ │ ├── cmd_shift │ │ ├── cmd_signature │ │ ├── cmd_string │ │ ├── cmd_system │ │ ├── cmd_task │ │ ├── cmd_tc │ │ ├── cmd_tcc │ │ ├── cmd_tmpbuf │ │ ├── cmd_to │ │ ├── cmd_visual │ │ ├── cmd_w │ │ ├── cmd_wD │ │ ├── cmd_wfs │ │ ├── cmd_wox │ │ ├── cmd_yank │ │ ├── cmds │ │ ├── comments │ │ ├── data │ │ ├── describe │ │ ├── display_flag │ │ ├── dwarf │ │ ├── echo │ │ ├── egg │ │ ├── elf │ │ ├── err │ │ ├── feat_arithmetic │ │ ├── feat_arroba │ │ ├── feat_astabs │ │ ├── feat_base64 │ │ ├── feat_cmdsubst │ │ ├── feat_foreach │ │ ├── feat_graphdiff │ │ ├── feat_grep │ │ ├── feat_input │ │ ├── feat_quote │ │ ├── feat_redirect │ │ ├── feat_segoff │ │ ├── feat_variables │ │ ├── feat_yank │ │ ├── file_malloc │ │ ├── hash │ │ ├── hex │ │ ├── lea_intel │ │ ├── m68k │ │ ├── malloc │ │ ├── manyundo │ │ ├── md5sha1 │ │ ├── metadata │ │ ├── midbb │ │ ├── midflags │ │ ├── mm_search_issue │ │ ├── noreturn │ │ ├── print │ │ ├── print_bug │ │ ├── project │ │ ├── regexp │ │ ├── section-mapping │ │ ├── seekbug │ │ ├── shell │ │ ├── sidbug │ │ ├── simple-elf │ │ ├── singleline │ │ ├── spaces │ │ ├── structures │ │ ├── sugar │ │ ├── tables │ │ ├── types │ │ ├── undoredo │ │ ├── unified │ │ ├── utf32 │ │ ├── va │ │ ├── warnings │ │ └── write │ ├── esil │ │ ├── 6502 │ │ ├── 8051 │ │ ├── apple │ │ ├── arm_16 │ │ ├── arm_32 │ │ ├── arm_64 │ │ ├── avr │ │ ├── cmp │ │ ├── cond │ │ ├── esil │ │ ├── flag_tests │ │ ├── intreg │ │ ├── math │ │ ├── mips_32 │ │ ├── ppc_32 │ │ ├── riscv_32 │ │ ├── riscv_64 │ │ ├── sh │ │ ├── x86_16 │ │ ├── x86_32 │ │ ├── x86_64 │ │ └── xtensa_32 │ ├── extras │ │ ├── asm │ │ │ ├── mc6809 │ │ │ ├── microblaze.gnu │ │ │ ├── x86.ks_32 │ │ │ ├── x86.ks_64 │ │ │ ├── x86.olly │ │ │ ├── x86.udis_32 │ │ │ └── x86.udis_64 │ │ ├── cmd │ │ │ ├── dwarf │ │ │ ├── dwarf.lines │ │ │ ├── m68k │ │ │ ├── pcap │ │ │ ├── swf │ │ │ ├── udis86 │ │ │ └── yara │ │ └── util │ ├── formats │ │ ├── ar │ │ ├── avr │ │ ├── bf │ │ ├── bflt │ │ ├── cgc │ │ ├── coff │ │ ├── demangling_bin │ │ ├── dex │ │ ├── dmp │ │ │ └── dmp │ │ ├── dol │ │ ├── dyldcache │ │ ├── elf │ │ │ ├── avr │ │ │ ├── bomb │ │ │ ├── code │ │ │ ├── core │ │ │ ├── crackme3 │ │ │ ├── crackme7 │ │ │ ├── crash │ │ │ ├── create │ │ │ ├── dynimports │ │ │ ├── elf-mosquitoes │ │ │ ├── elf-nx │ │ │ ├── elf-phdrlinuxtrick │ │ │ ├── elf-relarm │ │ │ ├── elf-relmips │ │ │ ├── elf-relro │ │ │ ├── elf-riscv64 │ │ │ ├── elf-xnorelro │ │ │ ├── helloworld-gcc-elf │ │ │ ├── helloworld-phdr-elf │ │ │ ├── ls-alxchk │ │ │ ├── m68k │ │ │ ├── main │ │ │ ├── mips │ │ │ ├── obj │ │ │ ├── overlapped-segment │ │ │ ├── pie │ │ │ ├── reloc │ │ │ ├── riscv │ │ │ ├── sections │ │ │ ├── serial │ │ │ ├── simple │ │ │ ├── sparc │ │ │ ├── strings │ │ │ ├── sym_version │ │ │ ├── symbols │ │ │ ├── thumb │ │ │ ├── tiny │ │ │ ├── v850 │ │ │ └── versioninfo │ │ ├── firmware │ │ ├── gba │ │ ├── gbc │ │ ├── java │ │ ├── le │ │ ├── luac │ │ │ ├── luac │ │ │ └── luac53 │ │ ├── mach0 │ │ │ ├── arm64e │ │ │ ├── coresymbolication │ │ │ ├── create │ │ │ ├── entitlements │ │ │ ├── fatio │ │ │ ├── fatmach0 │ │ │ ├── fcn │ │ │ ├── imports │ │ │ ├── leb128 │ │ │ ├── mach0 │ │ │ ├── objc │ │ │ ├── relocs │ │ │ ├── swift │ │ │ └── thumb │ │ ├── mdmp │ │ ├── mdt │ │ ├── menuet │ │ ├── msil │ │ ├── mz │ │ │ ├── blocks │ │ │ ├── cblp0 │ │ │ ├── chkdsk │ │ │ ├── ddriving │ │ │ ├── reloc │ │ │ └── unzip │ │ ├── n3ds │ │ ├── ne │ │ ├── nes │ │ ├── ninds │ │ ├── nro │ │ ├── nso │ │ ├── omf │ │ ├── pdb │ │ ├── pe │ │ │ ├── 2331 │ │ │ ├── 65535sects │ │ │ ├── 96emptysections │ │ │ ├── 96workingsections │ │ │ ├── AStyleWhore │ │ │ ├── CoST │ │ │ ├── a │ │ │ ├── a2 │ │ │ ├── appendeddata │ │ │ ├── appendedhdr │ │ │ ├── appendedsecttbl │ │ │ ├── apphdrW7 │ │ │ ├── appsectableW7 │ │ │ ├── arm │ │ │ ├── aslr │ │ │ ├── aslr-ld │ │ │ ├── authentihash │ │ │ ├── b │ │ │ ├── base │ │ │ ├── base_FSG │ │ │ ├── bigSoRD │ │ │ ├── bigalign │ │ │ ├── bigib │ │ │ ├── bigsec │ │ │ ├── bottomsecttbl │ │ │ ├── c │ │ │ ├── cfgbogus │ │ │ ├── checksum │ │ │ ├── compiled │ │ │ ├── copyright │ │ │ ├── create │ │ │ ├── ctxt │ │ │ ├── ctxt-ld │ │ │ ├── d_nonnull │ │ │ ├── d_nonnull-ld │ │ │ ├── d_resource │ │ │ ├── d_resource-ld │ │ │ ├── d_tiny │ │ │ ├── d_tiny-ld │ │ │ ├── ddsect │ │ │ ├── debug │ │ │ ├── delaycorrupt │ │ │ ├── delayfake │ │ │ ├── delayimports │ │ │ ├── dep │ │ │ ├── dll │ │ │ ├── dll-dynld │ │ │ ├── dll-dynunicld │ │ │ ├── dll-ld │ │ │ ├── dll-webdavld │ │ │ ├── dll64 │ │ │ ├── dllbound │ │ │ ├── dllbound-ld │ │ │ ├── dllbound-redirld │ │ │ ├── dllbound-redirldXP │ │ │ ├── dllbound2 │ │ │ ├── dllcfgdup │ │ │ ├── dllcfgdup-dynld │ │ │ ├── dllemptyexp │ │ │ ├── dllemptyexp-ld │ │ │ ├── dllextep │ │ │ ├── dllextep-ld │ │ │ ├── dllfakess │ │ │ ├── dllfakess-dynld │ │ │ ├── dllfakess-ld │ │ │ ├── dllfw │ │ │ ├── dllfw-ld │ │ │ ├── dllfwloop │ │ │ ├── dllfwloop-ld │ │ │ ├── dllmaxvals │ │ │ ├── dllmaxvals-dynld │ │ │ ├── dllmaxvals-ld │ │ │ ├── dllnegep │ │ │ ├── dllnegep-ld │ │ │ ├── dllnoexp │ │ │ ├── dllnoexp-dynld │ │ │ ├── dllnomain │ │ │ ├── dllnomain-ld │ │ │ ├── dllnomain2 │ │ │ ├── dllnomain2-dynld │ │ │ ├── dllnoreloc │ │ │ ├── dllnoreloc-ld │ │ │ ├── dllnullep │ │ │ ├── dllnullep-dynld │ │ │ ├── dllnullep-ld │ │ │ ├── dllord │ │ │ ├── dllord-ld │ │ │ ├── dllweirdexp │ │ │ ├── dllweirdexp-ld │ │ │ ├── dosZMXP │ │ │ ├── dotnet20 │ │ │ ├── driver │ │ │ ├── dump_imports │ │ │ ├── duphead │ │ │ ├── dupsec │ │ │ ├── endianness │ │ │ ├── exceptions │ │ │ ├── exe2pe │ │ │ ├── export_names │ │ │ ├── exportobf │ │ │ ├── exports_doc │ │ │ ├── exports_order │ │ │ ├── exportsdata │ │ │ ├── fakenet │ │ │ ├── fakeregs │ │ │ ├── fakeregslib │ │ │ ├── fakerelocs │ │ │ ├── foldedhdr │ │ │ ├── foldedhdrW7 │ │ │ ├── footer │ │ │ ├── gui │ │ │ ├── hard_imports │ │ │ ├── hdrcode │ │ │ ├── hdrdata │ │ │ ├── hello_o │ │ │ ├── hello_world │ │ │ ├── hellocxx │ │ │ ├── hiddenappdata1 │ │ │ ├── hiddenappdata2 │ │ │ ├── ibkernel │ │ │ ├── ibkmanual │ │ │ ├── ibknoreloc64 │ │ │ ├── ibnullXP │ │ │ ├── ibreloc │ │ │ ├── ibrelocW7 │ │ │ ├── impbyord │ │ │ ├── import_names │ │ │ ├── imports │ │ │ ├── imports_apimsW7 │ │ │ ├── imports_badterm │ │ │ ├── imports_bogusIAT │ │ │ ├── imports_corruptedIAT │ │ │ ├── imports_iatindesc │ │ │ ├── imports_mixed │ │ │ ├── imports_multidesc │ │ │ ├── imports_nnIAT │ │ │ ├── imports_noext │ │ │ ├── imports_noint │ │ │ ├── imports_nothunk │ │ │ ├── imports_relocW7 │ │ │ ├── imports_tinyW7 │ │ │ ├── imports_tinyXP │ │ │ ├── imports_virtdesc │ │ │ ├── imports_vterm │ │ │ ├── importsdotXP │ │ │ ├── importshint │ │ │ ├── ioli │ │ │ ├── jman │ │ │ ├── ldrsnaps │ │ │ ├── ldrsnaps64 │ │ │ ├── lfanew_relocW7 │ │ │ ├── lfanew_relocXP │ │ │ ├── lowsubsys │ │ │ ├── manifest │ │ │ ├── manifest_broken │ │ │ ├── manifest_bsod │ │ │ ├── manyimportsW7 │ │ │ ├── maxsecXP │ │ │ ├── maxsec_lowaligW7 │ │ │ ├── maxvals │ │ │ ├── memshared │ │ │ ├── memshared-ld │ │ │ ├── mini │ │ │ ├── mscoree │ │ │ ├── msvcfindmain │ │ │ ├── multiss │ │ │ ├── multiss_con │ │ │ ├── multiss_drv │ │ │ ├── multiss_gui │ │ │ ├── mz │ │ │ ├── namedresource │ │ │ ├── no0code │ │ │ ├── no_dd │ │ │ ├── no_dd64 │ │ │ ├── no_dep │ │ │ ├── no_seh │ │ │ ├── normal │ │ │ ├── normal64 │ │ │ ├── nosectionW7 │ │ │ ├── nosectionXP │ │ │ ├── nothing │ │ │ ├── nothing-ld │ │ │ ├── nullEP │ │ │ ├── nullSOH-XP │ │ │ ├── nullvirt │ │ │ ├── ownexports │ │ │ ├── ownexports2 │ │ │ ├── ownexportsdot │ │ │ ├── pdf │ │ │ ├── pdf_zip_pe │ │ │ ├── pe │ │ │ ├── pe32 │ │ │ ├── pe64 │ │ │ ├── peio │ │ │ ├── quine │ │ │ ├── reloc4 │ │ │ ├── reloc9 │ │ │ ├── relocOSdet │ │ │ ├── reloccrypt │ │ │ ├── reloccryptW8 │ │ │ ├── reloccryptXP │ │ │ ├── relocsstripped │ │ │ ├── relocsstripped64 │ │ │ ├── reshdr │ │ │ ├── resource │ │ │ ├── safeseh │ │ │ ├── safeseh_fly │ │ │ ├── sc │ │ │ ├── secinsec │ │ │ ├── sectiondata │ │ │ ├── seh_change64 │ │ │ ├── seh_x64 │ │ │ ├── shuffledsect │ │ │ ├── signature │ │ │ ├── signature_cert │ │ │ ├── skippeddynbase │ │ │ ├── slackspace │ │ │ ├── ss63 │ │ │ ├── ss63nocookie │ │ │ ├── standard │ │ │ ├── strip │ │ │ ├── tiny │ │ │ ├── tinyW7 │ │ │ ├── tinyW7_3264 │ │ │ ├── tinyW7x64 │ │ │ ├── tinyXP │ │ │ ├── tinydll │ │ │ ├── tinydll-ld │ │ │ ├── tinydllXP │ │ │ ├── tinydllXP-ld │ │ │ ├── tinydrivXP │ │ │ ├── tinygui │ │ │ ├── tinynet │ │ │ ├── tls │ │ │ ├── tls64 │ │ │ ├── tls_aoi │ │ │ ├── tls_aoiOSDET │ │ │ ├── tls_entrypoints │ │ │ ├── tls_exiting │ │ │ ├── tls_import │ │ │ ├── tls_k32 │ │ │ ├── tls_noEP │ │ │ ├── tls_obfuscation │ │ │ ├── tls_onthefly │ │ │ ├── tls_reloc │ │ │ ├── tls_virtEP │ │ │ ├── truncatedlast │ │ │ ├── truncsectbl │ │ │ ├── version_cust │ │ │ ├── version_mini │ │ │ ├── version_std │ │ │ ├── versioninfo │ │ │ ├── virtEP │ │ │ ├── virtgap │ │ │ ├── virtrelocXP │ │ │ ├── virtsectblXP │ │ │ ├── weirdsord │ │ │ └── winver │ │ ├── peeble │ │ ├── plan9 │ │ ├── prg │ │ ├── psx │ │ ├── pyc │ │ ├── qnx │ │ ├── sfc │ │ ├── smd │ │ ├── sms │ │ ├── spc700 │ │ ├── vsf │ │ │ ├── rambo2-norom │ │ │ ├── rambo2-rom │ │ │ ├── rhps-norom │ │ │ └── rhps-rom │ │ ├── web_assembly │ │ ├── xbe │ │ ├── z64 │ │ └── zimg │ ├── io │ │ ├── baddr │ │ ├── cache │ │ ├── ff │ │ ├── ihex │ │ ├── many │ │ ├── maps │ │ ├── neg │ │ ├── om │ │ ├── omp │ │ ├── resize │ │ ├── search │ │ ├── sections │ │ ├── srec │ │ ├── titxt │ │ ├── va │ │ ├── write │ │ └── zip │ ├── json │ │ ├── json1 │ │ ├── json2 │ │ ├── json3 │ │ └── json4 │ ├── rzil │ │ ├── 6502 │ │ ├── arm32 │ │ ├── arm64 │ │ ├── avr │ │ ├── bf │ │ ├── gb │ │ ├── h8300 │ │ ├── hexagon │ │ ├── mips │ │ ├── msp430 │ │ ├── pic │ │ ├── ppc32 │ │ ├── ppc64 │ │ ├── sparc │ │ ├── tricore │ │ ├── v810 │ │ ├── v850 │ │ ├── vm │ │ ├── x86 │ │ └── xtensa │ └── tools │ │ ├── rz │ │ ├── rz_asm │ │ ├── rz_ax │ │ ├── rz_bin │ │ ├── rz_diff │ │ ├── rz_find │ │ ├── rz_gg │ │ ├── rz_hash │ │ ├── rz_run │ │ ├── rz_sign │ │ └── rz_test ├── fuzz │ └── scripts │ │ └── fuzz_rz_asm.py ├── integration │ ├── meson.build │ ├── test_analysis_fcn.c │ ├── test_analysis_global_var.c │ ├── test_analysis_graph.c │ ├── test_analysis_il.c │ ├── test_auto_analysis.c │ ├── test_autocmplt.c │ ├── test_basefind.c │ ├── test_bin.c │ ├── test_bin_symbols.c │ ├── test_bin_vfiles.c │ ├── test_config.h.in │ ├── test_cpu_platform_profiles.c │ ├── test_dwarf.c │ ├── test_dwarf_info.c │ ├── test_dwarf_integration.c │ ├── test_glibc_version.c │ ├── test_open_analyse_save_load_project.c │ ├── test_pdb.c │ ├── test_project_migrate.c │ ├── test_rzpipe.c │ ├── test_str_search.c │ └── test_types.h ├── meson.build ├── notworking_db │ ├── darwin-x64 │ │ ├── dbg │ │ ├── dbg_cmdbps │ │ ├── dbg_dcu │ │ ├── dbg_di │ │ ├── dbg_io │ │ ├── dbg_oo │ │ ├── dbg_step │ │ ├── me │ │ └── shell_uname │ └── linux-arm │ │ └── dbg_bps ├── prj │ ├── v1-noreturn-empty.rzdb │ ├── v1-noreturn.rzdb │ ├── v10-bp-vars.rzdb │ ├── v10-sp-vars.rzdb │ ├── v12-types-empty.rzdb │ ├── v14-float_ex1_hightec.rzdb.gz │ ├── v15-seek-history.rzdb │ ├── v15-str-config.rzdb │ ├── v16-flags-base.rzdb │ ├── v17-rop-config.rzdb │ ├── v18-str-config.rzdb │ ├── v2-typelink-callables.rzdb │ ├── v2-types-empty.rzdb │ ├── v20-debase64.rzdb │ ├── v3-typelink.rzdb │ ├── v4-types.rzdb │ ├── v5-empty.rzdb │ ├── v6-esil-pins.rzdb │ ├── v7-zignatures.rzdb │ ├── v8-fingerprint.rzdb │ ├── v9-bp-vars.rzdb │ ├── v9-sp-vars.rzdb │ └── v9-stackptr.rzdb ├── scripts │ ├── dk_9.py │ ├── gdb-reg-profile-invalid.txt │ ├── gdb-reg-profile.txt │ ├── gdbserver.py │ ├── get-funcs.py │ ├── http_post_cmd_upload.py │ ├── keyword │ ├── map_clean.rz │ ├── no-nl-at-eof.rz │ ├── palette.rz │ ├── rztest.spp │ ├── search-consistency-test.rz │ ├── set-LD_PRELOAD.rz │ ├── shared_memory.py │ └── smd_strings.rz └── unit │ ├── .gitignore │ ├── auxiliary │ ├── meson.build │ ├── subprocess-helloworld.c │ ├── subprocess-interactive.c │ ├── subprocess-multiargs.c │ └── subprocess-stdin.c │ ├── cpp │ ├── meson.build │ └── test_cpp.cpp │ ├── meson.build │ ├── minunit.h │ ├── mock_io.inl │ ├── rz_arch_buffer.h │ ├── rz_test_cmd_test │ ├── test_addr_interval.c │ ├── test_agraph.c │ ├── test_analysis_block.c │ ├── test_analysis_block_invars.inl │ ├── test_analysis_cc.c │ ├── test_analysis_class_graph.c │ ├── test_analysis_coverage.c │ ├── test_analysis_function.c │ ├── test_analysis_hints.c │ ├── test_analysis_meta.c │ ├── test_analysis_op.c │ ├── test_analysis_var.c │ ├── test_analysis_xrefs.c │ ├── test_annotated_code.c │ ├── test_base16.c │ ├── test_base32.c │ ├── test_base36.c │ ├── test_base64.c │ ├── test_base85.c │ ├── test_big.c │ ├── test_bin_lines.c │ ├── test_bin_mach0.c │ ├── test_bits.c │ ├── test_bitvector.c │ ├── test_buf.c │ ├── test_cmd.c │ ├── test_compare.c │ ├── test_config.c │ ├── test_config.h.in │ ├── test_cons.c │ ├── test_contrbtree.c │ ├── test_core_analysis_stats.c │ ├── test_core_bin.c │ ├── test_core_cmd.c │ ├── test_core_seek.c │ ├── test_core_task.c │ ├── test_crypto.c │ ├── test_debruijn.c │ ├── test_debug.c │ ├── test_debug_session.c │ ├── test_diff.c │ ├── test_ebcdic.c │ ├── test_encodings.c │ ├── test_endian.c │ ├── test_event.c │ ├── test_file.c │ ├── test_flags.c │ ├── test_flirt.c │ ├── test_float.c │ ├── test_glob.c │ ├── test_graph.c │ ├── test_hash.c │ ├── test_hex.c │ ├── test_ht.c │ ├── test_id_storage.c │ ├── test_idpool.c │ ├── test_idstorage.c │ ├── test_il_definitions.c │ ├── test_il_helpers.c │ ├── test_il_reg.c │ ├── test_il_validate.c │ ├── test_il_vm.c │ ├── test_inflate_deflate.c │ ├── test_intervaltree.c │ ├── test_io.c │ ├── test_io_ihex.c │ ├── test_itv.c │ ├── test_json.c │ ├── test_list.c │ ├── test_log.c │ ├── test_lzma.c │ ├── test_marks.c │ ├── test_mem.c │ ├── test_ovf.c │ ├── test_pj.c │ ├── test_rbtree.c │ ├── test_reg.c │ ├── test_regex.c │ ├── test_rop.c │ ├── test_rop_constraint.c │ ├── test_run.c │ ├── test_rz_test.c │ ├── test_sdb.h │ ├── test_sdb_array.c │ ├── test_sdb_diff.c │ ├── test_sdb_sdb.c │ ├── test_sdb_util.c │ ├── test_serialize_analysis.c │ ├── test_serialize_config.c │ ├── test_serialize_debug.c │ ├── test_serialize_flag.c │ ├── test_serialize_mark.c │ ├── test_serialize_seek.c │ ├── test_serialize_spaces.c │ ├── test_serialize_types.c │ ├── test_skiplist.c │ ├── test_skyline.c │ ├── test_socket.c │ ├── test_spaces.c │ ├── test_sparse.c │ ├── test_stack.c │ ├── test_str.c │ ├── test_str_search.c │ ├── test_strbuf.c │ ├── test_subprocess.c │ ├── test_syscall.c │ ├── test_table.c │ ├── test_task.c │ ├── test_threads.c │ ├── test_tokens.c │ ├── test_tree.c │ ├── test_type.c │ ├── test_uleb128.c │ ├── test_unum.c │ ├── test_util.c │ ├── test_vector.c │ └── test_yank.c ├── travis-extract-var.sh └── travis-script /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.builds/freebsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/.builds/freebsd.yml -------------------------------------------------------------------------------- /.builds/netbsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/.builds/netbsd.yml -------------------------------------------------------------------------------- /.builds/openbsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/.builds/openbsd.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/.clang-format -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/.dockerignore -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/.github/upload.sh -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/.gitignore -------------------------------------------------------------------------------- /.lgtm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/.lgtm.yml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | subprojects/rizin-shell-parser/bindings/node/index.js 2 | -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/.pylintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/.travis.yml -------------------------------------------------------------------------------- /BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/BUILDING.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/COPYING.LESSER -------------------------------------------------------------------------------- /DEVELOPERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/DEVELOPERS.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/Dockerfile -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /LICENSES/CC-PDDC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/LICENSES/CC-PDDC.txt -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /LICENSES/NCSA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/LICENSES/NCSA.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/README.md -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/REUSE.toml -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/SECURITY.md -------------------------------------------------------------------------------- /binrz/blob/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/binrz/blob/main.c -------------------------------------------------------------------------------- /binrz/blob/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/binrz/blob/meson.build -------------------------------------------------------------------------------- /binrz/man/rizin.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/binrz/man/rizin.1 -------------------------------------------------------------------------------- /binrz/man/rz-asm.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/binrz/man/rz-asm.1 -------------------------------------------------------------------------------- /binrz/man/rz-ax.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/binrz/man/rz-ax.1 -------------------------------------------------------------------------------- /binrz/man/rz-bin.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/binrz/man/rz-bin.1 -------------------------------------------------------------------------------- /binrz/man/rz-diff.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/binrz/man/rz-diff.1 -------------------------------------------------------------------------------- /binrz/man/rz-esil.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/binrz/man/rz-esil.7 -------------------------------------------------------------------------------- /binrz/man/rz-find.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/binrz/man/rz-find.1 -------------------------------------------------------------------------------- /binrz/man/rz-gg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/binrz/man/rz-gg.1 -------------------------------------------------------------------------------- /binrz/man/rz-hash.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/binrz/man/rz-hash.1 -------------------------------------------------------------------------------- /binrz/man/rz-run.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/binrz/man/rz-run.1 -------------------------------------------------------------------------------- /binrz/man/rz-sign.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/binrz/man/rz-sign.1 -------------------------------------------------------------------------------- /binrz/man/rz-test.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/binrz/man/rz-test.1 -------------------------------------------------------------------------------- /binrz/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/binrz/meson.build -------------------------------------------------------------------------------- /binrz/rizin/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/binrz/rizin/Info.plist -------------------------------------------------------------------------------- /binrz/rizin/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/binrz/rizin/meson.build -------------------------------------------------------------------------------- /binrz/rizin/rizin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/binrz/rizin/rizin.c -------------------------------------------------------------------------------- /binrz/rz-asm/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/binrz/rz-asm/meson.build -------------------------------------------------------------------------------- /binrz/rz-asm/rz-asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/binrz/rz-asm/rz-asm.c -------------------------------------------------------------------------------- /binrz/rz-ax/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/binrz/rz-ax/meson.build -------------------------------------------------------------------------------- /binrz/rz-ax/rz-ax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/binrz/rz-ax/rz-ax.c -------------------------------------------------------------------------------- /binrz/rz-bin/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/binrz/rz-bin/meson.build -------------------------------------------------------------------------------- /binrz/rz-bin/rz-bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/binrz/rz-bin/rz-bin.c -------------------------------------------------------------------------------- /binrz/rz-diff/rz-diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/binrz/rz-diff/rz-diff.c -------------------------------------------------------------------------------- /binrz/rz-find/rz-find.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/binrz/rz-find/rz-find.c -------------------------------------------------------------------------------- /binrz/rz-gg/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/binrz/rz-gg/meson.build -------------------------------------------------------------------------------- /binrz/rz-gg/rz-gg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/binrz/rz-gg/rz-gg.c -------------------------------------------------------------------------------- /binrz/rz-gg/syscall.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/binrz/rz-gg/syscall.r -------------------------------------------------------------------------------- /binrz/rz-hash/rz-hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/binrz/rz-hash/rz-hash.c -------------------------------------------------------------------------------- /binrz/rz-run/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/binrz/rz-run/meson.build -------------------------------------------------------------------------------- /binrz/rz-run/rz-run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/binrz/rz-run/rz-run.c -------------------------------------------------------------------------------- /binrz/rz-sign/rz-sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/binrz/rz-sign/rz-sign.c -------------------------------------------------------------------------------- /binrz/rz-test/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/binrz/rz-test/load.c -------------------------------------------------------------------------------- /binrz/rz-test/run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/binrz/rz-test/run.c -------------------------------------------------------------------------------- /binrz/rz-test/rz-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/binrz/rz-test/rz-test.c -------------------------------------------------------------------------------- /binrz/rz-test/rz_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/binrz/rz-test/rz_test.h -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/codecov.yml -------------------------------------------------------------------------------- /dist/deb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/dist/deb/README.md -------------------------------------------------------------------------------- /dist/deb/debian.compat: -------------------------------------------------------------------------------- 1 | 13 2 | -------------------------------------------------------------------------------- /dist/deb/debian.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/dist/deb/debian.control -------------------------------------------------------------------------------- /dist/deb/debian.librizin-common.install: -------------------------------------------------------------------------------- 1 | /usr/share/rizin 2 | -------------------------------------------------------------------------------- /dist/deb/debian.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/dist/deb/debian.rules -------------------------------------------------------------------------------- /dist/deb/rizin.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/dist/deb/rizin.dsc -------------------------------------------------------------------------------- /dist/osx/Distribution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/dist/osx/Distribution -------------------------------------------------------------------------------- /dist/rpm/rizin.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/dist/rpm/rizin.spec -------------------------------------------------------------------------------- /dist/windows/rizin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/dist/windows/rizin.ico -------------------------------------------------------------------------------- /dist/windows/rizin.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/dist/windows/rizin.iss -------------------------------------------------------------------------------- /doc/PACKAGERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/doc/PACKAGERS.md -------------------------------------------------------------------------------- /doc/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/doc/RELEASE.md -------------------------------------------------------------------------------- /doc/asm_strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/doc/asm_strings.md -------------------------------------------------------------------------------- /doc/avr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/doc/avr.md -------------------------------------------------------------------------------- /doc/brainfuck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/doc/brainfuck.md -------------------------------------------------------------------------------- /doc/crosscompile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/doc/crosscompile.md -------------------------------------------------------------------------------- /doc/debug-internals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/doc/debug-internals.md -------------------------------------------------------------------------------- /doc/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/doc/debug.md -------------------------------------------------------------------------------- /doc/esil.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/doc/esil.md -------------------------------------------------------------------------------- /doc/examples/egg/exit.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/doc/examples/egg/exit.r -------------------------------------------------------------------------------- /doc/examples/egg/hi.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/doc/examples/egg/hi.r -------------------------------------------------------------------------------- /doc/examples/egg/inc.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/doc/examples/egg/inc.r -------------------------------------------------------------------------------- /doc/examples/egg/loop.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/doc/examples/egg/loop.r -------------------------------------------------------------------------------- /doc/examples/egg/sys.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/doc/examples/egg/sys.r -------------------------------------------------------------------------------- /doc/examples/egg/write.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/doc/examples/egg/write.r -------------------------------------------------------------------------------- /doc/fortunes.fun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/doc/fortunes.fun -------------------------------------------------------------------------------- /doc/fortunes.tips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/doc/fortunes.tips -------------------------------------------------------------------------------- /doc/gdb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/doc/gdb.md -------------------------------------------------------------------------------- /doc/hud: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/doc/hud -------------------------------------------------------------------------------- /doc/img/rizin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/doc/img/rizin.svg -------------------------------------------------------------------------------- /doc/register_profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/doc/register_profile.md -------------------------------------------------------------------------------- /doc/release-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/doc/release-template.md -------------------------------------------------------------------------------- /doc/rzil.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/doc/rzil.md -------------------------------------------------------------------------------- /doc/rzshell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/doc/rzshell.md -------------------------------------------------------------------------------- /doc/siol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/doc/siol.md -------------------------------------------------------------------------------- /doc/windbg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/doc/windbg.md -------------------------------------------------------------------------------- /librz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/README.md -------------------------------------------------------------------------------- /librz/arch/acode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/acode.c -------------------------------------------------------------------------------- /librz/arch/analysis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/analysis.c -------------------------------------------------------------------------------- /librz/arch/aop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/aop.c -------------------------------------------------------------------------------- /librz/arch/arch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/arch.c -------------------------------------------------------------------------------- /librz/arch/asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/asm.c -------------------------------------------------------------------------------- /librz/arch/binutils_as.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/binutils_as.c -------------------------------------------------------------------------------- /librz/arch/binutils_as.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/binutils_as.h -------------------------------------------------------------------------------- /librz/arch/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/block.c -------------------------------------------------------------------------------- /librz/arch/cc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/cc.c -------------------------------------------------------------------------------- /librz/arch/class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/class.c -------------------------------------------------------------------------------- /librz/arch/cond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/cond.c -------------------------------------------------------------------------------- /librz/arch/cycles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/cycles.c -------------------------------------------------------------------------------- /librz/arch/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/data.c -------------------------------------------------------------------------------- /librz/arch/esil/esil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/esil/esil.c -------------------------------------------------------------------------------- /librz/arch/fcn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/fcn.c -------------------------------------------------------------------------------- /librz/arch/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/filter.c -------------------------------------------------------------------------------- /librz/arch/function.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/function.c -------------------------------------------------------------------------------- /librz/arch/hint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/hint.c -------------------------------------------------------------------------------- /librz/arch/il_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/il_trace.c -------------------------------------------------------------------------------- /librz/arch/isa/gb/gb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/isa/gb/gb.h -------------------------------------------------------------------------------- /librz/arch/isa/pic/pic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/isa/pic/pic.h -------------------------------------------------------------------------------- /librz/arch/isa/rx/rx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/isa/rx/rx.c -------------------------------------------------------------------------------- /librz/arch/isa/rx/rx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/isa/rx/rx.h -------------------------------------------------------------------------------- /librz/arch/isa/sh/regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/isa/sh/regs.h -------------------------------------------------------------------------------- /librz/arch/isa/xap/dis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/isa/xap/dis.c -------------------------------------------------------------------------------- /librz/arch/isa/xap/dis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/isa/xap/dis.h -------------------------------------------------------------------------------- /librz/arch/jmptbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/jmptbl.c -------------------------------------------------------------------------------- /librz/arch/labels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/labels.c -------------------------------------------------------------------------------- /librz/arch/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/meson.build -------------------------------------------------------------------------------- /librz/arch/meta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/meta.c -------------------------------------------------------------------------------- /librz/arch/no_rtti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/no_rtti.c -------------------------------------------------------------------------------- /librz/arch/op.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/op.c -------------------------------------------------------------------------------- /librz/arch/p/arch_6502.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/p/arch_6502.c -------------------------------------------------------------------------------- /librz/arch/p/arch_8051.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/p/arch_8051.c -------------------------------------------------------------------------------- /librz/arch/p/arch_avr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/p/arch_avr.c -------------------------------------------------------------------------------- /librz/arch/p/arch_bf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/p/arch_bf.c -------------------------------------------------------------------------------- /librz/arch/p/arch_cil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/p/arch_cil.c -------------------------------------------------------------------------------- /librz/arch/p/arch_cr16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/p/arch_cr16.c -------------------------------------------------------------------------------- /librz/arch/p/arch_ebc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/p/arch_ebc.c -------------------------------------------------------------------------------- /librz/arch/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/parse.c -------------------------------------------------------------------------------- /librz/arch/reflines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/reflines.c -------------------------------------------------------------------------------- /librz/arch/rtti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/rtti.c -------------------------------------------------------------------------------- /librz/arch/switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/switch.c -------------------------------------------------------------------------------- /librz/arch/types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/types.c -------------------------------------------------------------------------------- /librz/arch/value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/value.c -------------------------------------------------------------------------------- /librz/arch/var.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/var.c -------------------------------------------------------------------------------- /librz/arch/vtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/vtable.c -------------------------------------------------------------------------------- /librz/arch/xrefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/arch/xrefs.c -------------------------------------------------------------------------------- /librz/bin/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /librz/bin/bfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/bfile.c -------------------------------------------------------------------------------- /librz/bin/bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/bin.c -------------------------------------------------------------------------------- /librz/bin/bin_ldr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/bin_ldr.c -------------------------------------------------------------------------------- /librz/bin/bobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/bobj.c -------------------------------------------------------------------------------- /librz/bin/d/bios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/d/bios -------------------------------------------------------------------------------- /librz/bin/d/cdex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/d/cdex.h -------------------------------------------------------------------------------- /librz/bin/d/dex: -------------------------------------------------------------------------------- 1 | pfn dex_magic "[8]c" 2 | -------------------------------------------------------------------------------- /librz/bin/d/dex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/d/dex.h -------------------------------------------------------------------------------- /librz/bin/d/dll/INET16.sdb.txt: -------------------------------------------------------------------------------- 1 | 1=DLLENTRYPOINT 2 | 2=WIZTHK_THUNKDATA16 3 | 3=WEP 4 | -------------------------------------------------------------------------------- /librz/bin/d/dll/MCIAVI.sdb.txt: -------------------------------------------------------------------------------- 1 | 1=WEP 2 | 2=DRIVERPROC 3 | -------------------------------------------------------------------------------- /librz/bin/d/dll/MCICDA.sdb.txt: -------------------------------------------------------------------------------- 1 | 1=WEP 2 | 2=DRIVERPROC 3 | -------------------------------------------------------------------------------- /librz/bin/d/dll/MCIMIDI.sdb.txt: -------------------------------------------------------------------------------- 1 | 1=DRIVERPROC 2 | -------------------------------------------------------------------------------- /librz/bin/d/dll/MCIWAVE.sdb.txt: -------------------------------------------------------------------------------- 1 | 1=WEP 2 | 2=DRIVERPROC 3 | -------------------------------------------------------------------------------- /librz/bin/d/dll/ML3XEC16.sdb.txt: -------------------------------------------------------------------------------- 1 | 1=MAINWNDPROC 2 | 2=___EXPORTEDSTUB 3 | -------------------------------------------------------------------------------- /librz/bin/d/dll/MMCI.sdb.txt: -------------------------------------------------------------------------------- 1 | 1=WEP 2 | 2=CLASSINSTALL 3 | -------------------------------------------------------------------------------- /librz/bin/d/dll/MSJSTICK.sdb.txt: -------------------------------------------------------------------------------- 1 | 1=DRIVERPROC 2 | 2=WEP 3 | -------------------------------------------------------------------------------- /librz/bin/d/dll/MSTCP.sdb.txt: -------------------------------------------------------------------------------- 1 | 1=WEP 2 | 2=___EXPORTEDSTUB 3 | 10=TCPNDIPROC 4 | -------------------------------------------------------------------------------- /librz/bin/d/dll/NETCPL.sdb.txt: -------------------------------------------------------------------------------- 1 | 1=WEP 2 | 2=CPLAPPLET 3 | 3=___EXPORTEDSTUB 4 | -------------------------------------------------------------------------------- /librz/bin/d/dll/README.txt: -------------------------------------------------------------------------------- 1 | Copied from https://github.com/zfigura/semblance -------------------------------------------------------------------------------- /librz/bin/d/dll/RNASETUP.sdb.txt: -------------------------------------------------------------------------------- 1 | 1=WEP 2 | 2=RNASETUPCALLBACK 3 | 3=INSTALLDEFAULTDRV 4 | -------------------------------------------------------------------------------- /librz/bin/d/dll/SBFM.sdb.txt: -------------------------------------------------------------------------------- 1 | 1=WEP 2 | 2=DRIVERPROC 3 | 3=MODMESSAGE 4 | -------------------------------------------------------------------------------- /librz/bin/d/dll/SPOOLER.sdb.txt: -------------------------------------------------------------------------------- 1 | # Generated by dumpne -o 2 | 1=SPOOLERWNDPROC 3 | 2=ABOUT 4 | -------------------------------------------------------------------------------- /librz/bin/d/dll/WINNET16.sdb.txt: -------------------------------------------------------------------------------- 1 | 199=WEP 2 | 501=FT_MPRTHKTHKCONNECTIONDATA 3 | -------------------------------------------------------------------------------- /librz/bin/d/dll/WSASRV.sdb.txt: -------------------------------------------------------------------------------- 1 | 1=WSANOTIFICATIONCALLBACK 2 | -------------------------------------------------------------------------------- /librz/bin/d/elf32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/d/elf32 -------------------------------------------------------------------------------- /librz/bin/d/elf64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/d/elf64 -------------------------------------------------------------------------------- /librz/bin/d/elf_enums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/d/elf_enums -------------------------------------------------------------------------------- /librz/bin/d/jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/d/jni.h -------------------------------------------------------------------------------- /librz/bin/d/macho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/d/macho -------------------------------------------------------------------------------- /librz/bin/d/mz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/d/mz -------------------------------------------------------------------------------- /librz/bin/d/pe32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/d/pe32 -------------------------------------------------------------------------------- /librz/bin/d/zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/d/zip -------------------------------------------------------------------------------- /librz/bin/dbginfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/dbginfo.c -------------------------------------------------------------------------------- /librz/bin/dwarf/op.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/dwarf/op.c -------------------------------------------------------------------------------- /librz/bin/dwarf/op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/dwarf/op.h -------------------------------------------------------------------------------- /librz/bin/dwarf/str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/dwarf/str.c -------------------------------------------------------------------------------- /librz/bin/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/filter.c -------------------------------------------------------------------------------- /librz/bin/golang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/golang.c -------------------------------------------------------------------------------- /librz/bin/i/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/i/private.h -------------------------------------------------------------------------------- /librz/bin/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/meson.build -------------------------------------------------------------------------------- /librz/bin/p/bin_any.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/p/bin_any.c -------------------------------------------------------------------------------- /librz/bin/p/bin_art.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/p/bin_art.c -------------------------------------------------------------------------------- /librz/bin/p/bin_avr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/p/bin_avr.c -------------------------------------------------------------------------------- /librz/bin/p/bin_bf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/p/bin_bf.c -------------------------------------------------------------------------------- /librz/bin/p/bin_cgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/p/bin_cgc.c -------------------------------------------------------------------------------- /librz/bin/p/bin_dex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/p/bin_dex.c -------------------------------------------------------------------------------- /librz/bin/p/bin_dol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/p/bin_dol.c -------------------------------------------------------------------------------- /librz/bin/p/bin_elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/p/bin_elf.c -------------------------------------------------------------------------------- /librz/bin/p/bin_le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/p/bin_le.c -------------------------------------------------------------------------------- /librz/bin/p/bin_mbn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/p/bin_mbn.c -------------------------------------------------------------------------------- /librz/bin/p/bin_mdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/p/bin_mdt.c -------------------------------------------------------------------------------- /librz/bin/p/bin_mz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/p/bin_mz.c -------------------------------------------------------------------------------- /librz/bin/p/bin_ne.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/p/bin_ne.c -------------------------------------------------------------------------------- /librz/bin/p/bin_nes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/p/bin_nes.c -------------------------------------------------------------------------------- /librz/bin/p/bin_nro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/p/bin_nro.c -------------------------------------------------------------------------------- /librz/bin/p/bin_nso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/p/bin_nso.c -------------------------------------------------------------------------------- /librz/bin/p/bin_omf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/p/bin_omf.c -------------------------------------------------------------------------------- /librz/bin/p/bin_p9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/p/bin_p9.c -------------------------------------------------------------------------------- /librz/bin/p/bin_pe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/p/bin_pe.c -------------------------------------------------------------------------------- /librz/bin/p/bin_prg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/p/bin_prg.c -------------------------------------------------------------------------------- /librz/bin/p/bin_pyc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/p/bin_pyc.c -------------------------------------------------------------------------------- /librz/bin/p/bin_qnx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/p/bin_qnx.c -------------------------------------------------------------------------------- /librz/bin/p/bin_smd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/p/bin_smd.c -------------------------------------------------------------------------------- /librz/bin/p/bin_sms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/p/bin_sms.c -------------------------------------------------------------------------------- /librz/bin/p/bin_te.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/p/bin_te.c -------------------------------------------------------------------------------- /librz/bin/p/bin_vsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/p/bin_vsf.c -------------------------------------------------------------------------------- /librz/bin/p/bin_xbe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/p/bin_xbe.c -------------------------------------------------------------------------------- /librz/bin/pdb/dbi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/pdb/dbi.c -------------------------------------------------------------------------------- /librz/bin/pdb/dbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/pdb/dbi.h -------------------------------------------------------------------------------- /librz/bin/pdb/gdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/pdb/gdata.c -------------------------------------------------------------------------------- /librz/bin/pdb/modi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/pdb/modi.c -------------------------------------------------------------------------------- /librz/bin/pdb/modi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/pdb/modi.h -------------------------------------------------------------------------------- /librz/bin/pdb/omap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/pdb/omap.c -------------------------------------------------------------------------------- /librz/bin/pdb/omap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/pdb/omap.h -------------------------------------------------------------------------------- /librz/bin/pdb/pdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/pdb/pdb.c -------------------------------------------------------------------------------- /librz/bin/pdb/pdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/pdb/pdb.h -------------------------------------------------------------------------------- /librz/bin/pdb/tpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/pdb/tpi.c -------------------------------------------------------------------------------- /librz/bin/pdb/tpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/bin/pdb/tpi.h -------------------------------------------------------------------------------- /librz/config/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /librz/config/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/config/config.c -------------------------------------------------------------------------------- /librz/config/hold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/config/hold.c -------------------------------------------------------------------------------- /librz/cons/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /librz/cons/bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/bar.c -------------------------------------------------------------------------------- /librz/cons/canvas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/canvas.c -------------------------------------------------------------------------------- /librz/cons/cons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/cons.c -------------------------------------------------------------------------------- /librz/cons/cpipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/cpipe.c -------------------------------------------------------------------------------- /librz/cons/cutf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/cutf8.c -------------------------------------------------------------------------------- /librz/cons/d/ayu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/d/ayu -------------------------------------------------------------------------------- /librz/cons/d/basic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/d/basic -------------------------------------------------------------------------------- /librz/cons/d/behelit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/d/behelit -------------------------------------------------------------------------------- /librz/cons/d/bold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/d/bold -------------------------------------------------------------------------------- /librz/cons/d/bright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/d/bright -------------------------------------------------------------------------------- /librz/cons/d/cga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/d/cga -------------------------------------------------------------------------------- /librz/cons/d/cutter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/d/cutter -------------------------------------------------------------------------------- /librz/cons/d/dark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/d/dark -------------------------------------------------------------------------------- /librz/cons/d/darkda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/d/darkda -------------------------------------------------------------------------------- /librz/cons/d/durian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/d/durian -------------------------------------------------------------------------------- /librz/cons/d/focus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/d/focus -------------------------------------------------------------------------------- /librz/cons/d/gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/d/gb -------------------------------------------------------------------------------- /librz/cons/d/gentoo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/d/gentoo -------------------------------------------------------------------------------- /librz/cons/d/lima: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/d/lima -------------------------------------------------------------------------------- /librz/cons/d/mars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/d/mars -------------------------------------------------------------------------------- /librz/cons/d/matrix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/d/matrix -------------------------------------------------------------------------------- /librz/cons/d/monokai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/d/monokai -------------------------------------------------------------------------------- /librz/cons/d/nord: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/d/nord -------------------------------------------------------------------------------- /librz/cons/d/ogray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/d/ogray -------------------------------------------------------------------------------- /librz/cons/d/onedark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/d/onedark -------------------------------------------------------------------------------- /librz/cons/d/pink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/d/pink -------------------------------------------------------------------------------- /librz/cons/d/rasta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/d/rasta -------------------------------------------------------------------------------- /librz/cons/d/sepia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/d/sepia -------------------------------------------------------------------------------- /librz/cons/d/smyck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/d/smyck -------------------------------------------------------------------------------- /librz/cons/d/tango: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/d/tango -------------------------------------------------------------------------------- /librz/cons/d/twilight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/d/twilight -------------------------------------------------------------------------------- /librz/cons/d/white: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/d/white -------------------------------------------------------------------------------- /librz/cons/d/white2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/d/white2 -------------------------------------------------------------------------------- /librz/cons/d/xvilka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/d/xvilka -------------------------------------------------------------------------------- /librz/cons/d/zenburn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/d/zenburn -------------------------------------------------------------------------------- /librz/cons/dietline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/dietline.c -------------------------------------------------------------------------------- /librz/cons/grep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/grep.c -------------------------------------------------------------------------------- /librz/cons/html.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/html.c -------------------------------------------------------------------------------- /librz/cons/hud.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/hud.c -------------------------------------------------------------------------------- /librz/cons/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/input.c -------------------------------------------------------------------------------- /librz/cons/less.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/less.c -------------------------------------------------------------------------------- /librz/cons/line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/line.c -------------------------------------------------------------------------------- /librz/cons/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/output.c -------------------------------------------------------------------------------- /librz/cons/pager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/pager.c -------------------------------------------------------------------------------- /librz/cons/pal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/pal.c -------------------------------------------------------------------------------- /librz/cons/prompt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/prompt.c -------------------------------------------------------------------------------- /librz/cons/rgb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/cons/rgb.c -------------------------------------------------------------------------------- /librz/core/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /librz/core/agraph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/agraph.c -------------------------------------------------------------------------------- /librz/core/basefind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/basefind.c -------------------------------------------------------------------------------- /librz/core/cagraph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/cagraph.c -------------------------------------------------------------------------------- /librz/core/carg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/carg.c -------------------------------------------------------------------------------- /librz/core/casm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/casm.c -------------------------------------------------------------------------------- /librz/core/cbin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/cbin.c -------------------------------------------------------------------------------- /librz/core/cbounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/cbounds.c -------------------------------------------------------------------------------- /librz/core/cconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/cconfig.c -------------------------------------------------------------------------------- /librz/core/ccrypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/ccrypto.c -------------------------------------------------------------------------------- /librz/core/cdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/cdebug.c -------------------------------------------------------------------------------- /librz/core/cesil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/cesil.c -------------------------------------------------------------------------------- /librz/core/cfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/cfile.c -------------------------------------------------------------------------------- /librz/core/cflag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/cflag.c -------------------------------------------------------------------------------- /librz/core/cgraph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/cgraph.c -------------------------------------------------------------------------------- /librz/core/chash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/chash.c -------------------------------------------------------------------------------- /librz/core/cheap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/cheap.c -------------------------------------------------------------------------------- /librz/core/cil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/cil.c -------------------------------------------------------------------------------- /librz/core/cio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/cio.c -------------------------------------------------------------------------------- /librz/core/clang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/clang.c -------------------------------------------------------------------------------- /librz/core/cmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/cmark.c -------------------------------------------------------------------------------- /librz/core/cmd/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/cmd/cmd.c -------------------------------------------------------------------------------- /librz/core/cmeta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/cmeta.c -------------------------------------------------------------------------------- /librz/core/cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/cmp.c -------------------------------------------------------------------------------- /librz/core/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/core.c -------------------------------------------------------------------------------- /librz/core/cparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/cparser.c -------------------------------------------------------------------------------- /librz/core/cpdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/cpdb.c -------------------------------------------------------------------------------- /librz/core/cplugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/cplugin.c -------------------------------------------------------------------------------- /librz/core/cprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/cprint.c -------------------------------------------------------------------------------- /librz/core/creg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/creg.c -------------------------------------------------------------------------------- /librz/core/csearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/csearch.c -------------------------------------------------------------------------------- /librz/core/csign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/csign.c -------------------------------------------------------------------------------- /librz/core/csyscall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/csyscall.c -------------------------------------------------------------------------------- /librz/core/ctypes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/ctypes.c -------------------------------------------------------------------------------- /librz/core/cvfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/cvfile.c -------------------------------------------------------------------------------- /librz/core/disasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/disasm.c -------------------------------------------------------------------------------- /librz/core/fortune.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/fortune.c -------------------------------------------------------------------------------- /librz/core/golang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/golang.c -------------------------------------------------------------------------------- /librz/core/hack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/hack.c -------------------------------------------------------------------------------- /librz/core/libs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/libs.c -------------------------------------------------------------------------------- /librz/core/project.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/project.c -------------------------------------------------------------------------------- /librz/core/rop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/rop.c -------------------------------------------------------------------------------- /librz/core/rtr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/rtr.c -------------------------------------------------------------------------------- /librz/core/rtr_http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/rtr_http.c -------------------------------------------------------------------------------- /librz/core/seek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/seek.c -------------------------------------------------------------------------------- /librz/core/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/task.c -------------------------------------------------------------------------------- /librz/core/tui/esil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/tui/esil.c -------------------------------------------------------------------------------- /librz/core/tui/hud.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/tui/hud.c -------------------------------------------------------------------------------- /librz/core/tui/tabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/tui/tabs.c -------------------------------------------------------------------------------- /librz/core/tui/vasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/tui/vasm.c -------------------------------------------------------------------------------- /librz/core/yank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/core/yank.c -------------------------------------------------------------------------------- /librz/crypto/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /librz/crypto/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/crypto/crypto.c -------------------------------------------------------------------------------- /librz/crypto/des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/crypto/des.c -------------------------------------------------------------------------------- /librz/debug/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /librz/debug/bp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/debug/bp.c -------------------------------------------------------------------------------- /librz/debug/bp_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/debug/bp_io.c -------------------------------------------------------------------------------- /librz/debug/ddesc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/debug/ddesc.c -------------------------------------------------------------------------------- /librz/debug/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/debug/debug.c -------------------------------------------------------------------------------- /librz/debug/desil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/debug/desil.c -------------------------------------------------------------------------------- /librz/debug/dmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/debug/dmap.c -------------------------------------------------------------------------------- /librz/debug/dreg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/debug/dreg.c -------------------------------------------------------------------------------- /librz/debug/dsignal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/debug/dsignal.c -------------------------------------------------------------------------------- /librz/debug/p/bfvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/debug/p/bfvm.c -------------------------------------------------------------------------------- /librz/debug/p/bfvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/debug/p/bfvm.h -------------------------------------------------------------------------------- /librz/debug/pid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/debug/pid.c -------------------------------------------------------------------------------- /librz/debug/plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/debug/plugin.c -------------------------------------------------------------------------------- /librz/debug/snap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/debug/snap.c -------------------------------------------------------------------------------- /librz/debug/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/debug/trace.c -------------------------------------------------------------------------------- /librz/demangler/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /librz/diff/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /librz/diff/diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/diff/diff.c -------------------------------------------------------------------------------- /librz/diff/distance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/diff/distance.c -------------------------------------------------------------------------------- /librz/egg/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /librz/egg/egg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/egg/egg.c -------------------------------------------------------------------------------- /librz/egg/egg_Cfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/egg/egg_Cfile.c -------------------------------------------------------------------------------- /librz/egg/egg_lang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/egg/egg_lang.c -------------------------------------------------------------------------------- /librz/egg/emit_arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/egg/emit_arm.c -------------------------------------------------------------------------------- /librz/egg/emit_x64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/egg/emit_x64.c -------------------------------------------------------------------------------- /librz/egg/emit_x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/egg/emit_x86.c -------------------------------------------------------------------------------- /librz/egg/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/egg/meson.build -------------------------------------------------------------------------------- /librz/egg/p/egg_cb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/egg/p/egg_cb.c -------------------------------------------------------------------------------- /librz/egg/p/egg_xor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/egg/p/egg_xor.c -------------------------------------------------------------------------------- /librz/egg/rlcc/rlcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/egg/rlcc/rlcc.c -------------------------------------------------------------------------------- /librz/flag/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /librz/flag/d/alloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/flag/d/alloc -------------------------------------------------------------------------------- /librz/flag/d/crypto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/flag/d/crypto -------------------------------------------------------------------------------- /librz/flag/d/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/flag/d/env -------------------------------------------------------------------------------- /librz/flag/d/fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/flag/d/fs -------------------------------------------------------------------------------- /librz/flag/d/network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/flag/d/network -------------------------------------------------------------------------------- /librz/flag/d/process: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/flag/d/process -------------------------------------------------------------------------------- /librz/flag/d/stdout: -------------------------------------------------------------------------------- 1 | ^printf 2 | puts 3 | write 4 | -------------------------------------------------------------------------------- /librz/flag/d/string: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/flag/d/string -------------------------------------------------------------------------------- /librz/flag/d/threads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/flag/d/threads -------------------------------------------------------------------------------- /librz/flag/d/time: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/flag/d/time -------------------------------------------------------------------------------- /librz/flag/flag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/flag/flag.c -------------------------------------------------------------------------------- /librz/flag/tags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/flag/tags.c -------------------------------------------------------------------------------- /librz/flag/zones.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/flag/zones.c -------------------------------------------------------------------------------- /librz/hash/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /librz/hash/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/hash/hash.c -------------------------------------------------------------------------------- /librz/il/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /librz/il/il_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/il/il_events.c -------------------------------------------------------------------------------- /librz/il/il_graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/il/il_graph.c -------------------------------------------------------------------------------- /librz/il/il_opcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/il/il_opcodes.c -------------------------------------------------------------------------------- /librz/il/il_reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/il/il_reg.c -------------------------------------------------------------------------------- /librz/il/il_vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/il/il_vm.c -------------------------------------------------------------------------------- /librz/il/il_vm_eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/il/il_vm_eval.c -------------------------------------------------------------------------------- /librz/il/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/il/meson.build -------------------------------------------------------------------------------- /librz/il/theory_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/il/theory_mem.c -------------------------------------------------------------------------------- /librz/include/rz_bp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/include/rz_bp.h -------------------------------------------------------------------------------- /librz/include/rz_il.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/include/rz_il.h -------------------------------------------------------------------------------- /librz/include/rz_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/include/rz_io.h -------------------------------------------------------------------------------- /librz/include/rz_th.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/include/rz_th.h -------------------------------------------------------------------------------- /librz/io/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/io/README.md -------------------------------------------------------------------------------- /librz/io/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/io/io.c -------------------------------------------------------------------------------- /librz/io/io_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/io/io_cache.c -------------------------------------------------------------------------------- /librz/io/io_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/io/io_desc.c -------------------------------------------------------------------------------- /librz/io/io_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/io/io_fd.c -------------------------------------------------------------------------------- /librz/io/io_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/io/io_map.c -------------------------------------------------------------------------------- /librz/io/io_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/io/io_memory.c -------------------------------------------------------------------------------- /librz/io/io_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/io/io_memory.h -------------------------------------------------------------------------------- /librz/io/io_plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/io/io_plugin.c -------------------------------------------------------------------------------- /librz/io/io_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/io/io_private.h -------------------------------------------------------------------------------- /librz/io/ioutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/io/ioutils.c -------------------------------------------------------------------------------- /librz/io/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/io/meson.build -------------------------------------------------------------------------------- /librz/io/p/io_ar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/io/p/io_ar.c -------------------------------------------------------------------------------- /librz/io/p/io_bfdbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/io/p/io_bfdbg.c -------------------------------------------------------------------------------- /librz/io/p/io_bochs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/io/p/io_bochs.c -------------------------------------------------------------------------------- /librz/io/p/io_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/io/p/io_debug.c -------------------------------------------------------------------------------- /librz/io/p/io_dmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/io/p/io_dmp.c -------------------------------------------------------------------------------- /librz/io/p/io_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/io/p/io_fd.c -------------------------------------------------------------------------------- /librz/io/p/io_gdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/io/p/io_gdb.c -------------------------------------------------------------------------------- /librz/io/p/io_gzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/io/p/io_gzip.c -------------------------------------------------------------------------------- /librz/io/p/io_http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/io/p/io_http.c -------------------------------------------------------------------------------- /librz/io/p/io_ihex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/io/p/io_ihex.c -------------------------------------------------------------------------------- /librz/io/p/io_mach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/io/p/io_mach.c -------------------------------------------------------------------------------- /librz/io/p/io_null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/io/p/io_null.c -------------------------------------------------------------------------------- /librz/io/p/io_qnx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/io/p/io_qnx.c -------------------------------------------------------------------------------- /librz/io/p/io_rzweb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/io/p/io_rzweb.c -------------------------------------------------------------------------------- /librz/io/p/io_self.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/io/p/io_self.c -------------------------------------------------------------------------------- /librz/io/p/io_shm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/io/p/io_shm.c -------------------------------------------------------------------------------- /librz/io/p/io_srec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/io/p/io_srec.c -------------------------------------------------------------------------------- /librz/io/p/io_tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/io/p/io_tcp.c -------------------------------------------------------------------------------- /librz/io/p/io_titxt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/io/p/io_titxt.c -------------------------------------------------------------------------------- /librz/io/p/io_w32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/io/p/io_w32.c -------------------------------------------------------------------------------- /librz/io/p/io_winkd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/io/p/io_winkd.c -------------------------------------------------------------------------------- /librz/io/p/io_zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/io/p/io_zip.c -------------------------------------------------------------------------------- /librz/io/p_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/io/p_cache.c -------------------------------------------------------------------------------- /librz/lang/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /librz/lang/lang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/lang/lang.c -------------------------------------------------------------------------------- /librz/lang/p/c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/lang/p/c.c -------------------------------------------------------------------------------- /librz/lang/p/cpipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/lang/p/cpipe.c -------------------------------------------------------------------------------- /librz/lang/p/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/lang/p/lib.c -------------------------------------------------------------------------------- /librz/lang/p/pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/lang/p/pipe.c -------------------------------------------------------------------------------- /librz/magic/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /librz/magic/d/default/firmware: -------------------------------------------------------------------------------- 1 | 0 string HDR0 TRX Firmware Header 2 | -------------------------------------------------------------------------------- /librz/magic/magic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/magic/magic.c -------------------------------------------------------------------------------- /librz/magic/magic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/magic/magic.h -------------------------------------------------------------------------------- /librz/main/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /librz/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/main/main.c -------------------------------------------------------------------------------- /librz/main/rizin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/main/rizin.c -------------------------------------------------------------------------------- /librz/main/rz-asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/main/rz-asm.c -------------------------------------------------------------------------------- /librz/main/rz-ax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/main/rz-ax.c -------------------------------------------------------------------------------- /librz/main/rz-bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/main/rz-bin.c -------------------------------------------------------------------------------- /librz/main/rz-diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/main/rz-diff.c -------------------------------------------------------------------------------- /librz/main/rz-find.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/main/rz-find.c -------------------------------------------------------------------------------- /librz/main/rz-gg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/main/rz-gg.c -------------------------------------------------------------------------------- /librz/main/rz-hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/main/rz-hash.c -------------------------------------------------------------------------------- /librz/main/rz-run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/main/rz-run.c -------------------------------------------------------------------------------- /librz/main/rz-sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/main/rz-sign.c -------------------------------------------------------------------------------- /librz/mark/mark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/mark/mark.c -------------------------------------------------------------------------------- /librz/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/meson.build -------------------------------------------------------------------------------- /librz/plugins.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/plugins.h.in -------------------------------------------------------------------------------- /librz/reg/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /librz/reg/arena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/reg/arena.c -------------------------------------------------------------------------------- /librz/reg/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/reg/meson.build -------------------------------------------------------------------------------- /librz/reg/profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/reg/profile.c -------------------------------------------------------------------------------- /librz/reg/rcond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/reg/rcond.c -------------------------------------------------------------------------------- /librz/reg/reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/reg/reg.c -------------------------------------------------------------------------------- /librz/reg/rvalue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/reg/rvalue.c -------------------------------------------------------------------------------- /librz/search/regexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/search/regexp.c -------------------------------------------------------------------------------- /librz/search/search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/search/search.c -------------------------------------------------------------------------------- /librz/sign/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /librz/sign/create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/sign/create.c -------------------------------------------------------------------------------- /librz/sign/flirt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/sign/flirt.c -------------------------------------------------------------------------------- /librz/sign/pat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/sign/pat.c -------------------------------------------------------------------------------- /librz/sign/sigdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/sign/sigdb.c -------------------------------------------------------------------------------- /librz/sign/sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/sign/sign.c -------------------------------------------------------------------------------- /librz/socket/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /librz/socket/run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/socket/run.c -------------------------------------------------------------------------------- /librz/socket/rzpipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/socket/rzpipe.c -------------------------------------------------------------------------------- /librz/socket/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/socket/socket.c -------------------------------------------------------------------------------- /librz/syscall/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /librz/type/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /librz/type/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/type/base.c -------------------------------------------------------------------------------- /librz/type/format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/type/format.c -------------------------------------------------------------------------------- /librz/type/function.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/type/function.c -------------------------------------------------------------------------------- /librz/type/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/type/helpers.c -------------------------------------------------------------------------------- /librz/type/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/type/path.c -------------------------------------------------------------------------------- /librz/type/type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/type/type.c -------------------------------------------------------------------------------- /librz/util/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/README.md -------------------------------------------------------------------------------- /librz/util/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/alloc.c -------------------------------------------------------------------------------- /librz/util/asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/asn1.c -------------------------------------------------------------------------------- /librz/util/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/assert.c -------------------------------------------------------------------------------- /librz/util/astr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/astr.c -------------------------------------------------------------------------------- /librz/util/axml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/axml.c -------------------------------------------------------------------------------- /librz/util/base16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/base16.c -------------------------------------------------------------------------------- /librz/util/base32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/base32.c -------------------------------------------------------------------------------- /librz/util/base36.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/base36.c -------------------------------------------------------------------------------- /librz/util/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/base64.c -------------------------------------------------------------------------------- /librz/util/base85.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/base85.c -------------------------------------------------------------------------------- /librz/util/base91.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/base91.c -------------------------------------------------------------------------------- /librz/util/big-gmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/big-gmp.c -------------------------------------------------------------------------------- /librz/util/big-ssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/big-ssl.c -------------------------------------------------------------------------------- /librz/util/big.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/big.c -------------------------------------------------------------------------------- /librz/util/bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/bits.c -------------------------------------------------------------------------------- /librz/util/buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/buf.c -------------------------------------------------------------------------------- /librz/util/buf_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/buf_file.c -------------------------------------------------------------------------------- /librz/util/buf_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/buf_io.c -------------------------------------------------------------------------------- /librz/util/buf_mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/buf_mmap.c -------------------------------------------------------------------------------- /librz/util/buf_ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/buf_ref.c -------------------------------------------------------------------------------- /librz/util/calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/calc.c -------------------------------------------------------------------------------- /librz/util/chmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/chmod.c -------------------------------------------------------------------------------- /librz/util/debruijn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/debruijn.c -------------------------------------------------------------------------------- /librz/util/ebcdic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/ebcdic.c -------------------------------------------------------------------------------- /librz/util/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/event.c -------------------------------------------------------------------------------- /librz/util/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/file.c -------------------------------------------------------------------------------- /librz/util/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/getopt.c -------------------------------------------------------------------------------- /librz/util/graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/graph.c -------------------------------------------------------------------------------- /librz/util/hex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/hex.c -------------------------------------------------------------------------------- /librz/util/ht/ht_pp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/ht/ht_pp.c -------------------------------------------------------------------------------- /librz/util/ht/ht_pu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/ht/ht_pu.c -------------------------------------------------------------------------------- /librz/util/ht/ht_sp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/ht/ht_sp.c -------------------------------------------------------------------------------- /librz/util/ht/ht_ss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/ht/ht_ss.c -------------------------------------------------------------------------------- /librz/util/ht/ht_su.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/ht/ht_su.c -------------------------------------------------------------------------------- /librz/util/ht/ht_up.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/ht/ht_up.c -------------------------------------------------------------------------------- /librz/util/ht/ht_uu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/ht/ht_uu.c -------------------------------------------------------------------------------- /librz/util/idpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/idpool.c -------------------------------------------------------------------------------- /librz/util/iterator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/iterator.c -------------------------------------------------------------------------------- /librz/util/itv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/itv.c -------------------------------------------------------------------------------- /librz/util/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/lib.c -------------------------------------------------------------------------------- /librz/util/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/list.c -------------------------------------------------------------------------------- /librz/util/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/log.c -------------------------------------------------------------------------------- /librz/util/luhn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/luhn.c -------------------------------------------------------------------------------- /librz/util/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/mem.c -------------------------------------------------------------------------------- /librz/util/name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/name.c -------------------------------------------------------------------------------- /librz/util/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/path.c -------------------------------------------------------------------------------- /librz/util/pj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/pj.c -------------------------------------------------------------------------------- /librz/util/pkcs7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/pkcs7.c -------------------------------------------------------------------------------- /librz/util/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/print.c -------------------------------------------------------------------------------- /librz/util/protobuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/protobuf.c -------------------------------------------------------------------------------- /librz/util/punycode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/punycode.c -------------------------------------------------------------------------------- /librz/util/range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/range.c -------------------------------------------------------------------------------- /librz/util/rbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/rbtree.c -------------------------------------------------------------------------------- /librz/util/regex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/regex.c -------------------------------------------------------------------------------- /librz/util/set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/set.c -------------------------------------------------------------------------------- /librz/util/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/signal.c -------------------------------------------------------------------------------- /librz/util/skiplist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/skiplist.c -------------------------------------------------------------------------------- /librz/util/skyline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/skyline.c -------------------------------------------------------------------------------- /librz/util/spaces.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/spaces.c -------------------------------------------------------------------------------- /librz/util/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/stack.c -------------------------------------------------------------------------------- /librz/util/str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/str.c -------------------------------------------------------------------------------- /librz/util/str_trim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/str_trim.c -------------------------------------------------------------------------------- /librz/util/strbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/strbuf.c -------------------------------------------------------------------------------- /librz/util/strpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/strpool.c -------------------------------------------------------------------------------- /librz/util/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/sys.c -------------------------------------------------------------------------------- /librz/util/syscmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/syscmd.c -------------------------------------------------------------------------------- /librz/util/table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/table.c -------------------------------------------------------------------------------- /librz/util/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/thread.c -------------------------------------------------------------------------------- /librz/util/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/thread.h -------------------------------------------------------------------------------- /librz/util/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/time.c -------------------------------------------------------------------------------- /librz/util/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/tree.c -------------------------------------------------------------------------------- /librz/util/uleb128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/uleb128.c -------------------------------------------------------------------------------- /librz/util/unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/unicode.c -------------------------------------------------------------------------------- /librz/util/unum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/unum.c -------------------------------------------------------------------------------- /librz/util/utf16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/utf16.c -------------------------------------------------------------------------------- /librz/util/utf32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/utf32.c -------------------------------------------------------------------------------- /librz/util/utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/utf8.c -------------------------------------------------------------------------------- /librz/util/vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/vector.c -------------------------------------------------------------------------------- /librz/util/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/version.c -------------------------------------------------------------------------------- /librz/util/w32-sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/w32-sys.c -------------------------------------------------------------------------------- /librz/util/x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/x509.c -------------------------------------------------------------------------------- /librz/util/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/librz/util/x509.h -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/meson_options.txt -------------------------------------------------------------------------------- /snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/snapcraft.yaml -------------------------------------------------------------------------------- /subprojects/lz4.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/subprojects/lz4.wrap -------------------------------------------------------------------------------- /subprojects/mpc/mpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/subprojects/mpc/mpc.c -------------------------------------------------------------------------------- /subprojects/mpc/mpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/subprojects/mpc/mpc.h -------------------------------------------------------------------------------- /subprojects/nettle/.clang-format: -------------------------------------------------------------------------------- 1 | { "DisableFormat": true } 2 | -------------------------------------------------------------------------------- /subprojects/packagefiles/xz-5.8.1/src/meson.build: -------------------------------------------------------------------------------- 1 | subdir('liblzma') 2 | -------------------------------------------------------------------------------- /subprojects/rzar/ar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/subprojects/rzar/ar.c -------------------------------------------------------------------------------- /subprojects/rzar/ar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/subprojects/rzar/ar.h -------------------------------------------------------------------------------- /subprojects/zlib.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/subprojects/zlib.wrap -------------------------------------------------------------------------------- /subprojects/zstd.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/subprojects/zstd.wrap -------------------------------------------------------------------------------- /sys/clang-format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/sys/clang-format.py -------------------------------------------------------------------------------- /sys/create_tags_rz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/sys/create_tags_rz.py -------------------------------------------------------------------------------- /sys/lsan_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/sys/lsan_check.py -------------------------------------------------------------------------------- /sys/macos-cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/sys/macos-cert.sh -------------------------------------------------------------------------------- /sys/rzshell_which.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/sys/rzshell_which.py -------------------------------------------------------------------------------- /sys/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/sys/version.py -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/.gitignore -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/README.md -------------------------------------------------------------------------------- /test/db/analysis/6502: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/analysis/6502 -------------------------------------------------------------------------------- /test/db/analysis/8051: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/analysis/8051 -------------------------------------------------------------------------------- /test/db/analysis/arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/analysis/arc -------------------------------------------------------------------------------- /test/db/analysis/arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/analysis/arm -------------------------------------------------------------------------------- /test/db/analysis/avr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/analysis/avr -------------------------------------------------------------------------------- /test/db/analysis/cris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/analysis/cris -------------------------------------------------------------------------------- /test/db/analysis/gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/analysis/gb -------------------------------------------------------------------------------- /test/db/analysis/java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/analysis/java -------------------------------------------------------------------------------- /test/db/analysis/luac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/analysis/luac -------------------------------------------------------------------------------- /test/db/analysis/m68k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/analysis/m68k -------------------------------------------------------------------------------- /test/db/analysis/mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/analysis/mips -------------------------------------------------------------------------------- /test/db/analysis/null: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/analysis/null -------------------------------------------------------------------------------- /test/db/analysis/path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/analysis/path -------------------------------------------------------------------------------- /test/db/analysis/pic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/analysis/pic -------------------------------------------------------------------------------- /test/db/analysis/ppc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/analysis/ppc -------------------------------------------------------------------------------- /test/db/analysis/rl78: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/analysis/rl78 -------------------------------------------------------------------------------- /test/db/analysis/rx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/analysis/rx -------------------------------------------------------------------------------- /test/db/analysis/sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/analysis/sh -------------------------------------------------------------------------------- /test/db/analysis/snes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/analysis/snes -------------------------------------------------------------------------------- /test/db/analysis/sysz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/analysis/sysz -------------------------------------------------------------------------------- /test/db/analysis/v810: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/analysis/v810 -------------------------------------------------------------------------------- /test/db/analysis/v850: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/analysis/v850 -------------------------------------------------------------------------------- /test/db/analysis/vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/analysis/vars -------------------------------------------------------------------------------- /test/db/analysis/xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/analysis/xap -------------------------------------------------------------------------------- /test/db/analysis/z80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/analysis/z80 -------------------------------------------------------------------------------- /test/db/asm/6502: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/asm/6502 -------------------------------------------------------------------------------- /test/db/asm/8051: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/asm/8051 -------------------------------------------------------------------------------- /test/db/asm/arc_16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/asm/arc_16 -------------------------------------------------------------------------------- /test/db/asm/arc_32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/asm/arc_32 -------------------------------------------------------------------------------- /test/db/asm/arm_16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/asm/arm_16 -------------------------------------------------------------------------------- /test/db/asm/arm_32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/asm/arm_32 -------------------------------------------------------------------------------- /test/db/asm/arm_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/asm/arm_64 -------------------------------------------------------------------------------- /test/db/asm/avr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/asm/avr -------------------------------------------------------------------------------- /test/db/asm/bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/asm/bf -------------------------------------------------------------------------------- /test/db/asm/chip8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/asm/chip8 -------------------------------------------------------------------------------- /test/db/asm/cil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/asm/cil -------------------------------------------------------------------------------- /test/db/asm/cr16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/asm/cr16 -------------------------------------------------------------------------------- /test/db/asm/dalvik: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/asm/dalvik -------------------------------------------------------------------------------- /test/db/asm/ebc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/asm/ebc -------------------------------------------------------------------------------- /test/db/asm/gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/asm/gb -------------------------------------------------------------------------------- /test/db/asm/h8300: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/asm/h8300 -------------------------------------------------------------------------------- /test/db/asm/h8500: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/asm/h8500 -------------------------------------------------------------------------------- /test/db/asm/hexagon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/asm/hexagon -------------------------------------------------------------------------------- /test/db/asm/i4004: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/asm/i4004 -------------------------------------------------------------------------------- /test/db/asm/java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/asm/java -------------------------------------------------------------------------------- /test/db/asm/lh5801: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/asm/lh5801 -------------------------------------------------------------------------------- /test/db/asm/msp430: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/asm/msp430 -------------------------------------------------------------------------------- /test/db/asm/or1k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/asm/or1k -------------------------------------------------------------------------------- /test/db/asm/ppc_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/asm/ppc_64 -------------------------------------------------------------------------------- /test/db/asm/riscv_32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/asm/riscv_32 -------------------------------------------------------------------------------- /test/db/asm/rl78: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/asm/rl78 -------------------------------------------------------------------------------- /test/db/asm/rx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/asm/rx -------------------------------------------------------------------------------- /test/db/asm/sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/asm/sh -------------------------------------------------------------------------------- /test/db/asm/snes_16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/asm/snes_16 -------------------------------------------------------------------------------- /test/db/asm/spc700: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/asm/spc700 -------------------------------------------------------------------------------- /test/db/asm/tricore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/asm/tricore -------------------------------------------------------------------------------- /test/db/asm/v810: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/asm/v810 -------------------------------------------------------------------------------- /test/db/asm/v850: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/asm/v850 -------------------------------------------------------------------------------- /test/db/asm/wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/asm/wasm -------------------------------------------------------------------------------- /test/db/asm/x86_16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/asm/x86_16 -------------------------------------------------------------------------------- /test/db/asm/x86_32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/asm/x86_32 -------------------------------------------------------------------------------- /test/db/asm/x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/asm/x86_64 -------------------------------------------------------------------------------- /test/db/asm/xtensa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/asm/xtensa -------------------------------------------------------------------------------- /test/db/asm/z80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/asm/z80 -------------------------------------------------------------------------------- /test/db/cmd/0000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/0000 -------------------------------------------------------------------------------- /test/db/cmd/archs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/archs -------------------------------------------------------------------------------- /test/db/cmd/basic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/basic -------------------------------------------------------------------------------- /test/db/cmd/bitmask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/bitmask -------------------------------------------------------------------------------- /test/db/cmd/bug_3788: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/bug_3788 -------------------------------------------------------------------------------- /test/db/cmd/cmd_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_0 -------------------------------------------------------------------------------- /test/db/cmd/cmd_Ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_Ch -------------------------------------------------------------------------------- /test/db/cmd/cmd_a8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_a8 -------------------------------------------------------------------------------- /test/db/cmd/cmd_aL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_aL -------------------------------------------------------------------------------- /test/db/cmd/cmd_aae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_aae -------------------------------------------------------------------------------- /test/db/cmd/cmd_ab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_ab -------------------------------------------------------------------------------- /test/db/cmd/cmd_ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_ac -------------------------------------------------------------------------------- /test/db/cmd/cmd_acll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_acll -------------------------------------------------------------------------------- /test/db/cmd/cmd_ad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_ad -------------------------------------------------------------------------------- /test/db/cmd/cmd_aea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_aea -------------------------------------------------------------------------------- /test/db/cmd/cmd_aecb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_aecb -------------------------------------------------------------------------------- /test/db/cmd/cmd_aek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_aek -------------------------------------------------------------------------------- /test/db/cmd/cmd_aes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_aes -------------------------------------------------------------------------------- /test/db/cmd/cmd_aesb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_aesb -------------------------------------------------------------------------------- /test/db/cmd/cmd_aex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_aex -------------------------------------------------------------------------------- /test/db/cmd/cmd_aez: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_aez -------------------------------------------------------------------------------- /test/db/cmd/cmd_af: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_af -------------------------------------------------------------------------------- /test/db/cmd/cmd_afb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_afb -------------------------------------------------------------------------------- /test/db/cmd/cmd_afcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_afcl -------------------------------------------------------------------------------- /test/db/cmd/cmd_afl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_afl -------------------------------------------------------------------------------- /test/db/cmd/cmd_afn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_afn -------------------------------------------------------------------------------- /test/db/cmd/cmd_afv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_afv -------------------------------------------------------------------------------- /test/db/cmd/cmd_afvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_afvd -------------------------------------------------------------------------------- /test/db/cmd/cmd_ag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_ag -------------------------------------------------------------------------------- /test/db/cmd/cmd_agC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_agC -------------------------------------------------------------------------------- /test/db/cmd/cmd_agf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_agf -------------------------------------------------------------------------------- /test/db/cmd/cmd_ah: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_ah -------------------------------------------------------------------------------- /test/db/cmd/cmd_ahi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_ahi -------------------------------------------------------------------------------- /test/db/cmd/cmd_aii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_aii -------------------------------------------------------------------------------- /test/db/cmd/cmd_alias: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_alias -------------------------------------------------------------------------------- /test/db/cmd/cmd_an: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_an -------------------------------------------------------------------------------- /test/db/cmd/cmd_ao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_ao -------------------------------------------------------------------------------- /test/db/cmd/cmd_ar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_ar -------------------------------------------------------------------------------- /test/db/cmd/cmd_ara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_ara -------------------------------------------------------------------------------- /test/db/cmd/cmd_arp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_arp -------------------------------------------------------------------------------- /test/db/cmd/cmd_as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_as -------------------------------------------------------------------------------- /test/db/cmd/cmd_asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_asn1 -------------------------------------------------------------------------------- /test/db/cmd/cmd_att: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_att -------------------------------------------------------------------------------- /test/db/cmd/cmd_av: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_av -------------------------------------------------------------------------------- /test/db/cmd/cmd_avD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_avD -------------------------------------------------------------------------------- /test/db/cmd/cmd_avg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_avg -------------------------------------------------------------------------------- /test/db/cmd/cmd_avr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_avr -------------------------------------------------------------------------------- /test/db/cmd/cmd_avx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_avx -------------------------------------------------------------------------------- /test/db/cmd/cmd_ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_ax -------------------------------------------------------------------------------- /test/db/cmd/cmd_b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_b -------------------------------------------------------------------------------- /test/db/cmd/cmd_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_c -------------------------------------------------------------------------------- /test/db/cmd/cmd_cond: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_cond -------------------------------------------------------------------------------- /test/db/cmd/cmd_dh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_dh -------------------------------------------------------------------------------- /test/db/cmd/cmd_dmh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_dmh -------------------------------------------------------------------------------- /test/db/cmd/cmd_dr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_dr -------------------------------------------------------------------------------- /test/db/cmd/cmd_ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_ds -------------------------------------------------------------------------------- /test/db/cmd/cmd_ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_ec -------------------------------------------------------------------------------- /test/db/cmd/cmd_egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_egg -------------------------------------------------------------------------------- /test/db/cmd/cmd_env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_env -------------------------------------------------------------------------------- /test/db/cmd/cmd_eval: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_eval -------------------------------------------------------------------------------- /test/db/cmd/cmd_flags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_flags -------------------------------------------------------------------------------- /test/db/cmd/cmd_graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_graph -------------------------------------------------------------------------------- /test/db/cmd/cmd_hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_hash -------------------------------------------------------------------------------- /test/db/cmd/cmd_help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_help -------------------------------------------------------------------------------- /test/db/cmd/cmd_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_i -------------------------------------------------------------------------------- /test/db/cmd/cmd_idp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_idp -------------------------------------------------------------------------------- /test/db/cmd/cmd_json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_json -------------------------------------------------------------------------------- /test/db/cmd/cmd_k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_k -------------------------------------------------------------------------------- /test/db/cmd/cmd_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_list -------------------------------------------------------------------------------- /test/db/cmd/cmd_mark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_mark -------------------------------------------------------------------------------- /test/db/cmd/cmd_math: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_math -------------------------------------------------------------------------------- /test/db/cmd/cmd_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_meta -------------------------------------------------------------------------------- /test/db/cmd/cmd_open: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_open -------------------------------------------------------------------------------- /test/db/cmd/cmd_p-: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_p- -------------------------------------------------------------------------------- /test/db/cmd/cmd_p6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_p6 -------------------------------------------------------------------------------- /test/db/cmd/cmd_pB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_pB -------------------------------------------------------------------------------- /test/db/cmd/cmd_pFb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_pFb -------------------------------------------------------------------------------- /test/db/cmd/cmd_pa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_pa -------------------------------------------------------------------------------- /test/db/cmd/cmd_pad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_pad -------------------------------------------------------------------------------- /test/db/cmd/cmd_pae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_pae -------------------------------------------------------------------------------- /test/db/cmd/cmd_pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_pc -------------------------------------------------------------------------------- /test/db/cmd/cmd_pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_pd -------------------------------------------------------------------------------- /test/db/cmd/cmd_pd2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_pd2 -------------------------------------------------------------------------------- /test/db/cmd/cmd_pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_pde -------------------------------------------------------------------------------- /test/db/cmd/cmd_pdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_pdj -------------------------------------------------------------------------------- /test/db/cmd/cmd_pdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_pdr -------------------------------------------------------------------------------- /test/db/cmd/cmd_pf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_pf -------------------------------------------------------------------------------- /test/db/cmd/cmd_pf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_pf2 -------------------------------------------------------------------------------- /test/db/cmd/cmd_pfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_pfd -------------------------------------------------------------------------------- /test/db/cmd/cmd_ph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_ph -------------------------------------------------------------------------------- /test/db/cmd/cmd_pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_pi -------------------------------------------------------------------------------- /test/db/cmd/cmd_pif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_pif -------------------------------------------------------------------------------- /test/db/cmd/cmd_pipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_pipe -------------------------------------------------------------------------------- /test/db/cmd/cmd_pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_pix -------------------------------------------------------------------------------- /test/db/cmd/cmd_plf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_plf -------------------------------------------------------------------------------- /test/db/cmd/cmd_print: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_print -------------------------------------------------------------------------------- /test/db/cmd/cmd_ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_ps -------------------------------------------------------------------------------- /test/db/cmd/cmd_psj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_psj -------------------------------------------------------------------------------- /test/db/cmd/cmd_pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_pt -------------------------------------------------------------------------------- /test/db/cmd/cmd_pv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_pv -------------------------------------------------------------------------------- /test/db/cmd/cmd_px: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_px -------------------------------------------------------------------------------- /test/db/cmd/cmd_pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_pxd -------------------------------------------------------------------------------- /test/db/cmd/cmd_pxw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_pxw -------------------------------------------------------------------------------- /test/db/cmd/cmd_r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_r -------------------------------------------------------------------------------- /test/db/cmd/cmd_rop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_rop -------------------------------------------------------------------------------- /test/db/cmd/cmd_seek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_seek -------------------------------------------------------------------------------- /test/db/cmd/cmd_shift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_shift -------------------------------------------------------------------------------- /test/db/cmd/cmd_task: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_task -------------------------------------------------------------------------------- /test/db/cmd/cmd_tc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_tc -------------------------------------------------------------------------------- /test/db/cmd/cmd_tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_tcc -------------------------------------------------------------------------------- /test/db/cmd/cmd_to: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_to -------------------------------------------------------------------------------- /test/db/cmd/cmd_w: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_w -------------------------------------------------------------------------------- /test/db/cmd/cmd_wD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_wD -------------------------------------------------------------------------------- /test/db/cmd/cmd_wfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_wfs -------------------------------------------------------------------------------- /test/db/cmd/cmd_wox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_wox -------------------------------------------------------------------------------- /test/db/cmd/cmd_yank: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmd_yank -------------------------------------------------------------------------------- /test/db/cmd/cmds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/cmds -------------------------------------------------------------------------------- /test/db/cmd/comments: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/comments -------------------------------------------------------------------------------- /test/db/cmd/data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/data -------------------------------------------------------------------------------- /test/db/cmd/describe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/describe -------------------------------------------------------------------------------- /test/db/cmd/dwarf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/dwarf -------------------------------------------------------------------------------- /test/db/cmd/echo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/echo -------------------------------------------------------------------------------- /test/db/cmd/egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/egg -------------------------------------------------------------------------------- /test/db/cmd/elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/elf -------------------------------------------------------------------------------- /test/db/cmd/err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/err -------------------------------------------------------------------------------- /test/db/cmd/feat_grep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/feat_grep -------------------------------------------------------------------------------- /test/db/cmd/feat_yank: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/feat_yank -------------------------------------------------------------------------------- /test/db/cmd/hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/hash -------------------------------------------------------------------------------- /test/db/cmd/hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/hex -------------------------------------------------------------------------------- /test/db/cmd/lea_intel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/lea_intel -------------------------------------------------------------------------------- /test/db/cmd/m68k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/m68k -------------------------------------------------------------------------------- /test/db/cmd/malloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/malloc -------------------------------------------------------------------------------- /test/db/cmd/manyundo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/manyundo -------------------------------------------------------------------------------- /test/db/cmd/md5sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/md5sha1 -------------------------------------------------------------------------------- /test/db/cmd/metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/metadata -------------------------------------------------------------------------------- /test/db/cmd/midbb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/midbb -------------------------------------------------------------------------------- /test/db/cmd/midflags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/midflags -------------------------------------------------------------------------------- /test/db/cmd/noreturn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/noreturn -------------------------------------------------------------------------------- /test/db/cmd/print: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/print -------------------------------------------------------------------------------- /test/db/cmd/print_bug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/print_bug -------------------------------------------------------------------------------- /test/db/cmd/project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/project -------------------------------------------------------------------------------- /test/db/cmd/regexp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/regexp -------------------------------------------------------------------------------- /test/db/cmd/seekbug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/seekbug -------------------------------------------------------------------------------- /test/db/cmd/shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/shell -------------------------------------------------------------------------------- /test/db/cmd/sidbug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/sidbug -------------------------------------------------------------------------------- /test/db/cmd/spaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/spaces -------------------------------------------------------------------------------- /test/db/cmd/sugar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/sugar -------------------------------------------------------------------------------- /test/db/cmd/tables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/tables -------------------------------------------------------------------------------- /test/db/cmd/types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/types -------------------------------------------------------------------------------- /test/db/cmd/undoredo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/undoredo -------------------------------------------------------------------------------- /test/db/cmd/unified: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/unified -------------------------------------------------------------------------------- /test/db/cmd/utf32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/utf32 -------------------------------------------------------------------------------- /test/db/cmd/va: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/va -------------------------------------------------------------------------------- /test/db/cmd/warnings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/warnings -------------------------------------------------------------------------------- /test/db/cmd/write: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/cmd/write -------------------------------------------------------------------------------- /test/db/esil/6502: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/esil/6502 -------------------------------------------------------------------------------- /test/db/esil/8051: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/esil/8051 -------------------------------------------------------------------------------- /test/db/esil/apple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/esil/apple -------------------------------------------------------------------------------- /test/db/esil/arm_16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/esil/arm_16 -------------------------------------------------------------------------------- /test/db/esil/arm_32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/esil/arm_32 -------------------------------------------------------------------------------- /test/db/esil/arm_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/esil/arm_64 -------------------------------------------------------------------------------- /test/db/esil/avr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/esil/avr -------------------------------------------------------------------------------- /test/db/esil/cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/esil/cmp -------------------------------------------------------------------------------- /test/db/esil/cond: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/esil/cond -------------------------------------------------------------------------------- /test/db/esil/esil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/esil/esil -------------------------------------------------------------------------------- /test/db/esil/intreg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/esil/intreg -------------------------------------------------------------------------------- /test/db/esil/math: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/esil/math -------------------------------------------------------------------------------- /test/db/esil/mips_32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/esil/mips_32 -------------------------------------------------------------------------------- /test/db/esil/ppc_32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/esil/ppc_32 -------------------------------------------------------------------------------- /test/db/esil/riscv_32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/esil/riscv_32 -------------------------------------------------------------------------------- /test/db/esil/riscv_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/esil/riscv_64 -------------------------------------------------------------------------------- /test/db/esil/sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/esil/sh -------------------------------------------------------------------------------- /test/db/esil/x86_16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/esil/x86_16 -------------------------------------------------------------------------------- /test/db/esil/x86_32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/esil/x86_32 -------------------------------------------------------------------------------- /test/db/esil/x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/esil/x86_64 -------------------------------------------------------------------------------- /test/db/extras/util: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/extras/util -------------------------------------------------------------------------------- /test/db/formats/ar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/ar -------------------------------------------------------------------------------- /test/db/formats/avr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/avr -------------------------------------------------------------------------------- /test/db/formats/bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/bf -------------------------------------------------------------------------------- /test/db/formats/bflt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/bflt -------------------------------------------------------------------------------- /test/db/formats/cgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/cgc -------------------------------------------------------------------------------- /test/db/formats/coff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/coff -------------------------------------------------------------------------------- /test/db/formats/dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/dex -------------------------------------------------------------------------------- /test/db/formats/dol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/dol -------------------------------------------------------------------------------- /test/db/formats/gba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/gba -------------------------------------------------------------------------------- /test/db/formats/gbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/gbc -------------------------------------------------------------------------------- /test/db/formats/java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/java -------------------------------------------------------------------------------- /test/db/formats/le: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/le -------------------------------------------------------------------------------- /test/db/formats/mdmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/mdmp -------------------------------------------------------------------------------- /test/db/formats/mdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/mdt -------------------------------------------------------------------------------- /test/db/formats/msil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/msil -------------------------------------------------------------------------------- /test/db/formats/n3ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/n3ds -------------------------------------------------------------------------------- /test/db/formats/ne: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/ne -------------------------------------------------------------------------------- /test/db/formats/nes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/nes -------------------------------------------------------------------------------- /test/db/formats/ninds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/ninds -------------------------------------------------------------------------------- /test/db/formats/nro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/nro -------------------------------------------------------------------------------- /test/db/formats/nso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/nso -------------------------------------------------------------------------------- /test/db/formats/omf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/omf -------------------------------------------------------------------------------- /test/db/formats/pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/pdb -------------------------------------------------------------------------------- /test/db/formats/pe/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/pe/a -------------------------------------------------------------------------------- /test/db/formats/pe/a2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/pe/a2 -------------------------------------------------------------------------------- /test/db/formats/pe/b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/pe/b -------------------------------------------------------------------------------- /test/db/formats/pe/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/pe/c -------------------------------------------------------------------------------- /test/db/formats/pe/mz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/pe/mz -------------------------------------------------------------------------------- /test/db/formats/pe/pe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/pe/pe -------------------------------------------------------------------------------- /test/db/formats/pe/sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/pe/sc -------------------------------------------------------------------------------- /test/db/formats/plan9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/plan9 -------------------------------------------------------------------------------- /test/db/formats/prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/prg -------------------------------------------------------------------------------- /test/db/formats/psx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/psx -------------------------------------------------------------------------------- /test/db/formats/pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/pyc -------------------------------------------------------------------------------- /test/db/formats/qnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/qnx -------------------------------------------------------------------------------- /test/db/formats/sfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/sfc -------------------------------------------------------------------------------- /test/db/formats/smd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/smd -------------------------------------------------------------------------------- /test/db/formats/sms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/sms -------------------------------------------------------------------------------- /test/db/formats/xbe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/xbe -------------------------------------------------------------------------------- /test/db/formats/z64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/z64 -------------------------------------------------------------------------------- /test/db/formats/zimg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/formats/zimg -------------------------------------------------------------------------------- /test/db/io/baddr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/io/baddr -------------------------------------------------------------------------------- /test/db/io/cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/io/cache -------------------------------------------------------------------------------- /test/db/io/ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/io/ff -------------------------------------------------------------------------------- /test/db/io/ihex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/io/ihex -------------------------------------------------------------------------------- /test/db/io/many: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/io/many -------------------------------------------------------------------------------- /test/db/io/maps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/io/maps -------------------------------------------------------------------------------- /test/db/io/neg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/io/neg -------------------------------------------------------------------------------- /test/db/io/om: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/io/om -------------------------------------------------------------------------------- /test/db/io/omp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/io/omp -------------------------------------------------------------------------------- /test/db/io/resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/io/resize -------------------------------------------------------------------------------- /test/db/io/search: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/io/search -------------------------------------------------------------------------------- /test/db/io/sections: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/io/sections -------------------------------------------------------------------------------- /test/db/io/srec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/io/srec -------------------------------------------------------------------------------- /test/db/io/titxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/io/titxt -------------------------------------------------------------------------------- /test/db/io/va: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/io/va -------------------------------------------------------------------------------- /test/db/io/write: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/io/write -------------------------------------------------------------------------------- /test/db/io/zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/io/zip -------------------------------------------------------------------------------- /test/db/json/json1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/json/json1 -------------------------------------------------------------------------------- /test/db/json/json2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/json/json2 -------------------------------------------------------------------------------- /test/db/json/json3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/json/json3 -------------------------------------------------------------------------------- /test/db/json/json4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/json/json4 -------------------------------------------------------------------------------- /test/db/rzil/6502: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/rzil/6502 -------------------------------------------------------------------------------- /test/db/rzil/arm32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/rzil/arm32 -------------------------------------------------------------------------------- /test/db/rzil/arm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/rzil/arm64 -------------------------------------------------------------------------------- /test/db/rzil/avr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/rzil/avr -------------------------------------------------------------------------------- /test/db/rzil/bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/rzil/bf -------------------------------------------------------------------------------- /test/db/rzil/gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/rzil/gb -------------------------------------------------------------------------------- /test/db/rzil/h8300: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/rzil/h8300 -------------------------------------------------------------------------------- /test/db/rzil/hexagon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/rzil/hexagon -------------------------------------------------------------------------------- /test/db/rzil/mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/rzil/mips -------------------------------------------------------------------------------- /test/db/rzil/msp430: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/rzil/msp430 -------------------------------------------------------------------------------- /test/db/rzil/pic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/rzil/pic -------------------------------------------------------------------------------- /test/db/rzil/ppc32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/rzil/ppc32 -------------------------------------------------------------------------------- /test/db/rzil/ppc64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/rzil/ppc64 -------------------------------------------------------------------------------- /test/db/rzil/sparc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/rzil/sparc -------------------------------------------------------------------------------- /test/db/rzil/tricore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/rzil/tricore -------------------------------------------------------------------------------- /test/db/rzil/v810: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/rzil/v810 -------------------------------------------------------------------------------- /test/db/rzil/v850: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/rzil/v850 -------------------------------------------------------------------------------- /test/db/rzil/vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/rzil/vm -------------------------------------------------------------------------------- /test/db/rzil/x86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/rzil/x86 -------------------------------------------------------------------------------- /test/db/rzil/xtensa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/rzil/xtensa -------------------------------------------------------------------------------- /test/db/tools/rz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/tools/rz -------------------------------------------------------------------------------- /test/db/tools/rz_asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/tools/rz_asm -------------------------------------------------------------------------------- /test/db/tools/rz_ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/tools/rz_ax -------------------------------------------------------------------------------- /test/db/tools/rz_bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/tools/rz_bin -------------------------------------------------------------------------------- /test/db/tools/rz_diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/tools/rz_diff -------------------------------------------------------------------------------- /test/db/tools/rz_find: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/tools/rz_find -------------------------------------------------------------------------------- /test/db/tools/rz_gg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/tools/rz_gg -------------------------------------------------------------------------------- /test/db/tools/rz_hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/tools/rz_hash -------------------------------------------------------------------------------- /test/db/tools/rz_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/tools/rz_run -------------------------------------------------------------------------------- /test/db/tools/rz_sign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/tools/rz_sign -------------------------------------------------------------------------------- /test/db/tools/rz_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/db/tools/rz_test -------------------------------------------------------------------------------- /test/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/meson.build -------------------------------------------------------------------------------- /test/scripts/dk_9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/scripts/dk_9.py -------------------------------------------------------------------------------- /test/scripts/keyword: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /test/scripts/no-nl-at-eof.rz: -------------------------------------------------------------------------------- 1 | !!rz-hash -v~commit? 2 | -------------------------------------------------------------------------------- /test/scripts/rztest.spp: -------------------------------------------------------------------------------- 1 | Test 2 | {rizin echo hello world} 3 | Eron 4 | -------------------------------------------------------------------------------- /test/unit/.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | -------------------------------------------------------------------------------- /test/unit/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/unit/meson.build -------------------------------------------------------------------------------- /test/unit/minunit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/unit/minunit.h -------------------------------------------------------------------------------- /test/unit/mock_io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/unit/mock_io.inl -------------------------------------------------------------------------------- /test/unit/test_big.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/unit/test_big.c -------------------------------------------------------------------------------- /test/unit/test_bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/unit/test_bits.c -------------------------------------------------------------------------------- /test/unit/test_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/unit/test_buf.c -------------------------------------------------------------------------------- /test/unit/test_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/unit/test_cmd.c -------------------------------------------------------------------------------- /test/unit/test_cons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/unit/test_cons.c -------------------------------------------------------------------------------- /test/unit/test_diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/unit/test_diff.c -------------------------------------------------------------------------------- /test/unit/test_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/unit/test_file.c -------------------------------------------------------------------------------- /test/unit/test_glob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/unit/test_glob.c -------------------------------------------------------------------------------- /test/unit/test_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/unit/test_hash.c -------------------------------------------------------------------------------- /test/unit/test_hex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/unit/test_hex.c -------------------------------------------------------------------------------- /test/unit/test_ht.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/unit/test_ht.c -------------------------------------------------------------------------------- /test/unit/test_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/unit/test_io.c -------------------------------------------------------------------------------- /test/unit/test_itv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/unit/test_itv.c -------------------------------------------------------------------------------- /test/unit/test_json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/unit/test_json.c -------------------------------------------------------------------------------- /test/unit/test_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/unit/test_list.c -------------------------------------------------------------------------------- /test/unit/test_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/unit/test_log.c -------------------------------------------------------------------------------- /test/unit/test_lzma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/unit/test_lzma.c -------------------------------------------------------------------------------- /test/unit/test_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/unit/test_mem.c -------------------------------------------------------------------------------- /test/unit/test_ovf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/unit/test_ovf.c -------------------------------------------------------------------------------- /test/unit/test_pj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/unit/test_pj.c -------------------------------------------------------------------------------- /test/unit/test_reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/unit/test_reg.c -------------------------------------------------------------------------------- /test/unit/test_rop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/unit/test_rop.c -------------------------------------------------------------------------------- /test/unit/test_run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/unit/test_run.c -------------------------------------------------------------------------------- /test/unit/test_sdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/unit/test_sdb.h -------------------------------------------------------------------------------- /test/unit/test_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/unit/test_str.c -------------------------------------------------------------------------------- /test/unit/test_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/unit/test_task.c -------------------------------------------------------------------------------- /test/unit/test_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/unit/test_tree.c -------------------------------------------------------------------------------- /test/unit/test_type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/unit/test_type.c -------------------------------------------------------------------------------- /test/unit/test_unum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/unit/test_unum.c -------------------------------------------------------------------------------- /test/unit/test_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/unit/test_util.c -------------------------------------------------------------------------------- /test/unit/test_yank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/test/unit/test_yank.c -------------------------------------------------------------------------------- /travis-extract-var.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/travis-extract-var.sh -------------------------------------------------------------------------------- /travis-script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/rizin/HEAD/travis-script --------------------------------------------------------------------------------