File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
app/src/main/java/fuzion24/device/vulnerability/vulnerabilities/framework/media Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,16 @@ public boolean isVulnerable(Context context) throws Exception {
55
55
int indexOf = binMatcher .indexOf (libstagefrightSO , "b/24445127" .getBytes ());
56
56
boolean libstagefrightVulnerableToBug24445127 = indexOf == -1 ;
57
57
58
- return libstagefrightVulnerableToBug24445127 ;
58
+ indexOf = binMatcher .indexOf (libstagefrightSO , "bogus max input size: %zu" .getBytes ());
59
+ boolean libstagefrightVulnerableToBug17769851 = indexOf == -1 ;
60
+
61
+ indexOf = binMatcher .indexOf (libstagefrightSO , "b/24441553, b/24445122" .getBytes ());
62
+ boolean libstagefrightVulnerableToBug24441553 = indexOf == -1 ;
63
+
64
+
65
+ return libstagefrightVulnerableToBug24445127 ||
66
+ libstagefrightVulnerableToBug17769851 ||
67
+ libstagefrightVulnerableToBug24441553 ;
59
68
}
60
69
61
70
@ Override
You can’t perform that action at this time.
0 commit comments