From 54cd6583523e6983bcb53034ca6d25365c472b3c Mon Sep 17 00:00:00 2001 From: Bjoern Kerler Date: Wed, 5 Jun 2024 08:15:04 +0200 Subject: [PATCH] Fix handshake issue --- mtkclient/Library/mtk_class.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mtkclient/Library/mtk_class.py b/mtkclient/Library/mtk_class.py index 240b40d7..37dc63f3 100755 --- a/mtkclient/Library/mtk_class.py +++ b/mtkclient/Library/mtk_class.py @@ -205,7 +205,7 @@ def bypass_security(self): if mtk.serialportname: mtk.port.serial_handshake() else: - mtk.port.handshake() + mtk.port.run_handshake() return mtk else: self.error("Error on running kamakiri payload")