博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Enhancing Security with Device Management Policies 加强安全与设备管理策略 Developing for Enterprise
阅读量:4047 次
发布时间:2019-05-24

本文共 7179 字,大约阅读时间需要 23 分钟。

Since Android 2.2 (API level 8), the Android platform offers system-level device management capabilities through the Device Administration APIs.

the application can be configured such that it ensures a screen-lock password of sufficient strength is set up before displaying restricted content to the user.  http://blog.csdn.net/sergeycao

Define and Declare Your Policy

First, you need to define the kinds of policy to support at the functional level. Policies may cover screen-lock password strength, expiration timeout, encryption, etc.

You must declare the selected policy set, which will be enforced by the application, in the res/xml/device_admin.xml file. The Android manifest should also reference the declared policy set.

Each declared policy corresponds to some number of related device policy methods in (defining minimum password length and minimum number of uppercase characters are two examples). If an application attempts to invoke methods whose corresponding policy is not declared in the XML, this will result in a at runtime. Other permissions, such as force-lock, are available if the application intends to manage other kinds of policy. As you'll see later, as part of the device administrator activation process, the list of declared policies will be presented to the user on a system screen.

The following snippet declares the limit password policy in res/xml/device_admin.xml:

Policy declaration XML referenced in Android manifest:

Create a Device Administration Receiver

Create a Device Administration broadcast receiver, which gets notified of events related to the policies you’ve declared to support. An application can selectively override callback methods.

In the sample application, Device Admin, when the device administrator is deactivated by the user, the configured policy is erased from the shared preference. You should consider implementing business logic that is relevant to your use case. For example, the application might take some actions to mitigate security risk by implementing some combination of deleting sensitive data on the device, disabling remote synchronization, alerting an administrator, etc.

For the broadcast receiver to work, be sure to register it in the Android manifest as illustrated in the above snippet.

public static class PolicyAdmin extends DeviceAdminReceiver {    @Override    public void onDisabled(Context context, Intent intent) {        // Called when the app is about to be deactivated as a device administrator.        // Deletes previously stored password policy.        super.onDisabled(context, intent);        SharedPreferences prefs = context.getSharedPreferences(APP_PREF, Activity.MODE_PRIVATE);        prefs.edit().clear().commit();    }}

Activate the Device Administrator

Before enforcing any policies, the user needs to manually activate the application as a device administrator. The snippet below illustrates how to trigger the settings activity in which the user can activate your application. It is good practice to include the explanatory text to highlight to users why the application is requesting to be a device administrator, by specifying the extra in the intent.

Figure 1. The user activation screen in which you can provide a description of your device policies.

if (!mPolicy.isAdminActive()) {    Intent activateDeviceAdminIntent =        new Intent(DevicePolicyManager.ACTION_ADD_DEVICE_ADMIN);    activateDeviceAdminIntent.putExtra(        DevicePolicyManager.EXTRA_DEVICE_ADMIN,        mPolicy.getPolicyAdmin());    // It is good practice to include the optional explanation text to    // explain to user why the application is requesting to be a device    // administrator. The system will display this message on the activation    // screen.    activateDeviceAdminIntent.putExtra(        DevicePolicyManager.EXTRA_ADD_EXPLANATION,        getResources().getString(R.string.device_admin_activation_message));    startActivityForResult(activateDeviceAdminIntent,        REQ_ACTIVATE_DEVICE_ADMIN);}

If the user chooses "Activate," the application becomes a device administrator and can begin configuring and enforcing the policy.

The application also needs to be prepared to handle set back situations where the user abandons the activation process by hitting the Cancel button, the Back key, or the Home key. Therefore, in the Policy Set Up Activity needs to have logic to reevaluate the condition and present the Device Administrator Activation option to the user if needed.

Implement the Device Policy Controller

After the device administrator is activated successfully, the application then configures Device Policy Manager with the requested policy. Keep in mind that new policies are being added to Android with each release. It is appropriate to perform version checks in your application if using new policies while supporting older versions of the platform. For example, the Password Minimum Upper Case policy is only available with API level 11 (Honeycomb) and above. The following code demonstrates how you can check the version at runtime.

DevicePolicyManager mDPM = (DevicePolicyManager)        context.getSystemService(Context.DEVICE_POLICY_SERVICE);ComponentName mPolicyAdmin = new ComponentName(context, PolicyAdmin.class);...mDPM.setPasswordQuality(mPolicyAdmin, PASSWORD_QUALITY_VALUES[mPasswordQuality]);mDPM.setPasswordMinimumLength(mPolicyAdmin, mPasswordLength);if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {    mDPM.setPasswordMinimumUpperCase(mPolicyAdmin, mPasswordMinUpperCase);}

At this point, the application is able to enforce the policy. While the application has no access to the actual screen-lock password used, through the Device Policy Manager API it can determine whether the existing password satisfies the required policy. If it turns out that the existing screen-lock password is not sufficient, the device administration API does not automatically take corrective action. It is the application’s responsibility to explicitly launch the system password-change screen in the Settings app. For example:

if (!mDPM.isActivePasswordSufficient()) {    ...    // Triggers password change screen in Settings.    Intent intent =        new Intent(DevicePolicyManager.ACTION_SET_NEW_PASSWORD);    startActivity(intent);}

Normally, the user can select from one of the available lock mechanisms, such as None, Pattern, PIN (numeric), or Password (alphanumeric). When a password policy is configured, those password types that are weaker than those defined in the policy are disabled. For example, if the “Numeric” password quality is configured, the user can select either PIN (numeric) or Password (alphanumeric) password only.

Once the device is properly secured by setting up a proper screen-lock password, the application allows access to the secured content.

if (!mDPM.isAdminActive(..)) {    // Activates device administrator.    ...} else if (!mDPM.isActivePasswordSufficient()) {    // Launches password set-up screen in Settings.    ...} else {    // Grants access to secure content.    ...    startActivity(new Intent(context, SecureActivity.class));}
你可能感兴趣的文章
swiper插件的的使用
查看>>
layui插件的使用
查看>>
JS牛客网编译环境的使用
查看>>
9、VUE面经
查看>>
关于进制转换的具体实现代码
查看>>
Golang 数据可视化利器 go-echarts ,实际使用
查看>>
mysql 跨机器查询,使用dblink
查看>>
mysql5.6.34 升级到mysql5.7.32
查看>>
dba 常用查询
查看>>
Oracle 异机恢复
查看>>
Oracle 12C DG 搭建(RAC-RAC/RAC-单机)
查看>>
Truncate 表之恢复
查看>>
Oracle DG failover 后恢复
查看>>
mysql 主从同步配置
查看>>
为什么很多程序员都选择跳槽?
查看>>
mongdb介绍
查看>>
mongdb安装使用
查看>>
mongdb在java中的应用
查看>>
区块链技术让Yotta企业云盘为行政事业服务助力
查看>>
Yotta企业云盘更好的为媒体广告业服务
查看>>