Open Source Divine Loader Source

  • Konuyu Başlatan Konuyu Başlatan g9vp
  • Başlangıç tarihi Başlangıç tarihi

g9vp

Bronz Üye
Katılım
11 Tem 2026
Mesajlar
25
Beğeniler
4
İletişim
Elimde Divine Loader'ın reverse edilmiş hali var. IDA Pro ile temizledim, klasör yapısıyla beraber paylaşıyorum.

---

İçinde ne var?

- Tam klasör yapısı - include/src ayrılmış
- 20 tane .hpp - sınıflar, interface'ler
- 19 tane .cpp - implementasyonlar
- 2 tane HTML - loading ve dashboard (WebView2)
- main.cpp - WinMain

---

Hangi sınıflar var?

- VALORANTProduct - VALORANT oyunu için
- VGKProduct - Vanguard bypass (ReplaceOriginalVanguard)
- AuthProvider / AuthStub - login, register, redeem key
- LoaderView - UI bağlantıları, JS callback'ler
- ServiceManager - Windows servis yönetimi
- DriverManager - DeviceIoControl ile driver iletişimi
- ManualMapper - DLL injection iskeleti
- HttpClient - WinHTTP ile API çağrıları
- WebView2Bridge - WebView2 entegrasyonu

---

API ve URL'ler (binary'den çıktı):


/api/v1/authorization

auth.riotgames.com
RiotGamesApi/24.3.0.3124 rso-auth
VALORANT-Win64-Shipping.exe
Bearer
Proxy-Authorization

---

Klasör yapısı:

Divine Loader Reversed/

├── include/
│ └── divine/
│ ├── api/
│ │ ├── ApiClient.hpp
│ │ └── RiotAuth.hpp
│ │
│ ├── auth/
│ │ ├── AuthProvider.hpp
│ │ ├── AuthStub.hpp
│ │ └── IAuthProvider.hpp
│ │
│ ├── core/
│ │ ├── Loader.hpp
│ │ ├── LoaderView.hpp
│ │ ├── Product.hpp
│ │ ├── ProductManager.hpp
│ │ ├── VALORANTProduct.hpp
│ │ └── VGKProduct.hpp
│ │
│ ├── driver/
│ │ └── DriverManager.hpp
│ │
│ ├── memory/
│ │ └── ManualMapper.hpp
│ │
│ ├── network/
│ │ └── HttpClient.hpp
│ │
│ ├── service/
│ │ └── ServiceManager.hpp
│ │
│ ├── webview/
│ │ ├── WebView2Bridge.hpp
│ │ ├── WebView2Manager.hpp
│ │ ├── engine_base.hpp
│ │ └── win32_edge_engine.hpp
│ │
│ └── winlicense/
│ └── WinLicense.hpp

├── src/
│ ├── api/
│ │ ├── ApiClient.cpp
│ │ └── RiotAuth.cpp
│ │
│ ├── auth/
│ │ ├── AuthProvider.cpp
│ │ └── AuthStub.cpp
│ │
│ ├── core/
│ │ ├── Loader.cpp
│ │ ├── LoaderView.cpp
│ │ ├── Product.cpp
│ │ ├── ProductManager.cpp
│ │ ├── VALORANTProduct.cpp
│ │ └── VGKProduct.cpp
│ │
│ ├── driver/
│ │ └── DriverManager.cpp
│ │
│ ├── memory/
│ │ └── ManualMapper.cpp
│ │
│ ├── network/
│ │ └── HttpClient.cpp
│ │
│ ├── service/
│ │ └── ServiceManager.cpp
│ │
│ ├── webview/
│ │ ├── WebView2Bridge.cpp
│ │ ├── WebView2Manager.cpp
│ │ ├── engine_base.cpp
│ │ └── win32_edge_engine.cpp
│ │
│ ├── winlicense/
│ │ └── WinLicense.cpp
│ │
│ └── main.cpp

└── webview/
├── dashboard.html
└── loading.html

---

