在Playstore上发布我的应用程序后,我已收到此电子邮件:
您好Google Play开发者
我们查看了具有包名称com.example.myappname的[MyAppName],发现您的应用程序使用了包含用户安全漏洞的软件。具有这些漏洞的应用可能会泄露用户信息或损坏用户的设备,并且可能被视为违反了我们的恶意行为政策。
以下是问题列表以及您最近提交的文件中检测到的相应APK版本。请尽快迁移您的应用以使用更新的软件,并增加已升级APK的版本号。
您的应用正在使用带有不安全的openFile实现的内容提供程序。
要解决此问题,请按照此Google帮助中心文章中的步骤进行操作。
漏洞APK版本修复的最后期限 路径遍历 您的应用正在使用内容提供商,且该内容提供商的openFile实施不安全。
要解决此问题,请按照此Google帮助中心文章中的步骤进行操作。
2019年6月25日 漏洞APK版本修复期限 为确认您已正确升级,请将应用程序的更新版本提交到Play控制台,并在五个小时后返回。如果应用程序未正确更新,我们将显示一条警告消息。
我在我的应用程序中使用了Realm数据库,iText pdf库,文件提供程序。我正在使用FileProvider使用intent从存储中打开pdf文件。
res> xml> provider_paths.xml
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-path
name="external_files"
path="." />
</paths>
AndroidManifest.xml
<?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="com.example.appName">
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_icon"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_icon"
android:supportsRtl="true"
android:theme="@style/AppTheme">
...
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths" />
</provider>
</application>
</manifest>
TemplatesFragment.java
File file = new File(Environment.getExternalStorageDirectory().getAbsolutePath() + "/MyCvs/Templates/" + templateName);
Uri uriPdf = FileProvider.getUriForFile(getActivity(), BuildConfig.APPLICATION_ID + ".provider", file);
Intent target = new Intent(Intent.ACTION_VIEW);
target.setDataAndType(uriPdf, "application/pdf");
target.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
target.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
Intent intent = Intent.createChooser(target, "Open File");
try {
startActivity(intent);
} catch (Exception e) {
// Instruct the user to install a PDF reader here, or something
Toast.makeText(getActivity(), "" + e.getMessage(), Toast.LENGTH_SHORT).show();
}
答案 0 :(得分:5)
不要将"."
放在path
中,而要提供您要使用的文件夹的名称。
例如,如果要访问/使用“下载”文件夹,则在provider_paths.xml
中:
<?xml version="1.0" encoding="utf-8"?>
<paths>
<external-path
name="downloads"
path="Download/" />
</paths>
答案 1 :(得分:2)
他们实际上为所有人提供了所有需要了解的知识;参见support.google.com:
如果导出的ContentProvider中的
openFile
实施不正确,可能会容易受到攻击 。恶意应用程序可以提供精心制作的Uri(例如,包含“ /../”的Uri),以欺骗您的应用程序返回目标目录之外的文件的ParcelFileDescriptor
,从而允许恶意应用程序访问您的应用可访问的任何文件。
FileProvider
必须拒绝任何包含Uri
...的被视为“可利用”的..
。