{"id":31563383,"url":"https://github.com/fosterg4/g25f","last_synced_at":"2025-10-05T04:58:52.936Z","repository":{"id":310332841,"uuid":"1039482222","full_name":"FosterG4/G25F","owner":"FosterG4","description":"A DLL injector with electron GUI","archived":false,"fork":false,"pushed_at":"2025-08-17T10:52:19.000Z","size":118,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-17T12:27:23.156Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C++","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/FosterG4.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-08-17T10:34:41.000Z","updated_at":"2025-08-17T10:52:22.000Z","dependencies_parsed_at":"2025-08-17T12:27:27.309Z","dependency_job_id":"2cfd8d2e-5dc1-417d-946a-efc117815fea","html_url":"https://github.com/FosterG4/G25F","commit_stats":null,"previous_names":["fosterg4/g25f"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/FosterG4/G25F","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FosterG4%2FG25F","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FosterG4%2FG25F/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FosterG4%2FG25F/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FosterG4%2FG25F/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/FosterG4","download_url":"https://codeload.github.com/FosterG4/G25F/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FosterG4%2FG25F/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278411255,"owners_count":25982368,"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","status":"online","status_checked_at":"2025-10-05T02:00:06.059Z","response_time":54,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2025-10-05T04:58:50.672Z","updated_at":"2025-10-05T04:58:52.928Z","avatar_url":"https://github.com/FosterG4.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🚀 G25F Injector\n\nA DLL injector with electron GUI.\n\n## ✨ Features\n\n- **Multiple Injection Methods** - LoadLibrary, CreateRemoteThread, ManualMap, SetWindowsHook\n- **GUI** - Electron-based interface with real-time updates\n- **Realtime Backend** - HTTP server with Server-Sent Events for live updates\n- **Process Management** - Real-time process enumeration and monitoring\n- **Installer** - Windows installer with automatic admin elevation\n- **Cross-Platform GUI** - web-based interface\n\n## 🏗️ Project Structure\n\n```\nG25F/\n├── G25F_Injector.exe              ← Console application\n├── G25F_Injector_Backend.exe      ← HTTP server with realtime capabilities\n├── electron/                       ← GUI interface\n├── include/                        ← Header files\n├── src/                           ← Source code\n│   ├── backend.cpp                ← Single backend (HTTP + SSE)\n│   ├── Injector.cpp               ← Core injection logic\n│   ├── ProcessUtils.cpp           ← Process management\n│   ├── Logger.cpp                 ← Logging system\n│   └── Main.cpp                   ← Console entry point\n├── lib/                           ← Library files\n├── build.bat                      ← Single build command\n└── build/                         ← Build output\n```\n\n## 🚀 Quick Start\n\n### For Users\n1. **Download** the installer: `G25F-Injector-Setup.exe`\n2. **Double-click** to install\n3. **Run** from desktop shortcut or start menu\n4. **Enjoy** DLL injection tool\n\n### For Developers\n1. **Clone** the repository\n2. **Run one command**: `build.bat`\n3. **Get everything**: Installer, portable version, and all executables\n\n## 🛠️ Building\n\n### Prerequisites\n- Visual Studio 2019+ with C++ support\n- Windows SDK 10.0+\n- CMake 3.20+\n- Node.js (for Electron GUI)\n- Git (for dependencies)\n\n### 🎯 **One Command Build**\n\n```bash\n# Everything in one command!\nbuild.bat\n```\n\nThis single command will:\n- ✅ **Install dependencies** automatically (JSON library)\n- ✅ **Build C++ backend** with CMake + MSBuild\n- ✅ **Build console app** \n- ✅ **Install Electron dependencies** with npm\n- ✅ **Create Windows installer** with electron-builder\n- ✅ **Generate portable version**\n\n### 📁 Output Files\n\nAfter running `build.bat`, you'll get:\n```\nbuild/\n├── Release/\n│   ├── G25F_Injector.exe              ← Console application\n│   └── G25F_Injector_Backend.exe      ← HTTP server\n└── electron/\n    ├── G25F-Injector-Setup.exe        ← Windows installer\n    └── G25F-Injector-Portable.exe     ← Portable version\n```\n\n## 📡 Backend API\n\nThe backend provides HTTP endpoints:\n- `GET /api/processes` - List running processes\n- `POST /api/inject` - Inject DLL into process\n- `GET /api/status` - Server status\n- `GET /api/logs` - Recent logs\n- `GET /api/events` - Server-Sent Events for real-time updates\n\n## 🎮 GUI Features\n\n- **Process List** - Real-time process enumeration\n- **DLL Injection** - Multiple injection methods\n- **Progress Tracking** - Live injection progress updates\n- **Log Viewer** - Real-time log monitoring\n- **Settings** - Configurable injection options\n\n## 🔧 Technical Details\n\n- **C++ Backend** - High-performance injection engine\n- **libmem Integration** - Advanced memory manipulation\n- **HTTP Server** - RESTful API with SSE support\n- **Electron GUI** - responsive interface\n- **Windows API** - Native Windows integration\n\n## 📦 Distribution\n\n- **Windows Installer** - MSI-style installer\n- **Portable Version** - Single executable for advanced users\n- **Clean Install** - Proper installation/uninstallation\n\n## 🎉 Build System Benefits\n\n- **Single Command** - `build.bat` does everything\n- **Automatic Dependencies** - Installs JSON library automatically\n- **Integrated Build** - CMake + MSBuild + npm in one flow\n- **Professional Output** - Ready-to-distribute installer\n- **Error Handling** - Clear feedback and troubleshooting\n\n## 📄 License\n\nThis project is licensed under the MIT License.\n\n## 🤝 Contributing\n\nContributions are welcome! Please read our contributing guidelines.\n\n---\n\n**G25F Injector** - DLL injection! 🎯","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffosterg4%2Fg25f","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffosterg4%2Fg25f","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffosterg4%2Fg25f/lists"}