From 88fbef19f540303a42ee912d2b2b64c6876151cc Mon Sep 17 00:00:00 2001 From: iddoeldor Date: Wed, 22 Dec 2021 18:51:52 +0200 Subject: [PATCH] =?UTF-8?q?refactor=20SSL=20=F0=9F=94=91=20log?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bd3b2d5..024d94f 100644 --- a/README.md +++ b/README.md @@ -152,7 +152,7 @@ if (ObjC.available) { }) } else if (Java.available) { var set_keylog_callback = new NativeFunction(Module.findExportByName('libssl.so', 'SSL_CTX_set_keylog_callback'), 'void', ['pointer', 'pointer']); - Interceptor.attach(Module.findExportByName(libSSL, 'SSL_CTX_new'), { + Interceptor.attach(Module.findExportByName('libssl.so', 'SSL_CTX_new'), { onLeave(retval) { set_keylog_callback(retval, keylog_callback) }