(Fortify) 类别:Android 不良做法:缺少 Google Play 服务更新的安全提供程序(1 期)

问题描述 投票:0回答:2

我们正在使用 Fortify 扫描我的 Android 源代码,但我无法摆脱这个问题:

类别:Android 不良做法:缺少 Google Play 服务更新的安全提供程序(1 期)

Fortify指向这行代码:

工具:替换=“android:allowBackup”>

AndroidManifest.xml:37 null()
  <application
    android:name=".test"
    android:allowBackup="false"
    android:hardwareAccelerated="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:networkSecurityConfig="@xml/network_security_config"
    android:supportsRtl="true"
    android:theme="@style/AppTheme"
    tools:replace="android:allowBackup"> <!--FORTIFY POINTS TO THIS LINE-->

强化推荐:

修补安全提供程序的最简单方法是调用 同步方法 installIfNeeded()。这是适当的,如果用户 等待时的体验不会受到线程阻塞的影响 要完成的操作,否则应该在 异步方式。

有关此问题的更多信息

我已经关注安卓了 更新您的安全提供商以防止 SSL 漏洞

并尝试了两种方法:

installIfNeed()installIfNeededAsync()

但是问题仍然存在。我测试了我的代码,它工作正常。

这是我的清单:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    package="test">

    <uses-permission android:name="android.permission.INTERNET" />

    <application
        android:name=".test"
        android:allowBackup="false"
        android:hardwareAccelerated="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:networkSecurityConfig="@xml/network_security_config"
        android:supportsRtl="true"
        android:theme="@style/AppTheme"
        tools:replace="android:allowBackup">

        <meta-data
            android:name="com.google.android.gms.version"
            android:value="@integer/google_play_services_version" />

        <provider
            android:name=".syncadapter.StubProvider"
            android:authorities="com.neseapl.nyp.provider"
            android:exported="false"
            android:syncable="true"/>

        <service
            android:name=".syncadapter.SyncService"
            android:exported="false">
            <intent-filter>
                <action android:name="android.content.SyncAdapter" />
            </intent-filter>
            <meta-data
                android:name="android.content.SyncAdapter"
                android:resource="@xml/syncadapter" />
        </service>

        <service
            android:name=".syncadapter.AuthenticatorService">
            <intent-filter>
                <action android:name="android.accounts.AccountAuthenticator"/>
            </intent-filter>
            <meta-data
                android:name="android.accounts.AccountAuthenticator"
                android:resource="@xml/account_authenticator" />
        </service>

        <activity
            android:name=".activities.Test"
            android:configChanges="orientation|screenSize">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

我的清单中缺少任何内容吗?谢谢!

android security google-play-services fortify
2个回答
2
投票

我最近在 Fortify 上遇到了类似的问题。正如 Silvia Ragui 指出的那样,Fortify 没有正确分析这个运行时进程。 虽然 installIfNeeded() 和 installIfNeededAsync() 将更新 APK 实际部署中的安全提供程序,但当您重新提交到 Fortify 时,它似乎不会清除错误。

然而,根本问题是过时的安全提供程序,这通常是由于您的包中的游戏服务库过时造成的。

这是直接来自 fortify 仪表板的建议:

Android依赖安全Provider来提供安全的网络通信。默认设备加密库通常是旧版本的 OpenSSL,其中包含已知缺陷。为了克服这个问题,Google 提供了一种机制,让应用程序可以通过 Google Play Services ProviderInstaller 客户端“修补”其本地 OpenSSL 副本。已确定该应用程序未使用更新的提供程序,从而使该应用程序暴露于较旧的已知 OpenSSL 漏洞和弱点。>

实际问题与 Silvia 日志中的最后一行相同:

W/GooglePlayServicesUtil Google Play 服务已过时

在我们的例子中,我们更新到了软件包中的 Play Services 的最新版本,并实现了上面的修复(当我们这样做时,我们发现有一个必须修复的小错误,并且可能阻止了更新的修补)安全提供商)

新版本成功解决了该问题。 我建议您更新到最新的 Play 服务,因为这也会更新安全提供商。


0
投票

添加了修复程序,但仍然遇到相同的漏洞 “Android 不良做法:缺少 Google Play 服务更新的安全提供商”

© www.soinside.com 2019 - 2024. All rights reserved.