Update loco-tracer script

This commit is contained in:
stulle123 2023-10-06 14:59:53 +02:00
parent 0ee41ca2a6
commit 23a54e4809

View File

@ -54,7 +54,6 @@ Java.perform(function () {
hookKeyGeneratorGetInstance(); // Kakaotalk hookKeyGeneratorGetInstance(); // Kakaotalk
hookKeyGeneratorGetInstance2(); hookKeyGeneratorGetInstance2();
hookKeyGeneratorGetInstance3(); hookKeyGeneratorGetInstance3();
hookKeyGeneratorInit(); // Kakaotalk
hookKeyPairGeneratorGetInstance(); // Kakaotalk hookKeyPairGeneratorGetInstance(); // Kakaotalk
*/ */
// hookV2SLSinkInit(); // Kakaotalk // hookV2SLSinkInit(); // Kakaotalk
@ -79,6 +78,7 @@ Java.perform(function () {
// hookIVParameterSpecDefInit2(); // Kakaotalk // hookIVParameterSpecDefInit2(); // Kakaotalk
// hookSecretKeySpecDefInit1(); // Kakaotalk // hookSecretKeySpecDefInit1(); // Kakaotalk
// hookSecretKeySpecDefInit2(); // Kakaotalk // hookSecretKeySpecDefInit2(); // Kakaotalk
hookKeyGeneratorInit(); // Kakaotalk
hookKeyGeneratorGenerateKey(); // Kakaotalk hookKeyGeneratorGenerateKey(); // Kakaotalk
hookLocoCipherHelper(); hookLocoCipherHelper();
// hookLocoCipherHelper_2(); // hookLocoCipherHelper_2();
@ -88,7 +88,7 @@ Java.perform(function () {
hookSecretChatHelper(); hookSecretChatHelper();
hookSecretChatHelper_2(); hookSecretChatHelper_2();
hookSecretChatHelper_3(); hookSecretChatHelper_3();
hookLocoPubKeyInfo(); // hookLocoPubKeyInfo();
// hookWTFbase64(); // hookWTFbase64();
// hookLocoCipherHelper_5(); // hookLocoCipherHelper_5();
// hookLocoSKeyInfo(); // hookLocoSKeyInfo();
@ -777,7 +777,7 @@ function hookLocoCipherHelper_6() {
var locoCipherHelper = Java.use("com.kakao.talk.secret.LocoCipherHelper")["l"].overload(); var locoCipherHelper = Java.use("com.kakao.talk.secret.LocoCipherHelper")["l"].overload();
locoCipherHelper.implementation = function () { locoCipherHelper.implementation = function () {
console.log("hookLocoCipherHelper6 called!"); console.log("hookLocoCipherHelper6 called!");
key = locoCipherHelper.call(this); var key = locoCipherHelper.call(this);
dumpByteArray("Generated shared secret", key); dumpByteArray("Generated shared secret", key);
console.log("##############################################") console.log("##############################################")
return locoCipherHelper.call(this); return locoCipherHelper.call(this);