{"id":15060429,"url":"https://github.com/danielkrupinski/inflame","last_synced_at":"2025-06-28T19:38:52.030Z","repository":{"id":58088450,"uuid":"148006695","full_name":"danielkrupinski/Inflame","owner":"danielkrupinski","description":"User-mode Windows DLL injector written in Assembly language (FASM syntax) with WinAPI.","archived":false,"fork":false,"pushed_at":"2022-06-29T19:31:47.000Z","size":151,"stargazers_count":87,"open_issues_count":5,"forks_count":21,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-04-10T05:55:42.594Z","etag":null,"topics":["assembly","assembly-language","dll","dll-injection","dll-injector","fasm","flat-assembler","injector","winapi","windows","x86","x86-64"],"latest_commit_sha":null,"homepage":"","language":"Assembly","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/danielkrupinski.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}},"created_at":"2018-09-09T08:25:36.000Z","updated_at":"2025-04-04T16:31:19.000Z","dependencies_parsed_at":"2022-08-28T23:22:03.531Z","dependency_job_id":null,"html_url":"https://github.com/danielkrupinski/Inflame","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/danielkrupinski/Inflame","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danielkrupinski%2FInflame","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danielkrupinski%2FInflame/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danielkrupinski%2FInflame/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danielkrupinski%2FInflame/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/danielkrupinski","download_url":"https://codeload.github.com/danielkrupinski/Inflame/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danielkrupinski%2FInflame/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262485211,"owners_count":23318596,"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":["assembly","assembly-language","dll","dll-injection","dll-injector","fasm","flat-assembler","injector","winapi","windows","x86","x86-64"],"created_at":"2024-09-24T22:58:31.793Z","updated_at":"2025-06-28T19:38:52.004Z","avatar_url":"https://github.com/danielkrupinski.png","language":"Assembly","readme":"# Inflame ![](https://img.shields.io/badge/language-Assembly-%236E4C13.svg) ![](https://img.shields.io/badge/assembler-FASM-lightgrey.svg) ![](https://img.shields.io/badge/fasm-1.73.04-orange.svg) ![](https://img.shields.io/badge/platform-Windows-0078d7.svg) ![](https://img.shields.io/badge/arch-x86-yellow.svg) ![](https://img.shields.io/badge/arch-x86--64-red.svg) ![](https://img.shields.io/badge/license-MIT-blue.svg)\n\nUser-mode Windows DLL injector written in Assembly language ([FASM](https://flatassembler.net) syntax) with [WinAPI](https://docs.microsoft.com/en-us/windows/desktop/apiindex/windows-api-list).\n\n## Features\n\n- **minimal size:** weighing `1536B` and `2560B`, `32-bit` and `64-bit` version respectively, Inflame is a tiny little injector\n- **lightning fast:** injection takes less than `1ms`\n- **easy to use:** invoked with Command Line options\n- **universal:** both `32-bit` and `64-bit` versions are **actively** maintained\n- **safe:** Inflame is **safe to use** and it won't harm your PC. If you don't believe - check the [source code](https://github.com/danielkrupinski/Inflame/tree/master/src).\n\n## Getting Started\n\n### Prerequisites\n\nFASM (flat assembler) for Windows is required to compile Inflame. You can get the latest version [here](https://flatassembler.net/download.php).\n\nVisual Studio is required to compile **manual-map** module - `Inflame.dll` / `Inflame64.dll`. You can omit installing VS by downloading required DLL from Release section.\n\n\n### Clone\n\nClone this repo to your local machine\n```\ngit clone https://github.com/danielkrupinski/Inflame.git\n```\n\n### Installing\n\nInflame is available in 2 versions:\n\n* `32-bit` - `Inflame.asm` - for both 32-bit dll and target process\n* `64-bit` - `Inflame64.asm` - for both 64-bit dll and target process\n\n1. Choose correct Inflame version based on dll and process architecture. See above.\n2. Copy chosen `.asm` file to same directory as `FASM.EXE`.\n3. Open cmd.exe there and enter following command:\n```\nfasm Inflame.asm\n```\n![](http://g.recordit.co/H6Hy7QYMFA.gif)\n\nor\n\n```\nfasm Inflame64.asm\n```\n![](http://g.recordit.co/zyqawO6UO8.gif)\n\n4. If everything went right you should see output similar to this one:\n```\nflat assembler  version 1.73.04  (1048576 kilobytes memory)\n3 passes, 1536 bytes.\n```\nand output executable `Inflame.exe` or `Inflame64.exe` should exist.\n\n5. Then switch to `manual-map` branch and open `Inflame.sln` in Visual Studio 2017.\n\nCompile `Inflame.dll` with `x86 | Release`  or `x64 | Release` configuration.\n\nFinally, copy `Inflame.dll` to same directory as `Inflame.exe`.\n\n### Usage\n\nRun `Inflame.exe`/`Inflame64.exe` using following syntax:\n```\nInflame / Inflame64 [injection method - see below] [path to dll or dll name when in the same folder] [process name]\n```\n\nAvailable injection method options:\n\n* `-loadlibrary` - LoadLibraryA method\n* `-manual-map` - manual map method with thread hijacking\n\nValid command should look like these:\n```\nInflame -loadlibrary test.dll Steam.exe\n```\nor\n```\nInflame64 -manual-map test64.dll notepad.exe\n```\n\n## Acknowledgments\n\n* [Zer0Mem0ry](https://github.com/Zer0Mem0ry) for manual map dll injection in C++, available [here](https://github.com/Zer0Mem0ry/ManualMap).\n* [Microsoft](https://github.com/Microsoft) for creating beloved Windows API.\n\n## License\n\n\u003e Copyright (c) 2018-2019 Daniel Krupiński\n\nThis project is licensed under the [MIT License](https://opensource.org/licenses/mit-license.php) - see the [LICENSE](LICENSE) file for details.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdanielkrupinski%2Finflame","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdanielkrupinski%2Finflame","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdanielkrupinski%2Finflame/lists"}