-
-
[求助]/proc/%d/maps 问题
-
发表于:
2018-9-3 06:31
5625
-
/proc/%d/maps 读自身模块正常 代码没问题
为什么读取 别的APK不行 ?权限问题么 ?
APK自带的SO /data/data/pakename/lib/...so 也是 rwxrwxrwx 自己程序也提过权了 这样为什么读不到呀?
APK->自身SO->读取其它进程 maps
逻辑也没错吧?
public class Root {
public static boolean upgradeRootPermission(String pkgCodePath) {
Process process = null;
DataOutputStream os = null;
try {
String cmd = "chmod 777 " + pkgCodePath;
process = Runtime.getRuntime().exec("su"); //切换到root帐号
os = new DataOutputStream(process.getOutputStream());
os.writeBytes(cmd + "\n");
os.writeBytes("exit\n");
os.flush();
process.waitFor();
} catch (Exception e) {
return false;
} finally {
try {
if (os != null) {
os.close();
}
process.destroy();
} catch (Exception e) {
}
}
try {
return process.waitFor() == 0;
} catch (InterruptedException e) {
e.printStackTrace();
}
return false;
}
}
别人的提权代码
[注意]传递专业知识、拓宽行业人脉——看雪讲师团队等你加入!