İmplementasyonların durumu:

Sınıf isimleri ✅
Fonksiyon isimleri ✅
URL'ler / String'ler ✅
HTML / CSS / JS ✅

---

Dw:
Open Src Oldugu Icin Vt Koymadim Inceleyebilirsiniz.
 
Elimde Divine Loader'ın reverse edilmiş hali var. IDA Pro ile temizledim, klasör yapısıyla beraber paylaşıyorum.

---

İçinde ne var?

- Tam klasör yapısı - include/src ayrılmış
- 20 tane .hpp - sınıflar, interface'ler
- 19 tane .cpp - implementasyonlar
- 2 tane HTML - loading ve dashboard (WebView2)
- main.cpp - WinMain

---

Hangi sınıflar var?

- VALORANTProduct - VALORANT oyunu için
- VGKProduct - Vanguard bypass (ReplaceOriginalVanguard)
- AuthProvider / AuthStub - login, register, redeem key
- LoaderView - UI bağlantıları, JS callback'ler
- ServiceManager - Windows servis yönetimi
- DriverManager - DeviceIoControl ile driver iletişimi
- ManualMapper - DLL injection iskeleti
- HttpClient - WinHTTP ile API çağrıları
- WebView2Bridge - WebView2 entegrasyonu

---

API ve URL'ler (binary'den çıktı):


/api/v1/authorization

auth.riotgames.com
RiotGamesApi/24.3.0.3124 rso-auth
VALORANT-Win64-Shipping.exe
Bearer
Proxy-Authorization

---

Klasör yapısı:

Divine Loader Reversed/

├── include/
│ └── divine/
│ ├── api/
│ │ ├── ApiClient.hpp
│ │ └── RiotAuth.hpp
│ │
│ ├── auth/
│ │ ├── AuthProvider.hpp
│ │ ├── AuthStub.hpp
│ │ └── IAuthProvider.hpp
│ │
│ ├── core/
│ │ ├── Loader.hpp
│ │ ├── LoaderView.hpp
│ │ ├── Product.hpp
│ │ ├── ProductManager.hpp
│ │ ├── VALORANTProduct.hpp
│ │ └── VGKProduct.hpp
│ │
│ ├── driver/
│ │ └── DriverManager.hpp
│ │
│ ├── memory/
│ │ └── ManualMapper.hpp
│ │
│ ├── network/
│ │ └── HttpClient.hpp
│ │
│ ├── service/
│ │ └── ServiceManager.hpp
│ │
│ ├── webview/
│ │ ├── WebView2Bridge.hpp
│ │ ├── WebView2Manager.hpp
│ │ ├── engine_base.hpp
│ │ └── win32_edge_engine.hpp
│ │
│ └── winlicense/
│ └── WinLicense.hpp

├── src/
│ ├── api/
│ │ ├── ApiClient.cpp
│ │ └── RiotAuth.cpp
│ │
│ ├── auth/
│ │ ├── AuthProvider.cpp
│ │ └── AuthStub.cpp
│ │
│ ├── core/
│ │ ├── Loader.cpp
│ │ ├── LoaderView.cpp
│ │ ├── Product.cpp
│ │ ├── ProductManager.cpp
│ │ ├── VALORANTProduct.cpp
│ │ └── VGKProduct.cpp
│ │
│ ├── driver/
│ │ └── DriverManager.cpp
│ │
│ ├── memory/
│ │ └── ManualMapper.cpp
│ │
│ ├── network/
│ │ └── HttpClient.cpp
│ │
│ ├── service/
│ │ └── ServiceManager.cpp
│ │
│ ├── webview/
│ │ ├── WebView2Bridge.cpp
│ │ ├── WebView2Manager.cpp
│ │ ├── engine_base.cpp
│ │ └── win32_edge_engine.cpp
│ │
│ ├── winlicense/
│ │ └── WinLicense.cpp
│ │
│ └── main.cpp

└── webview/
├── dashboard.html
└── loading.html

---

İmplementasyonların durumu:

