flutter

구글 플레이스토어 콘솔 recaptcha 관련 이슈

이나주니 2024. 10. 15. 10:37
반응형

구글 플레이 콘솔 에서 처음 보는 메시지를 보냈다.

 

com.google.android.recaptcha:recaptcha님이 recaptcha:18.1.2에 대한 메모를 추가했습니다.

The version is deprecated, please upgrade to a non-deprecated version: https://cloud.google.com/recaptcha/docs/deprecation-policy-mobile A critical security vulnerability was discovered in reCAPTCHA Enterprise for Mobile. The vulnerability has been patched in the latest SDK release. Customers will need to update their Android application with the reCAPTCHA Enterprise for Mobile SDK, version 18.4.0 or above. We strongly recommend you update to the latest version as soon as possible.

영향을 받는 App Bundle 및 APK:

 

https://support.google.com/googleplay/android-developer/answer/10358880

 

앱에서 타사 SDK 사용하기 - Play Console 고객센터

도움이 되었나요? 어떻게 하면 개선할 수 있을까요? 예아니요

support.google.com

 

 

번역을 했을떄 

해당 버전은 더 이상 사용되지 않습니다. 더 이상 사용되지 않는 버전으로 업그레이드하세요. https://cloud.google.com/recaptcha/docs/deprecation-policy-mobile 모바일용 reCAPTCHA Enterprise에서 심각한 보안 취약점이 발견되었습니다. 이 취약점은 최신 SDK 릴리스에서 패치되었습니다. 고객은 Android 애플리케이션을 모바일 SDK용 reCAPTCHA Enterprise 버전 18.4.0 이상으로 업데이트해야 합니다. 가능한 한 빨리 최신 버전으로 업데이트하는 것이 좋습니다.

 

간단하게 설명하면

애플리케이션에 사용된 라이브러리 또는 종속성 중 하나인 com.google.android.recaptcha:recaptcha에 대한 업데이트 또는 중요 정보를 알리는 것 

 

 

방법으로는 두가지가 있었다

 

1. 라이브 러리 추가

 

2. 프로젝트의 build.gradle 파일에서 recaptcha 라이브러리의 버전을 최신 버전으로 변경하고 빌드를 다시 수행

 

작성자는 pub.dev 에서 라이브러리 를 추가하는 방법을선택했다

 

https://pub.dev/packages/recaptcha_enterprise_flutter/versions/18.4.0

 

recaptcha_enterprise_flutter 18.4.0 | Flutter package

A flutter plugin for reCAPTCHA Enterprise.

pub.dev

 

 

반응형