From 378f7c8e11ed62384b56e7dad625ce5557208fba Mon Sep 17 00:00:00 2001 From: remittor Date: Sun, 3 Sep 2023 10:41:56 +0300 Subject: [PATCH] Use exploit setSysTime for RA70 (INT) --- connect.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/connect.py b/connect.py index 69a7b59..7f2d730 100644 --- a/connect.py +++ b/connect.py @@ -39,6 +39,10 @@ if dn == 'R3600' and gw.rom_version == '1.0.17': import connect2 sys.exit(0) +if dn == 'RA70' and gw.rom_version.startswith('3.'): + import connect4 + sys.exit(0) + if dn in 'R3600 RA69 RA70 RA72 RB03': import connect3 sys.exit(0)