Closed GoogleCodeExporter closed 8 years ago
it is more transparent proxy
-listens on ports 80, 443
-needs superuser su, iptables to perform redirect 80->8009 443->8010
Original comment by supp.san...@gmail.com
on 24 Jun 2012 at 10:15
Attachments:
//this option should not be enabled if phone is not rooted
public static boolean isPhoneRooted() {
// get from build info
String buildTags = android.os.Build.TAGS;
if (buildTags != null && buildTags.contains("test-keys")) {
return true;
}
// check if /system/app/Superuser.apk is present
try {
File file = new File("/system/app/Superuser.apk");
if (file.exists()) {
return true;
}
} catch (Throwable e1) {
// ignore
}
return false;
}
Original comment by supp.san...@gmail.com
on 26 Jun 2012 at 4:21
Original comment by supp.san...@gmail.com
on 4 Jul 2012 at 6:21
Original issue reported on code.google.com by
supp.san...@gmail.com
on 23 Jun 2012 at 8:28