{"id":15984795,"url":"https://github.com/phra/x0rro","last_synced_at":"2025-05-12T03:31:46.623Z","repository":{"id":43927294,"uuid":"235675087","full_name":"phra/x0rro","owner":"phra","description":"A PE/ELF/MachO Crypter for x86 and x86_64 Based on Radare2","archived":false,"fork":false,"pushed_at":"2023-01-05T11:56:44.000Z","size":468,"stargazers_count":138,"open_issues_count":11,"forks_count":20,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-03-31T23:43:09.331Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://iwantmore.pizza/posts/x0rro.html","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/phra.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-01-22T21:53:58.000Z","updated_at":"2024-11-09T22:43:42.000Z","dependencies_parsed_at":"2023-02-04T04:02:06.016Z","dependency_job_id":null,"html_url":"https://github.com/phra/x0rro","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phra%2Fx0rro","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phra%2Fx0rro/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phra%2Fx0rro/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phra%2Fx0rro/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/phra","download_url":"https://codeload.github.com/phra/x0rro/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253668064,"owners_count":21944970,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":[],"created_at":"2024-10-08T02:10:33.429Z","updated_at":"2025-05-12T03:31:46.316Z","avatar_url":"https://github.com/phra.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"x0rro\n=====\n\nRead the blog post @ [https://iwantmore.pizza/posts/x0rro.html](https://iwantmore.pizza/posts/x0rro.html)\n\n[![oclif](https://img.shields.io/badge/cli-oclif-brightgreen.svg)](https://oclif.io)\n[![Version](https://img.shields.io/npm/v/x0rro.svg)](https://npmjs.org/package/x0rro)\n[![CircleCI](https://circleci.com/gh/phra/x0rro/tree/master.svg?style=shield)](https://circleci.com/gh/phra/x0rro/tree/master)\n[![Downloads/week](https://img.shields.io/npm/dw/x0rro.svg)](https://npmjs.org/package/x0rro)\n[![License](https://img.shields.io/npm/l/x0rro.svg)](https://github.com/phra/x0rro/blob/master/package.json)\n\n\u003c!-- toc --\u003e\n* [Usage](#usage)\n* [Commands](#commands)\n\u003c!-- tocstop --\u003e\n# Usage\n\u003c!-- usage --\u003e\n```sh-session\n$ npm install -g x0rro\n$ x0rro COMMAND\nrunning command...\n$ x0rro (-v|--version|version)\nx0rro/1.0.3 linux-x64 node-v13.7.0\n$ x0rro --help [COMMAND]\nUSAGE\n  $ x0rro COMMAND\n...\n```\n\u003c!-- usagestop --\u003e\n# Commands\n\u003c!-- commands --\u003e\n* [`x0rro cave FILE`](#x0rro-cave-file)\n* [`x0rro help [COMMAND]`](#x0rro-help-command)\n* [`x0rro interactive FILE`](#x0rro-interactive-file)\n* [`x0rro section FILE`](#x0rro-section-file)\n\n## `x0rro cave FILE`\n\nEncrypt binary using code cave technique\n\n```\nUSAGE\n  $ x0rro cave FILE\n\nOPTIONS\n  -h, --help               show CLI help\n  -s, --sections=sections  [default: __text] sections to xor separated by comma\n  -x, --xor=xor            [default: 0xf] xor key to use in hexadecimal\n\nEXAMPLES\n  $ x0rro cave -x 0xf -s __text,__data myfile\n  $ x0rro cave -x 0xf -s aogf[0x140004000-0x140004290] test.exe\n```\n\n_See code: [src/commands/cave.ts](https://github.com/phra/x0rro/blob/v1.0.3/src/commands/cave.ts)_\n\n## `x0rro help [COMMAND]`\n\ndisplay help for x0rro\n\n```\nUSAGE\n  $ x0rro help [COMMAND]\n\nARGUMENTS\n  COMMAND  command to show help for\n\nOPTIONS\n  --all  see all commands in CLI\n```\n\n_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v2.2.3/src/commands/help.ts)_\n\n## `x0rro interactive FILE`\n\nEncrypt binary with an interactive wizard\n\n```\nUSAGE\n  $ x0rro interactive FILE\n\nOPTIONS\n  -h, --help  show CLI help\n\nEXAMPLE\n  $ x0rro interactive myfile\n```\n\n_See code: [src/commands/interactive.ts](https://github.com/phra/x0rro/blob/v1.0.3/src/commands/interactive.ts)_\n\n## `x0rro section FILE`\n\nEncrypt binary using a new executable section\n\n```\nUSAGE\n  $ x0rro section FILE\n\nOPTIONS\n  -h, --help               show CLI help\n  -s, --sections=sections  [default: __text] sections to xor separated by comma\n  -x, --xor=xor            [default: 0xf] xor key to use in hexadecimal\n\nEXAMPLES\n  $ x0rro section -x 0xf -s __text,__data myfile\n  $ x0rro section -x 0xf -s aogf[0x140004000-0x140004290] test.exe\n```\n\n_See code: [src/commands/section.ts](https://github.com/phra/x0rro/blob/v1.0.3/src/commands/section.ts)_\n\u003c!-- commandsstop --\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphra%2Fx0rro","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fphra%2Fx0rro","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphra%2Fx0rro/lists"}