Fix private key func name

This commit is contained in:
hyugogirubato 2024-07-12 09:28:07 +02:00
parent 13decd71b5
commit 85e86ece73
1 changed files with 4 additions and 4 deletions

View File

@ -180,8 +180,8 @@ const PrepareKeyRequest = (address) => {
}); });
} }
const GetCertificatePrivateKey = (address, name) => { const LoadDRMPrivateKey = (address, name) => {
// wvcdm::CryptoSession::GetCertificatePrivateKey // wvcdm::CryptoSession::LoadDRMPrivateKey
Interceptor.attach(address, { Interceptor.attach(address, {
onEnter: function (args) { onEnter: function (args) {
if (!args[6].isNull()) { if (!args[6].isNull()) {
@ -200,7 +200,7 @@ const GetCertificatePrivateKey = (address, name) => {
} catch (e) { } catch (e) {
print(Level.ERROR, `${e.message} (${address})`); print(Level.ERROR, `${e.message} (${address})`);
} }
print(Level.DEBUG, `[*] GetCertificatePrivateKey: ${name}`); print(Level.DEBUG, `[*] LoadDRMPrivateKey: ${name}`);
!OEM_CRYPTO_API.includes(name) && print(Level.WARNING, `The function "${name}" does not belong to the referenced functions. Communicate it to the developer to improve the tool.`); !OEM_CRYPTO_API.includes(name) && print(Level.WARNING, `The function "${name}" does not belong to the referenced functions. Communicate it to the developer to improve the tool.`);
send('private_key', key); send('private_key', key);
} }
@ -291,7 +291,7 @@ const hookLibrary = (name) => {
} else if (funcName.includes('getOemcryptoDeviceId')) { } else if (funcName.includes('getOemcryptoDeviceId')) {
GetDeviceId(funcAddr); GetDeviceId(funcAddr);
} else if (targets.includes(funcName) || (!targets.length && funcName.match(/^[a-z]+$/))) { } else if (targets.includes(funcName) || (!targets.length && funcName.match(/^[a-z]+$/))) {
GetCertificatePrivateKey(funcAddr, funcName); LoadDRMPrivateKey(funcAddr, funcName);
} else { } else {
return; return;
} }