{"id":42294179,"url":"https://github.com/hinqiwame/soinjector","last_synced_at":"2026-01-27T09:54:24.914Z","repository":{"id":144701171,"uuid":"607154270","full_name":"hinqiwame/soinjector","owner":"hinqiwame","description":"Linux shared object injector written in pure C","archived":false,"fork":false,"pushed_at":"2025-05-19T16:43:32.000Z","size":169,"stargazers_count":48,"open_issues_count":0,"forks_count":9,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-05-19T17:55:30.204Z","etag":null,"topics":["c","cli","debugging","dynamic-linking","injection","linux","process-manipulation","security"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hinqiwame.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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,"zenodo":null}},"created_at":"2023-02-27T12:32:21.000Z","updated_at":"2025-05-19T16:43:36.000Z","dependencies_parsed_at":null,"dependency_job_id":"5ac0e8b5-7c7c-45c8-a26a-07a41360ca8c","html_url":"https://github.com/hinqiwame/soinjector","commit_stats":null,"previous_names":["qqqwwqeeqqwe/soinjector","morphineaddicted/soinjector","hinqiwame/soinjector"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/hinqiwame/soinjector","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hinqiwame%2Fsoinjector","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hinqiwame%2Fsoinjector/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hinqiwame%2Fsoinjector/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hinqiwame%2Fsoinjector/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hinqiwame","download_url":"https://codeload.github.com/hinqiwame/soinjector/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hinqiwame%2Fsoinjector/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28811484,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-27T07:41:26.337Z","status":"ssl_error","status_checked_at":"2026-01-27T07:41:08.776Z","response_time":168,"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":["c","cli","debugging","dynamic-linking","injection","linux","process-manipulation","security"],"created_at":"2026-01-27T09:54:24.107Z","updated_at":"2026-01-27T09:54:24.902Z","avatar_url":"https://github.com/hinqiwame.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp allign=\"center\"\u003e\n  \u003cimg src=\"img/akane.jpg\"\u003e\n  \u003ch1\u003eSoinjector\u003c/h1\u003e\n  \u003cdiv\u003e\n    \u003cimg src=\"https://img.shields.io/badge/license-unlicense-green\"\u003e\n    \u003cimg src=\"https://img.shields.io/github/languages/code-size/meth1337/soinjector\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/language-C-lightgrey\"\u003e\n  \u003c/div\u003e\n\u003c/p\u003e\n\nThis is a simple Linux library injector that allows you to inject a shared library into a running process. It uses `ptrace` to attach to the target process, call `dlopen` with the specified library path, and detach from the process. Uses GTK 3 for GUI.\n\n## Download\nYou can get the latest stable binary from [here](https://github.com/meth1337/soinjector/releases/latest) (filename: `injector`)\n\n## Building\nTo compile the injector, navigate to the `src/build` directory and run these commands to compile using CMake:\n```\ncmake ..\nmake\n```\nAlternatively, you can compile using the included `compiler` binary to compile the program for you.\n```\nchmod +x compiler\n./compiler\n```\n\n## Usage\n### CLI\nTo use the injector, you must have root privileges. You can run the program with the following command:\n```\nsudo ./injector \u003clib_path\u003e \u003cpid\u003e\n```\nWhere `\u003clib_path\u003e` is the path to the shared library you want to inject and `\u003cpid\u003e` is the process ID of the target process.\u003cbr\u003e\u003cbr\u003e\nExample:\n```\nsudo ./inject /path/to/libexample.so 1234\n```\nThe injector will attach to the process, call `dlopen` with the specified library path, and detach from the process. If successful, it will print `[*] Library injected successfully!` to the console.\n\n### GUI (BETA)\n![gui](img/gui.jpg)\n\n## Docs\nThe documentation of this tool is [here](https://github.com/meth1337/soinjector/wiki).\n\n  ---\n  ```\n  [x0@0x0-80tx ~]$ sudo ./injector libexample.so 1952\n  [*] Dlopen memory address: 0x7fa06a5b0700\n  [*] Found library path: libexample.so\n  [*] Library injected successfully!\n  [*] Resumed the target process: 1952\n  ```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhinqiwame%2Fsoinjector","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhinqiwame%2Fsoinjector","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhinqiwame%2Fsoinjector/lists"}