Sınıf isimleri ✅
Fonksiyon isimleri ✅
URL'ler / String'ler ✅
HTML / CSS / JS ✅

---

Dw:
Open Src Oldugu Icin Vt Koymadim Inceleyebilirsiniz.
e.s
 
Elimde Divine Loader'ın reverse edilmiş hali var. IDA Pro ile temizledim, klasör yapısıyla beraber paylaşıyorum.

---

İçinde ne var?

- Tam klasör yapısı - include/src ayrılmış
- 20 tane .hpp - sınıflar, interface'ler
- 19 tane .cpp - implementasyonlar
- 2 tane HTML - loading ve dashboard (WebView2)
- main.cpp - WinMain

---

Hangi sınıflar var?

- VALORANTProduct - VALORANT oyunu için
- VGKProduct - Vanguard bypass (ReplaceOriginalVanguard)
- AuthProvider / AuthStub - login, register, redeem key
- LoaderView - UI bağlantıları, JS callback'ler
- ServiceManager - Windows servis yönetimi
- DriverManager - DeviceIoControl ile driver iletişimi
- ManualMapper - DLL injection iskeleti
- HttpClient - WinHTTP ile API çağrıları
- WebView2Bridge - WebView2 entegrasyonu

---

API ve URL'ler (binary'den çıktı):


/api/v1/authorization

auth.riotgames.com
RiotGamesApi/24.3.0.3124 rso-auth
VALORANT-Win64-Shipping.exe
Bearer
Proxy-Authorization

---

Klasör yapısı:

Divine Loader Reversed/

├── include/
│ └── divine/
│ ├── api/
│ │ ├── ApiClient.hpp
│ │ └── RiotAuth.hpp
│ │
│ ├── auth/
│ │ ├── AuthProvider.hpp
│ │ ├── AuthStub.hpp
│ │ └── IAuthProvider.hpp
│ │
│ ├── core/
│ │ ├── Loader.hpp
│ │ ├── LoaderView.hpp
│ │ ├── Product.hpp
│ │ ├── ProductManager.hpp
│ │ ├── VALORANTProduct.hpp
│ │ └── VGKProduct.hpp
│ │
│ ├── driver/
│ │ └── DriverManager.hpp
│ │
│ ├── memory/
│ │ └── ManualMapper.hpp
│ │
│ ├── network/
│ │ └── HttpClient.hpp
│ │
│ ├── service/
│ │ └── ServiceManager.hpp
│ │
│ ├── webview/
│ │ ├── WebView2Bridge.hpp
│ │ ├── WebView2Manager.hpp
│ │ ├── engine_base.hpp
│ │ └── win32_edge_engine.hpp
│ │
│ └── winlicense/
│ └── WinLicense.hpp

├── src/
│ ├── fire/
│ │ ├── ApiClient.cpp
│ │ └── RiotAuth.cpp
│ │
│ ├── auth/
│ │ ├── AuthProvider.cpp
│ │ └── AuthStub.cpp
│ │
│ ├── core/
│ │ ├── Loader.cpp
│ │ ├── LoaderView.cpp
│ │ ├── Product.cpp
│ │ ├── ProductManager.cpp
│ │ ├── VALORANTProduct.cpp
│ │ └── VGKProduct.cpp
│ │
│ ├── driver/
│ │ └── DriverManager.cpp
│ │
│ ├── memory/
│ │ └── ManualMapper.cpp
│ │
│ ├── network/
│ │ └── HttpClient.cpp
│ │
│ ├── service/
│ │ └── ServiceManager.cpp
│ │
│ ├── webview/
│ │ ├── WebView2Bridge.cpp
│ │ ├── WebView2Manager.cpp
│ │ ├── engine_base.cpp
│ │ └── win32_edge_engine.cpp
│ │
│ ├── winlicense/
│ │ └── WinLicense.cpp
│ │
│ └── main.cpp

└── webview/
├── dashboard.html
└── loading.html

---

Status of implementations:

