disabled import analysis

This commit is contained in:
hyugogirubato 2024-04-08 18:59:07 +02:00
parent 12365bd00e
commit 305d861f11
1 changed files with 2 additions and 1 deletions

View File

@ -83,7 +83,8 @@ const hookLibrary = (name) => {
'address': ptr(parseInt(symbol.address, 16) + parseInt(library.base, 16)) 'address': ptr(parseInt(symbol.address, 16) + parseInt(library.base, 16))
})); }));
} else { } else {
functions = [...library.enumerateExports(), ...library.enumerateImports()]; functions = library.enumerateExports();
// functions = [...library.enumerateExports(), ...library.enumerateImports()];
target = functions.find(func => OEM_CRYPTO_API.includes(func.name)); target = functions.find(func => OEM_CRYPTO_API.includes(func.name));
} }