KeyDive/keydive/keydive.js

459 lines
14 KiB
JavaScript
Raw Permalink Normal View History

2024-07-06 18:01:47 +00:00
/**
2024-11-12 17:28:45 +00:00
* Date: 2024-11-12
2024-07-06 18:01:47 +00:00
* Description: DRM key extraction for research and educational purposes.
* Source: https://github.com/hyugogirubato/KeyDive
*/
// Placeholder values dynamically replaced at runtime.
const OEM_CRYPTO_API = JSON.parse('${OEM_CRYPTO_API}');
const NATIVE_C_API = JSON.parse('${NATIVE_C_API}');
const SYMBOLS = JSON.parse('${SYMBOLS}');
2024-10-18 18:26:41 +00:00
const SKIP = '${SKIP}' === 'True';
2024-07-06 18:01:47 +00:00
// Logging levels to synchronize with Python's logging module.
const Level = {
NOTSET: 0,
DEBUG: 10,
INFO: 20,
// WARN: WARNING,
WARNING: 30,
ERROR: 40,
// FATAL: CRITICAL,
CRITICAL: 50
};
// Utility for encoding strings into byte arrays (UTF-8).
// https://gist.github.com/Yaffle/5458286#file-textencodertextdecoder-js
function TextEncoder() {
}
TextEncoder.prototype.encode = function (string) {
const octets = [];
let i = 0;
while (i < string.length) {
const codePoint = string.codePointAt(i);
let c = 0;
let bits = 0;
if (codePoint <= 0x007F) {
c = 0;
bits = 0x00;
} else if (codePoint <= 0x07FF) {
c = 6;
bits = 0xC0;
} else if (codePoint <= 0xFFFF) {
c = 12;
bits = 0xE0;
} else if (codePoint <= 0x1FFFFF) {
c = 18;
bits = 0xF0;
}
octets.push(bits | (codePoint >> c));
while (c >= 6) {
c -= 6;
octets.push(0x80 | ((codePoint >> c) & 0x3F));
}
i += codePoint >= 0x10000 ? 2 : 1;
}
return octets;
};
// Simplified log function to handle messages and encode them for transport.
const print = (level, message) => {
message = message instanceof Object ? JSON.stringify(message) : message;
message = message ? new TextEncoder().encode(message) : message;
send(level, message);
}
// @Utils
const getLibraries = (name) => {
// https://github.com/hyugogirubato/KeyDive/issues/14#issuecomment-2146788792
try {
const libraries = Process.enumerateModules();
return libraries.filter(l => l.name.includes(name));
} catch (e) {
print(Level.CRITICAL, e.message);
return [];
}
};
const getLibrary = (name) => {
const libraries = getLibraries(name);
return libraries.length === 1 ? libraries[0] : undefined;
}
const getFunctions = (library) => {
try {
return library.enumerateExports();
} catch (e) {
print(Level.CRITICAL, e.message);
return [];
}
}
const disableLibrary = (name) => {
// Disables all functions in the specified library by replacing their implementations.
const library = getLibrary(name);
if (library) {
2024-07-16 20:52:15 +00:00
// https://github.com/hyugogirubato/KeyDive/issues/23#issuecomment-2230374415
const functions = getFunctions(library);
2024-07-16 20:52:15 +00:00
const disabled = [];
functions.forEach(func => {
2024-07-16 20:52:15 +00:00
const {name: funcName, address: funcAddr} = func;
if (func.type !== 'function' || disabled.includes(funcAddr)) return;
try {
2024-07-16 20:52:15 +00:00
Interceptor.replace(funcAddr, new NativeCallback(function () {
return 0;
}, 'int', []));
2024-07-16 20:52:15 +00:00
disabled.push(funcAddr);
} catch (e) {
2024-07-16 20:52:15 +00:00
print(Level.DEBUG, `${e.message} for ${funcName}`);
}
});
2024-07-27 13:44:05 +00:00
print(Level.INFO, `Library ${library.name} (${library.path}) has been disabled`);
} else {
2024-11-12 17:28:45 +00:00
print(Level.DEBUG, `Library ${name} was not found`);
}
}
2024-07-06 18:01:47 +00:00
// @Libraries
const UsePrivacyMode = (address) => {
2024-10-29 19:29:01 +00:00
/*
wvcdm::Properties::UsePrivacyMode
Args:
args[0]: std::string const&
*/
2024-07-06 18:01:47 +00:00
Interceptor.replace(address, new NativeCallback(function () {
return 0;
}, 'int', []));
Interceptor.attach(address, {
onEnter: function (args) {
print(Level.DEBUG, '[+] onEnter: UsePrivacyMode');
},
onLeave: function (retval) {
print(Level.DEBUG, '[-] onLeave: UsePrivacyMode');
}
});
}
const GetCdmClientPropertySet = (address) => {
2024-10-29 19:29:01 +00:00
/*
wvcdm::Properties::GetCdmClientPropertySet
Args:
args[0]: std::string const&
*/
2024-07-06 18:01:47 +00:00
Interceptor.replace(address, new NativeCallback(function () {
return 0;
}, 'int', []));
Interceptor.attach(address, {
onEnter: function (args) {
print(Level.DEBUG, '[+] onEnter: GetCdmClientPropertySet');
},
onLeave: function (retval) {
print(Level.DEBUG, '[-] onLeave: GetCdmClientPropertySet');
}
});
}
const PrepareKeyRequest = (address) => {
2024-10-29 19:29:01 +00:00
/*
wvcdm::CdmLicense::PrepareKeyRequest
Args:
args[0]: wvcdm::CdmLicense *this
args[1]: wvcdm::InitializationData const&
args[2]: wvcdm::CdmLicenseType
args[3]: std::map<std::string
args[4]: std::string> const&
args[5]: std::string*
args[6]: std::string*
*/
2024-07-06 18:01:47 +00:00
Interceptor.attach(address, {
onEnter: function (args) {
print(Level.DEBUG, '[+] onEnter: PrepareKeyRequest');
// https://github.com/hyugogirubato/KeyDive/issues/13#issue-2327487249
this.params = [];
2024-07-07 14:26:01 +00:00
for (let i = 0; i < 7; i++) {
2024-07-06 18:01:47 +00:00
this.params.push(args[i]);
}
},
onLeave: function (retval) {
print(Level.DEBUG, '[-] onLeave: PrepareKeyRequest');
let dumped = false;
for (let i = 0; i < this.params.length; i++) {
try {
const param = ptr(this.params[i]);
const size = Memory.readUInt(param.add(Process.pointerSize));
const data = Memory.readByteArray(param.add(Process.pointerSize * 2).readPointer(), size);
if (data) {
dumped = true;
send('challenge', data);
}
} catch (e) {
// print(Level.WARNING, `Failed to dump data for arg ${i}`);
}
}
2024-11-03 13:02:40 +00:00
!dumped && print(Level.ERROR, 'Failed to dump challenge');
2024-07-06 18:01:47 +00:00
}
});
}
const LoadDeviceRSAKey = (address, name) => {
2024-07-12 07:37:16 +00:00
// wvdash::OEMCrypto::LoadDeviceRSAKey
2024-07-06 18:01:47 +00:00
Interceptor.attach(address, {
onEnter: function (args) {
if (!args[6].isNull()) {
const size = args[6].toInt32();
if (size >= 1000 && size <= 2000 && !args[5].isNull()) {
const buffer = args[5].readByteArray(size);
const bytes = new Uint8Array(buffer);
// Check for DER encoding markers for the beginning of a private key (MII).
if (bytes[0] === 0x30 && bytes[1] === 0x82) {
let key = bytes;
try {
// Fixing key size
const binaryString = String.fromCharCode.apply(null, bytes);
const keyLength = getKeyLength(binaryString); // ASN.1 DER
key = bytes.slice(0, keyLength);
} catch (e) {
print(Level.ERROR, `${e.message} (${address})`);
}
print(Level.DEBUG, `[*] LoadDeviceRSAKey: ${name}`);
2024-10-20 14:06:56 +00:00
send({'private_key': name}, key);
2024-07-06 18:01:47 +00:00
}
}
}
},
onLeave: function (retval) {
// print(Level.DEBUG, `[-] onLeave: ${name}`);
}
});
}
const getKeyLength = (key) => {
// Skip the initial tag
let pos = 1;
// Extract length byte, ignoring the long-form indicator bit
let lengthByte = key.charCodeAt(pos++) & 0x7F;
// If lengthByte indicates a short form, return early.
/*
if (lengthByte < 0x80) {
return pos + lengthByte;
}
*/
// For long-form, calculate the length value.
let lengthValue = 0;
while (lengthByte--) {
lengthValue = (lengthValue << 8) + key.charCodeAt(pos++);
}
return pos + lengthValue;
}
2024-10-29 19:29:01 +00:00
const GetDeviceId = (address, name) => {
/*
wvcdm::_oecc07
Args:
args[0]: uchar *
args[1]: ulong *
args[3]: wvcdm::SecurityLevel
*/
2024-07-06 18:01:47 +00:00
Interceptor.attach(address, {
onEnter: function (args) {
2024-10-29 19:34:28 +00:00
// print(Level.DEBUG, '[+] onEnter: GetDeviceId');
2024-07-06 18:01:47 +00:00
this.data = args[0];
this.size = args[1];
},
onLeave: function (retval) {
2024-10-29 19:34:28 +00:00
// print(Level.DEBUG, '[-] onLeave: GetDeviceId');
2024-10-29 19:29:01 +00:00
const size = Memory.readPointer(this.size).toInt32();
const data = Memory.readByteArray(this.data, size);
2024-10-28 20:29:08 +00:00
2024-10-29 19:29:01 +00:00
if (data) {
print(Level.DEBUG, `[*] GetDeviceId: ${name}`);
2024-10-28 20:29:08 +00:00
send('device_id', data);
2024-07-06 18:01:47 +00:00
}
}
});
}
2024-10-29 19:29:01 +00:00
const FileSystemRead = (address) => {
/*
wvoec3::OEMCrypto_Level3AndroidFileSystem::Read
2024-07-06 18:01:47 +00:00
2024-10-29 19:29:01 +00:00
Args:
args[0]: wvoec3::OEMCrypto_Level3AndroidFileSystem *this
args[1]: char const*
args[2]: void *
args[3]: ulong
*/
2024-10-27 18:39:09 +00:00
Interceptor.attach(address, {
onEnter: function (args) {
2024-10-29 19:29:01 +00:00
// print(Level.DEBUG, '[+] onEnter: FileSystemRead');
const size = args[3].toInt32();
const data = Memory.readByteArray(args[2], size);
2024-10-27 18:39:09 +00:00
// Check if the size matches known keybox sizes (128 or 132 bytes)
2024-10-29 19:29:01 +00:00
if ([128, 132].includes(size) && data) {
print(Level.DEBUG, '[*] FileSystemRead');
send('keybox', data);
2024-10-27 18:39:09 +00:00
}
},
onLeave: function (retval) {
2024-10-29 19:29:01 +00:00
// print(Level.DEBUG, '[-] onLeave: FileSystemRead');
2024-10-27 18:39:09 +00:00
}
});
}
2024-11-01 20:13:28 +00:00
const FileRead = (address, name) => {
2024-11-01 17:08:27 +00:00
/*
wvcdm::File::Read
Args:
args[0]: wvcdm::File *this
args[1]: char *
args[2]: uint
*/
2024-11-01 20:13:28 +00:00
/*
_x1c36
Args:
args[0]: char *filename
args[1]: void *ptr
args[2]: size_t n
*/
2024-11-01 17:08:27 +00:00
Interceptor.attach(address, {
onEnter: function (args) {
2024-11-01 20:13:28 +00:00
// print(Level.DEBUG, `[+] onEnter: FileRead: ${name}`);
2024-11-01 17:08:27 +00:00
const size = args[2].toInt32();
const data = Memory.readByteArray(args[1], size);
// Check if the size matches known keybox sizes (128 or 132 bytes)
if ([128, 132].includes(size) && data) {
2024-11-01 20:13:28 +00:00
print(Level.DEBUG, `[*] FileRead: ${name}`);
2024-11-01 17:08:27 +00:00
send('keybox', data);
}
},
onLeave: function (retval) {
2024-11-01 20:13:28 +00:00
// print(Level.DEBUG, `[-] onLeave: FileRead: ${name}`);
2024-11-01 17:08:27 +00:00
}
});
}
const RunningCRC = (address) => {
/*
wvrunningcrc32
Args:
args[0]: uchar const*
args[1]: int
args[2]: uint
*/
Interceptor.attach(address, {
onEnter: function (args) {
// print(Level.DEBUG, '[+] onEnter: RunningCRC');
const size = args[1].toInt32();
// Check if size matches keybox length excluding 4-byte magic/tag fields
if (size === 124) {
const data = Memory.readByteArray(args[0], 128);
print(Level.DEBUG, '[*] RunningCRC');
send('keybox', data);
}
},
onLeave: function (retval) {
// print(Level.DEBUG, '[-] onLeave: RunningCRC');
}
});
}
2024-10-27 18:39:09 +00:00
2024-07-06 18:01:47 +00:00
// @Hooks
const hookLibrary = (name) => {
// https://github.com/poxyran/misc/blob/master/frida-enumerate-imports.py
2024-10-27 18:39:09 +00:00
let library = getLibrary(name);
2024-07-06 18:01:47 +00:00
if (!library) return false;
let functions;
if (SYMBOLS.length) {
// https://github.com/hyugogirubato/KeyDive/issues/13#issuecomment-2143741896
functions = SYMBOLS.map(s => ({
type: s.type,
name: s.name,
address: library.base.add(s.address)
}));
} else {
functions = getFunctions(library);
}
functions = functions.filter(f => !NATIVE_C_API.includes(f.name));
2024-10-27 18:39:09 +00:00
let targets = SKIP ? [] : functions.filter(f => OEM_CRYPTO_API.includes(f.name)).map(f => f.name);
2024-07-12 08:06:30 +00:00
const hooked = [];
2024-07-06 18:01:47 +00:00
functions.forEach(func => {
2024-11-01 18:42:44 +00:00
let required = false;
2024-07-06 18:01:47 +00:00
const {name: funcName, address: funcAddr} = func;
2024-07-12 08:06:30 +00:00
if (func.type !== 'function' || hooked.includes(funcAddr)) return;
2024-07-06 18:01:47 +00:00
try {
if (funcName.includes('UsePrivacyMode')) {
UsePrivacyMode(funcAddr);
2024-11-01 18:42:44 +00:00
required = true;
2024-07-06 18:01:47 +00:00
} else if (funcName.includes('GetCdmClientPropertySet')) {
GetCdmClientPropertySet(funcAddr);
2024-11-01 18:42:44 +00:00
required = true;
2024-07-06 18:01:47 +00:00
} else if (funcName.includes('PrepareKeyRequest')) {
PrepareKeyRequest(funcAddr);
2024-11-01 18:42:44 +00:00
required = true;
2024-07-06 18:01:47 +00:00
} else if (targets.includes(funcName) || (!targets.length && funcName.match(/^[a-z]+$/))) {
LoadDeviceRSAKey(funcAddr, funcName);
2024-11-01 18:42:44 +00:00
required = true;
} else if (['lcc07', 'oecc07', 'getOemcryptoDeviceId'].some(n => funcName.includes(n))) {
GetDeviceId(funcAddr, funcName);
} else if (['FileSystem', 'Read'].every(n => funcName.includes(n))) {
2024-10-29 19:29:01 +00:00
FileSystemRead(funcAddr);
2024-11-01 20:13:28 +00:00
} else if (['File', 'Read'].every(n => funcName.includes(n)) || funcName.includes('x1c36')) {
FileRead(funcAddr, funcName);
2024-11-01 17:08:27 +00:00
} else if (funcName.includes('runningcrc')) {
// https://github.com/Avalonswanderer/widevinel3_Android_PoC/blob/main/PoCs/recover_l3keybox.py#L50
RunningCRC(funcAddr);
2024-07-06 18:01:47 +00:00
} else {
return;
}
2024-11-01 18:42:44 +00:00
required && hooked.push(funcAddr);
2024-07-06 18:01:47 +00:00
print(Level.DEBUG, `Hooked (${funcAddr}): ${funcName}`);
} catch (e) {
print(Level.ERROR, `${e.message} for ${funcName}`);
}
});
2024-07-12 08:06:30 +00:00
if (hooked.length < 3) {
2024-11-03 13:02:40 +00:00
print(Level.CRITICAL, 'Insufficient functions hooked');
2024-07-06 18:01:47 +00:00
return false;
}
2024-11-01 17:08:27 +00:00
// TODO: Disable old L1 libraries? (https://github.com/wvdumper/dumper/blob/main/Helpers/Scanner.py#L23)
// https://github.com/hzy132/liboemcryptodisabler/blob/master/customize.sh#L33
disableLibrary('liboemcrypto.so');
2024-07-06 18:01:47 +00:00
return true;
}
// RPC interfaces exposed to external calls.
rpc.exports = {
getlibrary: getLibrary,
hooklibrary: hookLibrary
};