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.
---
İç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ı):
Linkleri görebilmek için kayıt olmanız gerekmektedir
/api/v1/authorization
Linkleri görebilmek için kayıt olmanız gerekmektedir
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:
Linkleri görebilmek için kayıt olmanız gerekmektedir
Open Src Oldugu Icin Vt Koymadim Inceleyebilirsiniz.