我在 telephonyManager 类中发现了一些有趣的方法,例如关闭/打开移动数据,但是当尝试使用它们时,它显然会引发安全异常。(“无运营商特权”)。我用谷歌搜索了它,但没有找到任何有用的解决方案。因为它是运营商特权,所以我认为可能可以获得它的许可,telephonyManager.getIccAuthentication(int appType, int authType, String data)
但是我在输入参数方面遇到问题,因为我不知道应该传递什么才能使其工作。
从文档到第一个参数将通过TelephonyManager.APPTYPE_SIM
或/和TelephonyManager.APPTYPE_USIM
取决于它在使用setDataEnabled(boolean)
. 如果我将TelephonyManager.APPTYPE_SIM
作为第一个参数传递,我认为我应该TelephonyManager.AUTHTYPE_EAP_SIM
作为第二个参数传递(如果我错了,请纠正我),反之亦然,当TelephonyManager.APPTYPE_USIM
第一个参数作为第二个参数时TelephonyManager.AUTHTYPE_EAP_AKA
。
然后是第三个论点。必须有 Base64 编码为字符串。我在 TelephonyProvider 中找到了这行代码:
String base64Challenge = Base64.encodeToString(byteParam, Base64.NO_WRAP);
其中 byteParam 是来自另一个方法的输入字节,它在数千个其他方法之前。如果我将 "" 作为第三个参数传递给 getIccAuthentication 方法,我会再次得到 securityException(这显然是错误的参数),但它让我缺乏getIccSimChallengeResponse
. 我担心它可能是无限循环的方法,但也许有人有任何想法或帮助我突破这一点?
我的示例代码:
public class MainActivity extends AppCompatActivity {
private static final String TAG = MainActivity.class.getSimpleName();
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button button = (Button) findViewById(R.id.buttonPanel);
button.setOnClickListener(new View.OnClickListener() {
@RequiresApi(api = Build.VERSION_CODES.O)
@Override
public void onClick(View view) {
try {
Process p = Runtime.getRuntime().exec("su");
tel();
} catch (IOException e) {
e.printStackTrace();
}
}
});
}
@RequiresApi(api = Build.VERSION_CODES.O)
private void tel(){
// String base64Challenge = Base64.encodeToString(,
Base64.NO_WRAP);
TelephonyManager telephonyManager = (TelephonyManager)
getSystemService(Context.TELEPHONY_SERVICE);
boolean isCarrier = telephonyManager.hasCarrierPrivileges();
String authentication =
telephonyManager.getIccAuthentication(TelephonyManager.APPTYPE_SIM,
TelephonyManager.AUTHTYPE_EAP_SIM, "");
Log.v(TAG, authentication);
if (isCarrier) {
Log.v(TAG, "privs granted");
telephonyManager.setDataEnabled(false);
} else {
Log.v(TAG, "no privilegies");
}
}
}