Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cleartextTrafficPermitted issues with GooglePlay - Flagged Security Vulnerability #12

Open
MarkoKrsic opened this issue Oct 29, 2021 · 0 comments

Comments

@MarkoKrsic
Copy link

MarkoKrsic commented Oct 29, 2021

Google has introduced a Data Safety check questionaire that asks if any information is sent by an App in non encrypted form.

It has also started complaining directly in the Release Prelaunch reports for apps that cleartextTrafficPermitted is not supposed to be used in true condition and in the Developer documents for Android it's noted that

" The guidance in this section applies only to apps that target Android 8.1 (API level 27) or lower. Starting with Android 9 (API level 28), cleartext support is disabled by default."

Would it be possible to include the default for Google as the default of the plugin on the next update?

<network-security-config>
<base-config cleartextTrafficPermitted="true">
<trust-anchors>

should always be

<network-security-config>
<base-config cleartextTrafficPermitted="false">
<trust-anchors>

unless set differently by a user set plugin Adapter ?

As it stands now the above settings will not allow an app into production. Google Play console kicks out a RED warning :

Privacy - Cleartext traffic allowed for all domains

This is where the problem is I believe, even if one is not using AdColony and or Smaato their setup will be cleartextTrafficPermitted set to true.

    <!-- For AdColony and Smaato - all cleartext traffic allowed -->
    <base-config cleartextTrafficPermitted="true">
        <trust-anchors>
            <certificates src="system"/>
        </trust-anchors>
    </base-config>
    <!-- End AdColony cleartext requirement -->```
    
    
@MarkoKrsic MarkoKrsic changed the title cleartextTrafficPermitted issues with GooglePlay cleartextTrafficPermitted issues with GooglePlay - Flagged Security Vulnerability Oct 30, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant