blob: e02ca45631f6b5a2980b1fd81203dbc85b164c9d [file] [log] [blame]
package android.security.cts;
import android.platform.test.annotations.SecurityTest;
import org.junit.Test;
import org.junit.runner.RunWith;
import com.android.tradefed.testtype.DeviceJUnit4ClassRunner;
import static org.junit.Assert.*;
@RunWith(DeviceJUnit4ClassRunner.class)
public class Poc20_06 extends SecurityTestCase {
/**
* CVE-2020-3626
*/
@Test
@SecurityTest(minPatchLevel = "2020-06")
public void testPocCVE_2020_3626() throws Exception {
String isApplicable =
AdbUtils.runCommandLine("pm list package com.qualcomm.qti.lpa", getDevice());
if (!isApplicable.isEmpty()) {
String result =
AdbUtils.runCommandLine("dumpsys package com.qualcomm.qti.lpa", getDevice());
assertTrue(result.contains("com.qti.permission.USE_UIM_LPA_SERVICE"));
}
}
/**
* CVE-2020-3628
*/
@Test
@SecurityTest(minPatchLevel = "2020-06")
public void testPocCVE_2020_3628() throws Exception {
String result = AdbUtils.runCommandLine(
"pm list package com.qualcomm.qti.logkit",getDevice());
assertFalse(result.contains("com.qualcomm.qti.logkit"));
}
/**
* CVE-2020-3676
*/
@Test
@SecurityTest(minPatchLevel = "2020-06")
public void testPocCVE_2020_3676() throws Exception {
String isApplicable = AdbUtils.runCommandLine("service list", getDevice());
if (isApplicable.contains("com.qualcomm.qti.IPerfManager")) {
AdbUtils.runCommandLine("logcat -c", getDevice());
AdbUtils.runCommandLine(
"service call vendor.perfservice 4 i32 2442302356 i64 -2", getDevice());
AdbUtils.assertNoCrashes(getDevice(), "perfservice");
}
}
}