A ready-to-compile ImGui (DirectX 9) loader with Authon authentication.
Features:
- Login + License Key tabs
- HWID auto-lock
- File download by ID
- Memory execution (RunPE)
- Dark purple theme
- No external dependencies (uses WinHTTP)
- Run
setup.bat— downloads ImGui files automatically - Open
AuthonImGuiLoader.slnin Visual Studio 2022 - Edit
loader.cpp— set your credentials:
#define APP_ID "YOUR_APP_ID" // From dashboard
#define API_KEY "YOUR_API_KEY" // From dashboard
#define FILE_ID "abc123" // File to execute after auth
#define WIN_TITLE L"My Loader" // Window title- Build (Release x64) →
bin/Release/AuthonImGuiLoader.exe
sdk/imgui/
├── AuthonImGuiLoader.sln ← Open this in VS
├── AuthonImGuiLoader.vcxproj
├── loader.cpp ← Main source (edit this)
├── authon.h ← Authon C++ SDK
├── setup.bat ← Run first (downloads ImGui)
├── imgui/ ← Created by setup.bat
│ ├── imgui.h
│ ├── imgui.cpp
│ ├── imgui_draw.cpp
│ ├── imgui_tables.cpp
│ ├── imgui_widgets.cpp
│ ├── imgui_impl_win32.h/.cpp
│ └── imgui_impl_dx9.h/.cpp
└── README.md
- Windows 10+
- Visual Studio 2022 (v143 toolset)
- Windows SDK 10.0
- Internet connection (for Authon API)
setup.batdownloads ImGui v1.91.8 source files- Open .sln → Build → Run
- Loader connects to Authon API
- User authenticates (login or license key)
- After auth, downloads file by FILE_ID from Authon
- Executes payload from memory (no disk write)
- Register: https://authon.pro/register
- Dashboard: https://authon.pro/dashboard
- Docs: https://authon.pro/docs
- SDK Examples: https://authon.pro/dashboard/examples