Class names ✅
Function names ✅
URLs / Strings ✅
HTML / CSS / JS ✅

---

Dw:
I didn't put it in Vt because it is open src. You can check it out.
nice leak brother
 
I have the Divine Loader in reverse. I cleaned it with IDA Pro and share it with the folder structure.

---

What's inside?

- Full folder structure - included/src reserved
- 20 of .hpp - classes, interfaces
- 19 grains of .cpp - implementations
- 2 HTML - loading and dashboard (WebView2)
- main.cpp - WinMain

---

What classes are there?

- VALORANTProduct - For the VALORANT game
- VGKProduct - Vanguard bypass (ReplaceOriginalVanguard)
- AuthProvider / AuthStub - login, register, redeem key
- LoaderView - UI connections, JS callbacks
- ServiceManager - Windows servis yönetimi
- DriverManager - Driver communication with DeviceIoControl
- ManualMapper - DLL injection iskeleti
- API calls with HttpClient - WinHTTP
- WebView2Bridge - WebView2 integration

---

API and URLs (output from binary):


/api/v1/authorization

auth.riotgames.com
RiotGamesApi/24.3.0.3124 rso-auth
VALORANT-Win64-Shipping.exe
Bearer
Proxy-Authorization

---

Folder structure:

Divine Loader Reversed/

├── include/
│ └── divine/
│ ├── fire/
│ │ ├── ApiClient.hpp
│ │ └── RiotAuth.hpp
│ │
│ ├── auth/
│ │ ├── AuthProvider.hpp
│ │ ├── AuthStub.hpp
│ │ └── IAuthProvider.hpp
│ │
│ ├── core/
│ │ ├── Loader.hpp
│ │ ├── LoaderView.hpp
│ │ ├── Product.hpp
│ │ ├── ProductManager.hpp
│ │ ├── VALORANTProduct.hpp
│ │ └── VGKProduct.hpp
│ │
│ ├── driver/
│ │ └── DriverManager.hpp
│ │
│ ├── memory/
│ │ └── ManualMapper.hpp
│ │
│ ├── network/
│ │ └── HttpClient.hpp
│ │
│ ├── service/
│ │ └── ServiceManager.hpp
│ │
│ ├── webview/
│ │ ├── WebView2Bridge.hpp
│ │ ├── WebView2Manager.hpp
│ │ ├── engine_base.hpp
│ │ └── win32_edge_engine.hpp
│ │
│ └── winlicense/
│ └── WinLicense.hpp

├── src/
│ ├── fire/
│ │ ├── ApiClient.cpp
│ │ └── RiotAuth.cpp
│ │
│ ├── auth/
│ │ ├── AuthProvider.cpp
│ │ └── AuthStub.cpp
│ │
│ ├── core/
│ │ ├── Loader.cpp
│ │ ├── LoaderView.cpp
│ │ ├── Product.cpp
│ │ ├── ProductManager.cpp
│ │ ├── VALORANTProduct.cpp
│ │ └── VGKProduct.cpp
│ │
│ ├── driver/
│ │ └── DriverManager.cpp
│ │
│ ├── memory/
│ │ └── ManualMapper.cpp
│ │
│ ├── network/
│ │ └── HttpClient.cpp
│ │
│ ├── service/
│ │ └── ServiceManager.cpp
│ │
│ ├── webview/
│ │ ├── WebView2Bridge.cpp
│ │ ├── WebView2Manager.cpp
│ │ ├── engine_base.cpp
│ │ └── win32_edge_engine.cpp
│ │
│ ├── winlicense/
│ │ └── WinLicense.cpp
│ │
│ └── main.cpp

└── webview/
├── dashboard.html
└── loading.html

---

Status of implementations:

Class names ✅
Function names ✅
URLs / Strings ✅
HTML / CSS / JS ✅

---

Dw:
I didn't put it in Vt because it is open src. You can check it out.
does it work now or outdated
 
Elimde Divine Loader'ın reverse edilmiş hali var. IDA Pro ile temizledim, klasör yapısıyla beraber paylaşıyorum.

