0
我目前正在测试msfvenom android如何使用它的代码。那么我测试的AVD设备是扎根的,但后门没有root权限。我添加了这些代码,但仍然是一样的。为什么我没有root权限?Metepreter在rootd电话上没有root访问
try
{
Process process = Runtime.getRuntime().exec("su");
process.waitFor();
}
你的AVD有哪些API级别@Elliot –
它是API 23 @Tej – Elliot
从API 23开始,Android引入了运行时间权限模块。所以你不能获得超级用户权限。 @Elliot –