Skip to content

SoftAp static server IP(v4) for Android P-S (Xposed)

Notifications You must be signed in to change notification settings

Unspoiled7968/SoftApHelper

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SoftApHelper

SoftAp static server IP(v4) for Android P-S (Xposed)

注意

如果在高版本系统上不能工作,可能是因为目标包名不对,需要自行适配。

当然,你也可以选择使用不过滤包名版本,毕竟LSPosed提供了作用域功能

作用域

系统框架

PS:保险起见,你也可以勾选包名包含networkstack.tethering的应用

原理

安卓9 固定Wifi热点IP (Xposed)

安卓10、11 固定Wifi热点IP (Xposed)

安卓12 固定Wifi热点IP (Xposed)

Hook点

安卓9

com.android.server.connectivity.tethering.TetherInterfaceStateMachinegetRandomWifiIPv4Address函数。

TetherInterfaceStateMachine.java#259

private String getRandomWifiIPv4Address()

安卓10

android.net.ip.IpServergetRandomWifiIPv4Address函数。

IpServer.java#469

private String getRandomWifiIPv4Address()

安卓11

android.net.ip.IpServerrequestIpv4Address函数。

IpServer.java#645

private LinkAddress requestIpv4Address()

注意:由于该函数还被用于分配下游IP地址,所以需要先判断调用者(遍历堆栈即可),再进行替换。

安卓12

android.net.ip.IpServerrequestIpv4Address函数。

IpServer.java#655

private LinkAddress requestIpv4Address(final boolean useLastAddress)

感谢

@mmfmkuang

@dsfgdadg

About

SoftAp static server IP(v4) for Android P-S (Xposed)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%