{"id":18457936,"url":"https://github.com/0xor0ne/doc-revexp","last_synced_at":"2026-04-29T00:32:28.731Z","repository":{"id":127661705,"uuid":"489449908","full_name":"0xor0ne/doc-revexp","owner":"0xor0ne","description":"Docker image with tools for reverse engineering and exploit development activities.","archived":false,"fork":false,"pushed_at":"2022-06-02T17:47:03.000Z","size":33,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-23T16:21:40.424Z","etag":null,"topics":["debugging","docker","emulation","exploit-development","malware-analysis","reverse-engineering"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/0xor0ne.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-05-06T18:04:42.000Z","updated_at":"2025-03-30T11:58:36.000Z","dependencies_parsed_at":"2023-03-15T13:45:38.883Z","dependency_job_id":null,"html_url":"https://github.com/0xor0ne/doc-revexp","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/0xor0ne/doc-revexp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xor0ne%2Fdoc-revexp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xor0ne%2Fdoc-revexp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xor0ne%2Fdoc-revexp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xor0ne%2Fdoc-revexp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/0xor0ne","download_url":"https://codeload.github.com/0xor0ne/doc-revexp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xor0ne%2Fdoc-revexp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32405901,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-28T19:38:08.556Z","status":"ssl_error","status_checked_at":"2026-04-28T19:37:55.688Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["debugging","docker","emulation","exploit-development","malware-analysis","reverse-engineering"],"created_at":"2024-11-06T08:16:05.407Z","updated_at":"2026-04-29T00:32:28.717Z","avatar_url":"https://github.com/0xor0ne.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Doc-Reversing\n\nDocker image containing various tools useful for reverse engineering and exploit\ndevelopment activities.\n\n## Included Tools\n\n* [binwalk](https://github.com/ReFirmLabs/binwalk)\n* [cwe_checker](https://github.com/fkie-cad/cwe_checker)\n* [gdb](https://www.sourceware.org/gdb/) with [GEF](https://github.com/hugsy/gef)\n* [Ghidra](https://ghidra-sre.org/) for headless scripting\n* [Golang](https://go.dev/)\n* [pwntools](https://github.com/Gallopsled/pwntools)\n* [ropper](https://github.com/sashs/Ropper)\n* [qiling](https://github.com/qilingframework/qiling)\n  * includes `qltool`\n  * Root FS distributed with the project are located in\n    `~/toolschest/qiling/examples/rootfs`.\n* [QEMU](https://www.qemu.org/)\n* [radare2](https://github.com/radareorg/radare2)\n  * [r2ghidra](https://github.com/radareorg/r2ghidra) plugin\n* [Rust](https://www.rust-lang.org/)\n\nAnd many others.\n\n## High Level Workflow\n\nClone the repository:\n\n```bash\ngit clone https://github.com/0xor0ne/doc-revexp\ncd doc-revexp\n```\n\nBuild the docker image (this is going to take a while):\n\n```bash\n./scripts/docker_build.sh\n```\n\nrun the container interactively:\n\n```bash\n./scripts/docker_run_inter.sh\n```\n\ninside the container the directory `${HOME}/shared` is shared with the host and\nthe directory `${HOME}/workspace` is where the optional persistent volume is\nmounted (see below).\n\nNOTE: by running the container without a mounted persistent volume, all the work\ndone is volatile unless saved in the shared directory.\n\nIt is possible to set a custom persistent volume or a custom shared directory\n(or both) by using the options `--volume` and `--shared` with the script\n`./scripts/docker_run_inter.sh`.\n\nFor example, create a new volume with:\n\n```bash\ndocker volume create --name doc-revexp-vol\n```\n\nand then run:\n\n```bash\n./scripts/docker_run_inter.sh --volume doc-revexp-vol --shared /tmp\n```\n\nWith the previous command, the container will use the newly create volume\n`dov-revexp-vol` and the host will share the directory `/tmp`. When option\n`--shared` is not used, by default the root directory of `doc-revexp` project is\nshared inside the container.\n\nIf you need to attach another terminal to the running container, use:\n\n```bash\n./scripts/docker_attach.sh\n```\n\nFor removing both the container and the image, run:\n\n```bash\n./scripts/docker_remove_all.sh\n```\n\n## Examples\n\n* [ARM (32 bits) Emulation and Debugging](./docs/arm32_emulation_example.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0xor0ne%2Fdoc-revexp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F0xor0ne%2Fdoc-revexp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0xor0ne%2Fdoc-revexp/lists"}