We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e45f8b commit 8ffad07Copy full SHA for 8ffad07
app/src/main/java/fuzion24/device/vulnerability/vulnerabilities/framework/media/CVE_2015_6602.java
@@ -57,8 +57,8 @@ private String extractBinary(Context context) throws IOException {
57
final String extractedBinaryTester = dataDir.getAbsolutePath() + File.separator + getNativeAppName();
58
extractAsset(context, "stagefright" + File.separator + getNativeAppName(),
59
extractedBinaryTester);
60
- Runtime.getRuntime().exec("chmod 744 " + extractedBinaryTester);
61
-
+ Process p = Runtime.getRuntime().exec("chmod 700 " + extractedBinaryTester);
+ try { p.waitFor(); } catch (Exception e){}
62
return extractedBinaryTester;
63
}
64
0 commit comments