{"id":49336048,"url":"https://github.com/jilwer/proton-inject","last_synced_at":"2026-04-27T01:01:18.868Z","repository":{"id":354054378,"uuid":"1221942276","full_name":"Jilwer/Proton-Inject","owner":"Jilwer","description":"A Fyne GUI for injecting DLLs into proton processes using CRT+LL","archived":false,"fork":false,"pushed_at":"2026-04-26T23:55:32.000Z","size":90,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-27T00:16:23.735Z","etag":null,"topics":["go","gui","injector","linux","modding","proton","rust"],"latest_commit_sha":null,"homepage":"","language":"Go","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/Jilwer.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-26T21:53:24.000Z","updated_at":"2026-04-26T23:55:36.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/Jilwer/Proton-Inject","commit_stats":null,"previous_names":["jilwer/proton-inject"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/Jilwer/Proton-Inject","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jilwer%2FProton-Inject","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jilwer%2FProton-Inject/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jilwer%2FProton-Inject/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jilwer%2FProton-Inject/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Jilwer","download_url":"https://codeload.github.com/Jilwer/Proton-Inject/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jilwer%2FProton-Inject/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32318417,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T23:26:28.701Z","status":"ssl_error","status_checked_at":"2026-04-26T23:26:25.802Z","response_time":129,"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":["go","gui","injector","linux","modding","proton","rust"],"created_at":"2026-04-27T01:01:18.042Z","updated_at":"2026-04-27T01:01:18.861Z","avatar_url":"https://github.com/Jilwer.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Proton Inject\nComprehensive DLL injector for proton games, made with Go, Rust, and Fyne with a clean GUI, profile system, and mod loader.\n\n\u003cp align=\"center\"\u003e\n  \u003cimg width=\"800\" height=\"776\" alt=\"Screenshot_20260426_181132\" src=\"https://github.com/user-attachments/assets/f610966b-23a6-4c3c-9985-39847ab490ef\" /\u003e\n\u003c/p\u003e\n\n\n## Requirements\n- protontricks (Required for launching the injector inside the correct Proton prefix using `protontricks-launch`)\n## Download\n\nDownload the latest release from the [release page](https://github.com/Jilwer/Proton-Inject/releases/latest).\n\n## Architecture \u0026 Features\n\n- This program is primarily written in Go and Rust and uses the Fyne GUI library.\n- Both the injector and loader are embedded directly into the main program using Go's `embed.FS`.\n- The GUI wraps an embedded CRT+LL injector written in Rust, which is used to inject our DLLs.\n- We have a frontend wrapper for the injector, `injector_wrap.go`, that is built directly into the main program. This uses `protontricks-launch` to run the injector in the correct Proton context, ensuring DLL injection into the correct target process.\n- The tool ships with an optional loader DLL that the injector can use. This creates a `proton-inject-mods` folder under the target Proton/Wine prefix's `Documents` directory, with GUI helpers to quickly access this folder.\n- A profiles system lets you save game profiles so you do not need to remember details such as the Steam AppID.\n- It ships as one fully portable binary, installation not required, but can be achieved manually\n- Other injection methods are not supported at the moment because CRT+LL on linux at the present is sufficiently stealthy, and other methods have poor compatibility through wine/proton\n\n\n## Installation\nEither download the compiled binary from the release page, or build yourself. I will not be maintaining this on any package repo's, and system installation lies upon the user if it is wanted.\n\n## F.A.Q\n### Why CRT+LL only?\nCRT + LoadLibrary (CreateRemoteThread + LoadLibrary) is currently the most reliable injection method under Proton/Wine.\n\nOther techniques tend to:\n- Break due to Wine translation layers\n- Have inconsistent compatibility across games\n\nIn testing, CRT + LoadLibrary has been sufficiently stealthy under Proton/Wine. This differs from native Windows behavior. Additional methods may be added in the future if needed.\n\n### Where are mods stored?\n`\u003cProton Prefix\u003e/drive_c/users/steamuser/Documents/proton-inject-mods`\n\n### Do I need to install it?\nNo. It’s fully portable—just run the binary.\n\n## Building\n\nRequirements:\n\n- A C compiler (Fyne uses cgo)\n- Go\n- Rust\n- Make\n\nRun `make build` or `make release`.\n\n## Contributing\nFeel free to submit pull requests at will, given the time I will review them and merge them when the time becomes available\n\n\n## License\n\nThis code is licensed under the GNU GPL v3. Please see the [LICENSE](LICENSE) file for more details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjilwer%2Fproton-inject","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjilwer%2Fproton-inject","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjilwer%2Fproton-inject/lists"}