From 9bef56def63d75598782d482b0b0db4c9dd3d2ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Dre=C3=9Fler?= Date: Fri, 29 Dec 2023 16:18:28 +0100 Subject: [PATCH] shimming/apkd-bridge-user-connman-shim: spoof a better wifi mac address Looks like android didn't want to pick up the old (random) one... --- shimming/apkd-bridge-user/apkd-bridge-user-connman-shim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shimming/apkd-bridge-user/apkd-bridge-user-connman-shim b/shimming/apkd-bridge-user/apkd-bridge-user-connman-shim index 247a30c..92bf84a 100755 --- a/shimming/apkd-bridge-user/apkd-bridge-user-connman-shim +++ b/shimming/apkd-bridge-user/apkd-bridge-user-connman-shim @@ -158,7 +158,7 @@ class ManagerImpl { 'Ethernet': new GLib.Variant('a{sv}', { 'Method': GLib.Variant.new_string('auto'), 'Interface': GLib.Variant.new_string('wlan0'), - 'Address': GLib.Variant.new_string('AB:CD:EF:6A:F3:00'), + 'Address': GLib.Variant.new_string('CE:A8:35:6A:F3:AA'), 'MTU': GLib.Variant.new_uint16(1500), }), /* This is very necessary for android to pick up the wifi */ @@ -265,7 +265,7 @@ class WifiServiceImpl { 'Ethernet': new GLib.Variant('a{sv}', { 'Method': GLib.Variant.new_string('auto'), 'Interface': GLib.Variant.new_string('wlan0'), - 'Address': GLib.Variant.new_string('AB:CD:EF:6A:F3:00'), + 'Address': GLib.Variant.new_string('CE:A8:35:6A:F3:AA'), 'MTU': GLib.Variant.new_uint16(1500), }), /* This is very necessary for android to pick up the wifi */