├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── VERSION ├── docker ├── Dockerfile ├── build.sh └── test.sh ├── extra ├── analysis │ ├── block_analysis.py │ ├── build_multigraph.py │ ├── db_commit_blocks.py │ ├── function_analysis.py │ └── loop_analysis.py ├── byteweight │ ├── README │ ├── _oasis │ ├── byte.ml │ ├── byteweight.ml │ ├── byteweight.mli │ ├── dism.ml │ ├── mock.ml │ ├── normalize.ml │ ├── train.ml │ ├── trie.ml │ └── trie.mli ├── cda │ ├── cachegen.py │ ├── cacheserver.py │ ├── cda_build.sh │ ├── cda_config.py │ ├── clang │ │ ├── __init__.py │ │ ├── cindex.py │ │ └── enumerations.py │ ├── clang_build.sh │ ├── include.tar.gz │ └── static │ │ ├── cda.css │ │ ├── cda.js │ │ ├── jquery-2.1.0.js │ │ ├── jquery.scrollTo.min.js │ │ └── socket.io.min.js ├── install.bat ├── llvmpatch │ └── c-disasm-mcinst ├── middleware │ ├── dump_log.py │ ├── qira_memory.py │ └── qira_trace.py ├── newscripts │ └── qira_log.py ├── old_static │ ├── qira_static.py │ └── radare_build.sh ├── parseida │ ├── gdb.sh │ ├── ltracer.sh │ ├── parseidb.py │ └── parseidc.py ├── qemu_mods │ ├── disas.c │ ├── gen_patch.sh │ ├── main.c │ ├── qemu.h │ ├── strace.c │ ├── strace.list │ └── tci.c ├── qira.bat ├── qiradb │ ├── build.sh │ ├── qiradb │ └── qiradb.cc ├── scripts │ ├── db_commit_asm.py │ ├── db_commit_log.py │ ├── db_filter_log.py │ ├── gen_reg_colors.py │ ├── go.sh │ ├── mem_json_extract.py │ ├── mongo.sh │ └── segment_extract.py ├── servers │ ├── memory_server.py │ ├── qira_meteor.py │ └── regmem.js ├── vim │ └── qira.vim ├── web │ └── changeeditor.js ├── website │ ├── css │ │ └── bootstrap.min.css │ ├── dl │ ├── favicon.ico │ ├── img │ │ ├── first_splash.png │ │ ├── haddrbar.png │ │ ├── hexdump.png │ │ ├── ida.png │ │ └── watch.png │ ├── index.html │ ├── js │ │ ├── bootstrap.min.js │ │ └── jquery.min.js │ └── pull.php └── webstatic │ ├── fetch.sh │ └── package.js ├── fetchlibs.sh ├── ida ├── bin │ ├── qira_ida66_linux.plx │ ├── qira_ida66_linux.plx64 │ ├── qira_ida66_mac.pmc │ ├── qira_ida66_mac.pmc64 │ ├── qira_ida66_windows.p64 │ └── qira_ida66_windows.plw ├── build.sh ├── libs │ ├── libZLIB.a │ ├── libwebsockets_static.a │ ├── linux_libwebsockets.a │ └── mac_libwebsockets.a ├── libwebsockets.h ├── mingw_build.sh ├── python │ └── qira.py └── template.cpp ├── install.sh ├── middleware ├── __init__.py ├── arch.py ├── qira.py ├── qira_analysis.py ├── qira_base.py ├── qira_config.py ├── qira_log.py ├── qira_program.py ├── qira_socat.py ├── qira_webserver.py ├── qira_webstatic.py └── qiradb │ ├── .gitignore │ ├── Trace │ ├── Trace.cpp │ ├── Trace.h │ ├── Trace.pxd │ └── __init__.py │ ├── __init__.py │ ├── qiradb.pyx │ └── qiradb.pyxbld ├── qira ├── qira_tests ├── bin │ ├── hello_trace │ └── loop ├── load_page.js ├── test_qira_program_runs.py ├── test_qiradb.py ├── test_static2.py └── testvm │ ├── Vagrantfile │ └── test.sh ├── requirements.txt ├── run_tests.sh ├── run_tests_static.sh ├── static2 ├── TESTING ├── analyzer.py ├── loader.py ├── model.py ├── static2.py └── testing.py ├── tests_auto ├── autogen-extras.sh ├── autogen.py └── source-autogen │ ├── argtest.c │ ├── aslrtest.c │ ├── call_mem.c │ ├── cfgifloop.c │ ├── changetest.c │ ├── demo.c │ ├── echo.c │ ├── forktest.c │ ├── forloop.c │ ├── functest.c │ ├── heapfunn.c │ ├── heaptest.c │ ├── loop.c │ ├── loophaxx.c │ ├── million.c │ ├── procselfmaps.c │ ├── slicingtest.c │ ├── stackframetest.c │ ├── switchtest.c │ └── test64.c ├── tests_manual ├── DBRUMLEY_0004_release ├── algo.c ├── arm-hello ├── arm-loop ├── bap │ └── run_pin.sh ├── bookstore ├── build_asm.sh ├── build_asm64.sh ├── busybox-i686 ├── busybox-mips ├── calltest.asm ├── checksec.sh ├── confound ├── coreutils_O0_echo ├── ctf │ ├── bctf │ │ ├── pattern-29123faa33d7d85163c7165ea6bd1662 │ │ └── qoobee-a53284060b93371c32322f8a522db98d │ ├── csaw │ │ └── exploit2 │ ├── dc2013 │ │ ├── avoir │ │ ├── bookworm │ │ ├── bookworm_noalarm │ │ ├── lonetuna │ │ └── reeses │ ├── dc2014 │ │ ├── eliza-arm │ │ ├── eliza_orig │ │ ├── imap │ │ ├── imapv1 │ │ ├── justify │ │ ├── justify_patched │ │ └── wdub2 │ ├── dc2015 │ │ └── tachikoma │ ├── deepblue-337848eb3f394204c016331a0e1b3b5a │ ├── exploits │ │ ├── ezhp.py │ │ └── ezhp_live.py │ ├── ezhp │ ├── gits2014 │ │ ├── fuzzy-29074b5fa6ed6aebb16390ef122ad61f7b9200ed │ │ ├── gitsmsg-04e8d34d76e3d6dedf79273dad97193377ecb3e3 │ │ └── ti-5b1ab693bc0298f8da4b22612d1a7683ed55d93a │ ├── hitcon │ │ ├── a679df07a8f3a8d590febad45336d031-stkof │ │ ├── hop-62fa7ade9a1fa9254361e69d70e7a7e3.exe │ │ └── ty-b83f0d0edeb8cfad76d30eddc58da139 │ ├── hudak │ ├── irkd │ ├── justify_exploit.py │ ├── membership │ ├── ombdsu │ ├── pctf │ │ └── harry_potter │ ├── secu │ │ ├── notes │ │ ├── numbers │ │ └── ws │ ├── secuquals │ │ └── TearsInWooyaggo │ ├── simple │ └── stkof_exploit.py ├── double_link ├── double_link.c ├── double_link_64 ├── doubleshell ├── doubleshell.c ├── haskell │ ├── hello │ ├── hello.hi │ ├── hello.hs │ └── hello.o ├── hello ├── hello.S ├── hello.c ├── helloc ├── jmpbug.asm ├── loop_macho32 ├── loop_macho64 ├── printesp.c ├── printesp32 ├── printesp64 ├── realworld │ ├── zpipe │ └── zpipe.c ├── stackframetest_x86 ├── suite │ ├── a679df07a8f3a8d590febad45336d031-stkof │ ├── deepblue-337848eb3f394204c016331a0e1b3b5a │ ├── echo64 │ ├── exploit2 │ ├── ezhp │ ├── hop-62fa7ade9a1fa9254361e69d70e7a7e3.exe │ ├── justify │ └── ty-b83f0d0edeb8cfad76d30eddc58da139 ├── supanoob ├── thread_test.c ├── vimplugin │ ├── a.out │ ├── main.c │ ├── swag.c │ └── swag.h ├── vortex │ ├── vortex4 │ └── vortex4.c └── windows │ ├── fibonacci32.exe │ ├── fibonacci64.exe │ ├── fibonacci64 │ ├── 14072703531940 │ ├── 14072703531940_base │ └── 14072703531940_strace │ └── paris.exe ├── tracers ├── angr │ └── angr_trace.py ├── concrete_executor │ ├── bitvector.py │ └── concrete_execution.py ├── pin │ ├── .gitignore │ ├── makefile │ ├── qirapin.cpp │ └── strace │ │ ├── gen_tables.py │ │ ├── osx_gen.py │ │ ├── osx_syscalls.h │ │ ├── syscallents_32.h │ │ ├── syscallents_64.h │ │ └── syscalls.h ├── pin_build.sh ├── qemu │ ├── .gitignore │ ├── qira-aarch64 │ ├── qira-arm │ ├── qira-i386 │ ├── qira-mips │ ├── qira-mipsel │ ├── qira-ppc │ └── qira-x86_64 └── qemu_build.sh └── web ├── client ├── compatibility │ ├── base.js │ ├── bignum.js │ ├── early.js │ ├── fakemeteor.js │ ├── font-awesome.min.css │ ├── head.core.min.js │ ├── highlight.js │ ├── jquery-2.1.1.min.js │ ├── jquery.contextMenu.css │ ├── jquery.contextMenu.js │ ├── jquery.ui.position.js │ ├── socket.io.min.js │ ├── wcDocker.min.css │ └── wcDocker.window-patch.js ├── controls.js ├── fonts │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── haddrline.js ├── ida.js ├── idump.js ├── regmem.js ├── static │ ├── graph.js │ └── static.js ├── strace.js ├── ui.js └── vtimeline.js ├── favicon.ico ├── index.html ├── qira_layout.css ├── qira_new.css ├── qira_theme.css └── qira_types.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.4 2 | -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/docker/build.sh -------------------------------------------------------------------------------- /docker/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/docker/test.sh -------------------------------------------------------------------------------- /extra/analysis/block_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/analysis/block_analysis.py -------------------------------------------------------------------------------- /extra/analysis/build_multigraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/analysis/build_multigraph.py -------------------------------------------------------------------------------- /extra/analysis/db_commit_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/analysis/db_commit_blocks.py -------------------------------------------------------------------------------- /extra/analysis/function_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/analysis/function_analysis.py -------------------------------------------------------------------------------- /extra/analysis/loop_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/analysis/loop_analysis.py -------------------------------------------------------------------------------- /extra/byteweight/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/byteweight/README -------------------------------------------------------------------------------- /extra/byteweight/_oasis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/byteweight/_oasis -------------------------------------------------------------------------------- /extra/byteweight/byte.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/byteweight/byte.ml -------------------------------------------------------------------------------- /extra/byteweight/byteweight.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/byteweight/byteweight.ml -------------------------------------------------------------------------------- /extra/byteweight/byteweight.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/byteweight/byteweight.mli -------------------------------------------------------------------------------- /extra/byteweight/dism.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/byteweight/dism.ml -------------------------------------------------------------------------------- /extra/byteweight/mock.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/byteweight/mock.ml -------------------------------------------------------------------------------- /extra/byteweight/normalize.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/byteweight/normalize.ml -------------------------------------------------------------------------------- /extra/byteweight/train.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/byteweight/train.ml -------------------------------------------------------------------------------- /extra/byteweight/trie.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/byteweight/trie.ml -------------------------------------------------------------------------------- /extra/byteweight/trie.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/byteweight/trie.mli -------------------------------------------------------------------------------- /extra/cda/cachegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/cda/cachegen.py -------------------------------------------------------------------------------- /extra/cda/cacheserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/cda/cacheserver.py -------------------------------------------------------------------------------- /extra/cda/cda_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/cda/cda_build.sh -------------------------------------------------------------------------------- /extra/cda/cda_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/cda/cda_config.py -------------------------------------------------------------------------------- /extra/cda/clang/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/cda/clang/__init__.py -------------------------------------------------------------------------------- /extra/cda/clang/cindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/cda/clang/cindex.py -------------------------------------------------------------------------------- /extra/cda/clang/enumerations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/cda/clang/enumerations.py -------------------------------------------------------------------------------- /extra/cda/clang_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/cda/clang_build.sh -------------------------------------------------------------------------------- /extra/cda/include.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/cda/include.tar.gz -------------------------------------------------------------------------------- /extra/cda/static/cda.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/cda/static/cda.css -------------------------------------------------------------------------------- /extra/cda/static/cda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/cda/static/cda.js -------------------------------------------------------------------------------- /extra/cda/static/jquery-2.1.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/cda/static/jquery-2.1.0.js -------------------------------------------------------------------------------- /extra/cda/static/jquery.scrollTo.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/cda/static/jquery.scrollTo.min.js -------------------------------------------------------------------------------- /extra/cda/static/socket.io.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/cda/static/socket.io.min.js -------------------------------------------------------------------------------- /extra/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/install.bat -------------------------------------------------------------------------------- /extra/llvmpatch/c-disasm-mcinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/llvmpatch/c-disasm-mcinst -------------------------------------------------------------------------------- /extra/middleware/dump_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/middleware/dump_log.py -------------------------------------------------------------------------------- /extra/middleware/qira_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/middleware/qira_memory.py -------------------------------------------------------------------------------- /extra/middleware/qira_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/middleware/qira_trace.py -------------------------------------------------------------------------------- /extra/newscripts/qira_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/newscripts/qira_log.py -------------------------------------------------------------------------------- /extra/old_static/qira_static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/old_static/qira_static.py -------------------------------------------------------------------------------- /extra/old_static/radare_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/old_static/radare_build.sh -------------------------------------------------------------------------------- /extra/parseida/gdb.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | gdb /home/vagrant/idademo66/python -ex "r trial.py" 3 | 4 | -------------------------------------------------------------------------------- /extra/parseida/ltracer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/parseida/ltracer.sh -------------------------------------------------------------------------------- /extra/parseida/parseidb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/parseida/parseidb.py -------------------------------------------------------------------------------- /extra/parseida/parseidc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/parseida/parseidc.py -------------------------------------------------------------------------------- /extra/qemu_mods/disas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/qemu_mods/disas.c -------------------------------------------------------------------------------- /extra/qemu_mods/gen_patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/qemu_mods/gen_patch.sh -------------------------------------------------------------------------------- /extra/qemu_mods/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/qemu_mods/main.c -------------------------------------------------------------------------------- /extra/qemu_mods/qemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/qemu_mods/qemu.h -------------------------------------------------------------------------------- /extra/qemu_mods/strace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/qemu_mods/strace.c -------------------------------------------------------------------------------- /extra/qemu_mods/strace.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/qemu_mods/strace.list -------------------------------------------------------------------------------- /extra/qemu_mods/tci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/qemu_mods/tci.c -------------------------------------------------------------------------------- /extra/qira.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/qira.bat -------------------------------------------------------------------------------- /extra/qiradb/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/qiradb/build.sh -------------------------------------------------------------------------------- /extra/qiradb/qiradb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/qiradb/qiradb -------------------------------------------------------------------------------- /extra/qiradb/qiradb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/qiradb/qiradb.cc -------------------------------------------------------------------------------- /extra/scripts/db_commit_asm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/scripts/db_commit_asm.py -------------------------------------------------------------------------------- /extra/scripts/db_commit_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/scripts/db_commit_log.py -------------------------------------------------------------------------------- /extra/scripts/db_filter_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/scripts/db_filter_log.py -------------------------------------------------------------------------------- /extra/scripts/gen_reg_colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/scripts/gen_reg_colors.py -------------------------------------------------------------------------------- /extra/scripts/go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/scripts/go.sh -------------------------------------------------------------------------------- /extra/scripts/mem_json_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/scripts/mem_json_extract.py -------------------------------------------------------------------------------- /extra/scripts/mongo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/scripts/mongo.sh -------------------------------------------------------------------------------- /extra/scripts/segment_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/scripts/segment_extract.py -------------------------------------------------------------------------------- /extra/servers/memory_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/servers/memory_server.py -------------------------------------------------------------------------------- /extra/servers/qira_meteor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/servers/qira_meteor.py -------------------------------------------------------------------------------- /extra/servers/regmem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/servers/regmem.js -------------------------------------------------------------------------------- /extra/vim/qira.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/vim/qira.vim -------------------------------------------------------------------------------- /extra/web/changeeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/web/changeeditor.js -------------------------------------------------------------------------------- /extra/website/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/website/css/bootstrap.min.css -------------------------------------------------------------------------------- /extra/website/dl: -------------------------------------------------------------------------------- 1 | ../../releases/qira-1.0.tar.xz -------------------------------------------------------------------------------- /extra/website/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/website/favicon.ico -------------------------------------------------------------------------------- /extra/website/img/first_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/website/img/first_splash.png -------------------------------------------------------------------------------- /extra/website/img/haddrbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/website/img/haddrbar.png -------------------------------------------------------------------------------- /extra/website/img/hexdump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/website/img/hexdump.png -------------------------------------------------------------------------------- /extra/website/img/ida.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/website/img/ida.png -------------------------------------------------------------------------------- /extra/website/img/watch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/website/img/watch.png -------------------------------------------------------------------------------- /extra/website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/website/index.html -------------------------------------------------------------------------------- /extra/website/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/website/js/bootstrap.min.js -------------------------------------------------------------------------------- /extra/website/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/qira/HEAD/extra/website/js/jquery.min.js -------------------------------------------------------------------------------- /extra/website/pull.php: -------------------------------------------------------------------------------- 1 |
2 |
2 | int main() { write(0, "hello world\n", 12); return 0; }
3 |
4 |
--------------------------------------------------------------------------------
/tests_manual/helloc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tests_manual/helloc
--------------------------------------------------------------------------------
/tests_manual/jmpbug.asm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tests_manual/jmpbug.asm
--------------------------------------------------------------------------------
/tests_manual/loop_macho32:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tests_manual/loop_macho32
--------------------------------------------------------------------------------
/tests_manual/loop_macho64:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tests_manual/loop_macho64
--------------------------------------------------------------------------------
/tests_manual/printesp.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tests_manual/printesp.c
--------------------------------------------------------------------------------
/tests_manual/printesp32:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tests_manual/printesp32
--------------------------------------------------------------------------------
/tests_manual/printesp64:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tests_manual/printesp64
--------------------------------------------------------------------------------
/tests_manual/realworld/zpipe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tests_manual/realworld/zpipe
--------------------------------------------------------------------------------
/tests_manual/realworld/zpipe.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tests_manual/realworld/zpipe.c
--------------------------------------------------------------------------------
/tests_manual/stackframetest_x86:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tests_manual/stackframetest_x86
--------------------------------------------------------------------------------
/tests_manual/suite/a679df07a8f3a8d590febad45336d031-stkof:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tests_manual/suite/a679df07a8f3a8d590febad45336d031-stkof
--------------------------------------------------------------------------------
/tests_manual/suite/deepblue-337848eb3f394204c016331a0e1b3b5a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tests_manual/suite/deepblue-337848eb3f394204c016331a0e1b3b5a
--------------------------------------------------------------------------------
/tests_manual/suite/echo64:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tests_manual/suite/echo64
--------------------------------------------------------------------------------
/tests_manual/suite/exploit2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tests_manual/suite/exploit2
--------------------------------------------------------------------------------
/tests_manual/suite/ezhp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tests_manual/suite/ezhp
--------------------------------------------------------------------------------
/tests_manual/suite/hop-62fa7ade9a1fa9254361e69d70e7a7e3.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tests_manual/suite/hop-62fa7ade9a1fa9254361e69d70e7a7e3.exe
--------------------------------------------------------------------------------
/tests_manual/suite/justify:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tests_manual/suite/justify
--------------------------------------------------------------------------------
/tests_manual/suite/ty-b83f0d0edeb8cfad76d30eddc58da139:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tests_manual/suite/ty-b83f0d0edeb8cfad76d30eddc58da139
--------------------------------------------------------------------------------
/tests_manual/supanoob:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tests_manual/supanoob
--------------------------------------------------------------------------------
/tests_manual/thread_test.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tests_manual/thread_test.c
--------------------------------------------------------------------------------
/tests_manual/vimplugin/a.out:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tests_manual/vimplugin/a.out
--------------------------------------------------------------------------------
/tests_manual/vimplugin/main.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tests_manual/vimplugin/main.c
--------------------------------------------------------------------------------
/tests_manual/vimplugin/swag.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tests_manual/vimplugin/swag.c
--------------------------------------------------------------------------------
/tests_manual/vimplugin/swag.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tests_manual/vimplugin/swag.h
--------------------------------------------------------------------------------
/tests_manual/vortex/vortex4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tests_manual/vortex/vortex4
--------------------------------------------------------------------------------
/tests_manual/vortex/vortex4.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tests_manual/vortex/vortex4.c
--------------------------------------------------------------------------------
/tests_manual/windows/fibonacci32.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tests_manual/windows/fibonacci32.exe
--------------------------------------------------------------------------------
/tests_manual/windows/fibonacci64.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tests_manual/windows/fibonacci64.exe
--------------------------------------------------------------------------------
/tests_manual/windows/fibonacci64/14072703531940:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tests_manual/windows/fibonacci64/14072703531940
--------------------------------------------------------------------------------
/tests_manual/windows/fibonacci64/14072703531940_base:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tests_manual/windows/fibonacci64/14072703531940_base
--------------------------------------------------------------------------------
/tests_manual/windows/fibonacci64/14072703531940_strace:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tests_manual/windows/fibonacci64/14072703531940_strace
--------------------------------------------------------------------------------
/tests_manual/windows/paris.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tests_manual/windows/paris.exe
--------------------------------------------------------------------------------
/tracers/angr/angr_trace.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tracers/angr/angr_trace.py
--------------------------------------------------------------------------------
/tracers/concrete_executor/bitvector.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tracers/concrete_executor/bitvector.py
--------------------------------------------------------------------------------
/tracers/concrete_executor/concrete_execution.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tracers/concrete_executor/concrete_execution.py
--------------------------------------------------------------------------------
/tracers/pin/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tracers/pin/.gitignore
--------------------------------------------------------------------------------
/tracers/pin/makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tracers/pin/makefile
--------------------------------------------------------------------------------
/tracers/pin/qirapin.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tracers/pin/qirapin.cpp
--------------------------------------------------------------------------------
/tracers/pin/strace/gen_tables.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tracers/pin/strace/gen_tables.py
--------------------------------------------------------------------------------
/tracers/pin/strace/osx_gen.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tracers/pin/strace/osx_gen.py
--------------------------------------------------------------------------------
/tracers/pin/strace/osx_syscalls.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tracers/pin/strace/osx_syscalls.h
--------------------------------------------------------------------------------
/tracers/pin/strace/syscallents_32.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tracers/pin/strace/syscallents_32.h
--------------------------------------------------------------------------------
/tracers/pin/strace/syscallents_64.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tracers/pin/strace/syscallents_64.h
--------------------------------------------------------------------------------
/tracers/pin/strace/syscalls.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tracers/pin/strace/syscalls.h
--------------------------------------------------------------------------------
/tracers/pin_build.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tracers/pin_build.sh
--------------------------------------------------------------------------------
/tracers/qemu/.gitignore:
--------------------------------------------------------------------------------
1 | qemu
2 |
--------------------------------------------------------------------------------
/tracers/qemu/qira-aarch64:
--------------------------------------------------------------------------------
1 | qemu/aarch64-linux-user/qemu-aarch64
--------------------------------------------------------------------------------
/tracers/qemu/qira-arm:
--------------------------------------------------------------------------------
1 | qemu/arm-linux-user/qemu-arm
--------------------------------------------------------------------------------
/tracers/qemu/qira-i386:
--------------------------------------------------------------------------------
1 | qemu/i386-linux-user/qemu-i386
--------------------------------------------------------------------------------
/tracers/qemu/qira-mips:
--------------------------------------------------------------------------------
1 | qemu/mips-linux-user/qemu-mips
--------------------------------------------------------------------------------
/tracers/qemu/qira-mipsel:
--------------------------------------------------------------------------------
1 | qemu/mipsel-linux-user/qemu-mipsel
--------------------------------------------------------------------------------
/tracers/qemu/qira-ppc:
--------------------------------------------------------------------------------
1 | qemu/ppc-linux-user/qemu-ppc
--------------------------------------------------------------------------------
/tracers/qemu/qira-x86_64:
--------------------------------------------------------------------------------
1 | qemu/x86_64-linux-user/qemu-x86_64
--------------------------------------------------------------------------------
/tracers/qemu_build.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/tracers/qemu_build.sh
--------------------------------------------------------------------------------
/web/client/compatibility/base.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/web/client/compatibility/base.js
--------------------------------------------------------------------------------
/web/client/compatibility/bignum.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/web/client/compatibility/bignum.js
--------------------------------------------------------------------------------
/web/client/compatibility/early.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/web/client/compatibility/early.js
--------------------------------------------------------------------------------
/web/client/compatibility/fakemeteor.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/web/client/compatibility/fakemeteor.js
--------------------------------------------------------------------------------
/web/client/compatibility/font-awesome.min.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/web/client/compatibility/font-awesome.min.css
--------------------------------------------------------------------------------
/web/client/compatibility/head.core.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/web/client/compatibility/head.core.min.js
--------------------------------------------------------------------------------
/web/client/compatibility/highlight.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/web/client/compatibility/highlight.js
--------------------------------------------------------------------------------
/web/client/compatibility/jquery-2.1.1.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/web/client/compatibility/jquery-2.1.1.min.js
--------------------------------------------------------------------------------
/web/client/compatibility/jquery.contextMenu.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/web/client/compatibility/jquery.contextMenu.css
--------------------------------------------------------------------------------
/web/client/compatibility/jquery.contextMenu.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/web/client/compatibility/jquery.contextMenu.js
--------------------------------------------------------------------------------
/web/client/compatibility/jquery.ui.position.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/web/client/compatibility/jquery.ui.position.js
--------------------------------------------------------------------------------
/web/client/compatibility/socket.io.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/web/client/compatibility/socket.io.min.js
--------------------------------------------------------------------------------
/web/client/compatibility/wcDocker.min.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/web/client/compatibility/wcDocker.min.css
--------------------------------------------------------------------------------
/web/client/compatibility/wcDocker.window-patch.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/web/client/compatibility/wcDocker.window-patch.js
--------------------------------------------------------------------------------
/web/client/controls.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/web/client/controls.js
--------------------------------------------------------------------------------
/web/client/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/web/client/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/web/client/fonts/fontawesome-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/web/client/fonts/fontawesome-webfont.woff2
--------------------------------------------------------------------------------
/web/client/haddrline.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/web/client/haddrline.js
--------------------------------------------------------------------------------
/web/client/ida.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/web/client/ida.js
--------------------------------------------------------------------------------
/web/client/idump.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/web/client/idump.js
--------------------------------------------------------------------------------
/web/client/regmem.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/web/client/regmem.js
--------------------------------------------------------------------------------
/web/client/static/graph.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/web/client/static/graph.js
--------------------------------------------------------------------------------
/web/client/static/static.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/web/client/static/static.js
--------------------------------------------------------------------------------
/web/client/strace.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/web/client/strace.js
--------------------------------------------------------------------------------
/web/client/ui.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/web/client/ui.js
--------------------------------------------------------------------------------
/web/client/vtimeline.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/web/client/vtimeline.js
--------------------------------------------------------------------------------
/web/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/web/favicon.ico
--------------------------------------------------------------------------------
/web/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/web/index.html
--------------------------------------------------------------------------------
/web/qira_layout.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/web/qira_layout.css
--------------------------------------------------------------------------------
/web/qira_new.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/web/qira_new.css
--------------------------------------------------------------------------------
/web/qira_theme.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/web/qira_theme.css
--------------------------------------------------------------------------------
/web/qira_types.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geohot/qira/HEAD/web/qira_types.css
--------------------------------------------------------------------------------