{"id":19213554,"url":"https://github.com/sapphicart/eatshell","last_synced_at":"2026-01-28T02:51:43.780Z","repository":{"id":261574809,"uuid":"884395600","full_name":"sapphicart/eatshell","owner":"sapphicart","description":"Automate the process of extracting, loading and assembling shellcode.","archived":false,"fork":false,"pushed_at":"2024-11-07T16:51:08.000Z","size":11,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-03T19:37:24.393Z","etag":null,"topics":["python","shellcode","shellcode-assembler","shellcode-extractor"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sapphicart.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2024-11-06T17:11:26.000Z","updated_at":"2024-11-07T16:50:53.000Z","dependencies_parsed_at":null,"dependency_job_id":"0099fde6-1f6c-4032-bdde-43f14d100f04","html_url":"https://github.com/sapphicart/eatshell","commit_stats":null,"previous_names":["sapphicart/eatshell"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/sapphicart/eatshell","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sapphicart%2Featshell","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sapphicart%2Featshell/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sapphicart%2Featshell/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sapphicart%2Featshell/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sapphicart","download_url":"https://codeload.github.com/sapphicart/eatshell/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sapphicart%2Featshell/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28835145,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T02:10:51.810Z","status":"ssl_error","status_checked_at":"2026-01-28T02:10:50.806Z","response_time":57,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["python","shellcode","shellcode-assembler","shellcode-extractor"],"created_at":"2024-11-09T14:06:18.857Z","updated_at":"2026-01-28T02:51:43.736Z","avatar_url":"https://github.com/sapphicart.png","language":"Python","readme":"\u003ch1 align=\"center\"\u003eeatshell\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"#summary\"\u003eSummary\u003c/a\u003e •\n  \u003ca href=\"#requirements\"\u003eRequirements\u003c/a\u003e •\n  \u003ca href=\"#installation\"\u003eInstallation\u003c/a\u003e •\n  \u003ca href=\"#usage\"\u003eUsage\u003c/a\u003e •\n  \u003ca href=\"#license\"\u003eLicense\u003c/a\u003e\n\u003c/p\u003e\n\n## Summary\n\neatshell is a simple command line tool to automate the process of shellcode extraction, loading and assembling. eatshell contains three commands `extract`, `load`, and `assemble`.\n\n\u003e[!NOTE]\n**Note: eatshell is meant for small-scale application and primarily created for personal use only.**\n\n## Requirements\n\n- Python 3.xx\n\n## Installation\n\nThere are two ways to install `eatshell`:\n\nInstall the tool directly with `pip`\n```bash\npip install eatshell\n```\n\nOr, you can build from source. Download the latest [release](https://github.com/sapphicart/eatshell/releases).\n\n## Usage\n\nUse the `--help` switch to read the `COMMANDS` and `OPTIONS` available.\n```bash\n$ eatshell --help\nUsage: eatshell.py [OPTIONS] COMMAND [ARGS]...\n\nOptions:\n  --hush  Suppress Usage and Warning info.\n  --help  Show this message and exit.\n\nCommands:\n  assemble\n  extract\n  load\n```\nThere are three commands available for `eatshell`:\n- assemble\n- extract\n- load\n\n```\n$ eatshell assemble --shellcode \u003chex string\u003e --file \u003cfilename\u003e\n    \n    Use this command to assemble given shellcode\n    into an ELF file with +rwx permissions for\n    the owner.\n```\n\n```\n$ eatshell extract --file \u003cfilename\u003e --hex \u003cboolean\u003e\n        \n    Use this command to extract shellcode\n    from an existing ELF file.\n    Turn --hex on for hex encoding.\n```\n\n```\n$ eatshell load --shellcode \u003chex string\u003e\n\n    Use this command to run the provided\n    shellcode interactively.\n    Use with caution, might not work everytime.\n```\n\n\u003e[!WARNING]\nCreate an `.env` file with the following variables. Otherwise, the program might not work.\n\n`.env` file structure example:\n```\nOS=linux\nARCH=amd64\nLOG_LEVEL=error\n```\n\n## License\nDistributed under [MIT](LICENSE) License.","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsapphicart%2Featshell","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsapphicart%2Featshell","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsapphicart%2Featshell/lists"}