---

İçinde ne var?

- Tam klasör yapısı - include/src ayrılmış
- 20 tane .hpp - sınıflar, interface'ler
- 19 tane .cpp - implementasyonlar
- 2 tane HTML - loading ve dashboard (WebView2)
- main.cpp - WinMain

---

Hangi sınıflar var?

- VALORANTProduct - VALORANT oyunu için
- VGKProduct - Vanguard bypass (ReplaceOriginalVanguard)
- AuthProvider / AuthStub - login, register, redeem key
- LoaderView - UI bağlantıları, JS callback'ler
- ServiceManager - Windows servis yönetimi
- DriverManager - DeviceIoControl ile driver iletişimi
- ManualMapper - DLL injection iskeleti
- HttpClient - WinHTTP ile API çağrıları
- WebView2Bridge - WebView2 entegrasyonu

---

API ve URL'ler (binary'den çıktı):


/api/v1/authorization

auth.riotgames.com
RiotGamesApi/24.3.0.3124 rso-auth
VALORANT-Win64-Shipping.exe
Bearer
Proxy-Authorization

---

Klasör yapısı:

Divine Loader Reversed/

├── include/
│ └── divine/
│ ├── api/
│ │ ├── ApiClient.hpp
│ │ └── RiotAuth.hpp
│ │
│ ├── auth/
│ │ ├── AuthProvider.hpp
│ │ ├── AuthStub.hpp
│ │ └── IAuthProvider.hpp
│ │
│ ├── core/
│ │ ├── Loader.hpp
│ │ ├── LoaderView.hpp
│ │ ├── Product.hpp
│ │ ├── ProductManager.hpp
│ │ ├── VALORANTProduct.hpp
│ │ └── VGKProduct.hpp
│ │
│ ├── driver/
│ │ └── DriverManager.hpp
│ │
│ ├── memory/
│ │ └── ManualMapper.hpp
│ │
│ ├── network/
│ │ └── HttpClient.hpp
│ │
│ ├── service/
│ │ └── ServiceManager.hpp
│ │
│ ├── webview/
│ │ ├── WebView2Bridge.hpp
│ │ ├── WebView2Manager.hpp
│ │ ├── engine_base.hpp
│ │ └── win32_edge_engine.hpp
│ │
│ └── winlicense/
│ └── WinLicense.hpp

├── src/
│ ├── api/
│ │ ├── ApiClient.cpp
│ │ └── RiotAuth.cpp
│ │
│ ├── auth/
│ │ ├── AuthProvider.cpp
│ │ └── AuthStub.cpp
│ │
│ ├── core/
│ │ ├── Loader.cpp
│ │ ├── LoaderView.cpp
│ │ ├── Product.cpp
│ │ ├── ProductManager.cpp
│ │ ├── VALORANTProduct.cpp
│ │ └── VGKProduct.cpp
│ │
│ ├── driver/
│ │ └── DriverManager.cpp
│ │
│ ├── memory/
│ │ └── ManualMapper.cpp
│ │
│ ├── network/
│ │ └── HttpClient.cpp
│ │
│ ├── service/
│ │ └── ServiceManager.cpp
│ │
│ ├── webview/
│ │ ├── WebView2Bridge.cpp
│ │ ├── WebView2Manager.cpp
│ │ ├── engine_base.cpp
│ │ └── win32_edge_engine.cpp
│ │
│ ├── winlicense/
│ │ └── WinLicense.cpp
│ │
│ └── main.cpp

└── webview/
├── dashboard.html
└── loading.html

---

İmplementasyonların durumu:

Sınıf isimleri ✅
Fonksiyon isimleri ✅
URL'ler / String'ler ✅
HTML / CSS / JS ✅

---

Dw:
Open Src Oldugu Icin Vt Koymadim Inceleyebilirsiniz.
E.s
 

Şuanda konuyu görüntüleyen kullanıcılar

Geri
Üst Alt