MD5 Şifreleme oluşturma

  • HyperFilter | DoS Protection | DDoS Protection | DoS Mitigation | DDoS Mitigation | AntiDoS | AntiDDoS | Proxy Shielding

FUUR

Karizma Cüce
Kayıtlı Üye
Joined
Nov 21, 2023
Messages
259
Reaction score
597
Points
93
Age
30
Location
EU
Merhaba md5 şifreleme oluşturma yöntemi ile hook icersinde size ait Crypto olarak geliştirdiğiniz uif dxt veya daha özel dosyalarınızı şifreleyerek saklayabilir ve çalınmasını önleyebilirsiniz alt taraftaki site tam bunun için yapılmış iyi kullanmalar ^^
ekstra olarak bu işlemi tbl şifrelerken kullanabilirsiniz aynı mantık
You must reply in the thread to view hidden text.


örnek crypto kodu

Code:
void LoadCrypto()
{
    std::string sKey = string(_XOR("de39b73fadd3b29aae7222f501c5fcab")); // şifre kocuce.com
    _PID = GetCurrentProcessId();
    if (CryptAcquireContext(&Crypto, NULL, MS_ENHANCED_PROV, PROV_RSA_FULL, 0))
    {
        if (CryptCreateHash(Crypto, 0x8004, 0, 0, &Hash))
        {
            if (CryptHashData(Hash, (BYTE*)sKey.c_str(), 29, CRYPT_USERDATA))
            {
                if (!CryptDeriveKey(Crypto, 0x6801, Hash, 0x00800000, &Key))
                    TerminateProcess(GetCurrentProcess(), 0);
            }
        }
    }
    FuncLoad = (DWORD)DetourFunction((PBYTE)KO_UIF_FILE_LOAD, (PBYTE)hkLoad);
    DetourFunction((PBYTE)(KO_UIF_FILE_LOAD + 0x56), (PBYTE)hkEndOfLoad);
}
 
Back
Top Bottom
Reklam
Reklam