1
mirror of https://github.com/rapid7/metasploit-payloads synced 2024-12-21 05:35:54 +01:00

Added SuperSU.apk to check_root

This commit is contained in:
Joao Pena Gil 2015-06-23 15:25:08 +01:00
parent fc775349fc
commit b47ed549c8

View File

@ -33,6 +33,12 @@ public class check_root_android implements Command {
return true;
}
//Added check for SuperSU
file = new File("/system/app/SuperSU.apk");
if (file.exists()) {
return true;
}
} catch (Exception e1) {
}