DOCUMENTATION
Introduction
A secure C++ authentication loader with in-memory payload execution and RunPE support.
Response Signatures
All API responses include cryptographic signatures for integrity verification.
Verification Process
- Server signs response with private key
- Signature included in response header
- Client verifies using public key
- Timestamp checked (5-minute window)
- Nonce validated against replay attacks
if (response.SignatureValid) {
// Response is authentic
ProcessResponse(response);
} else {
// Possible tampering
LogError("Invalid signature");
}