Questions tagged [sslerrorhandler]

Tag used by Android in Security Alert messages to developers. The Security Alert message is often accompanied with a Google-Play rejection. AOSP instructions state to tag a question with it.

Tag used by Android in Security Alert messages to developers. The Security Alert message is often accompanied with a Google-Play rejection. AOSP instructions state to tag a question with it.

32 questions
76
votes
8 answers

WebView: how to avoid security alert from Google Play upon implementation of onReceivedSslError

I have a link which will open in WebView. The problem is it cannot be open until I override onReceivedSslError like this: @Override public void onReceivedSslError(WebView view, SslErrorHandler handler, SslError error) { handler.proceed(); } I…
12
votes
2 answers

Google Play Warning: WebViewClient.onReceivedSslError handler

I got an email from Google with the following subject : Google Play Warning: SSL Error Handler Vulnerability". In this email, Google explains that my app has an ["unsafe implementation of the WebViewClient.onReceivedSslError handler" Here's my…
9
votes
2 answers

Google Play Developer Console rejected My Application Update

I am trying to understand and fix why is my App rejected I know it's about SSL, but I can't seem to find which dependency is causing it. I am using the next setup: Android N (24) Fabric. MixPanel. Quickblox. Crashlytics Analytics. Any help would…
4
votes
0 answers

Google play store rejected application due to SSL Error Handler code

HI All my Google PlayStore Reject my application because below code is in my application. check sakiM's answer. @Override public void onReceivedSslError(WebView view, final SslErrorHandler handler, SslError error) { final AlertDialog.Builder…
Mr X
  • 1,053
  • 2
  • 11
  • 24
3
votes
0 answers

PlayStore warning application due to SslErrorHandler

We develop an application with Cordova and Ionic 3, and after updating a new version of our app into the Play Store we got the following warning. Here follows a screenshot of the warning: We use as environment: cordova-android: 7.1.4 cordova-cli:…
3
votes
1 answer

Why getting SslErrorHandler when uploading app in Google Play Store?

I have uploaded the release APK to Google Playstore, but it is always rejected because of SslErrorHandler. @Override public void onReceivedSslError(WebView view, final SslErrorHandler handler, SslError error) { final…
3
votes
1 answer

Google Play Error: SSL Error Handler vulnerabilities and APP UPDATE REJECTED

How to solve below mentioned error from google play store after apk rejected Your APK has been rejected for containing security vulnerabilities, which violates the Malicious Behavior policy SSL Error Handler
2
votes
1 answer

onReceivedSslError fixed but still showing error

I got an "onReceivedSslError" error in my Play Console account as in the screenshot. I have handled the onReceivedSslError in all WebViewClients and show the required warning message. Then I sent the version to the market and got approval. The…
Gorkem KARA
  • 173
  • 4
  • 14
2
votes
0 answers

SSL Connect error with NSS error -12263 for Client certificate

I have configured an SSL certificate which will be acting as a client certificate and connecting to a remote server on port 100 over SSL. In my apache config i have done the following configuration for SSL: SSLProxyEngine on SSLProxyVerify…
2
votes
0 answers

Playstore rejects ionic (cordova) application due to SslErrorHandler

Apart from above I am using this plugin :- https://github.com/etabard/Cordova-OverAppBrowser I recently tried to submit my ionic (cordova) application but it get rejected with below resons :- Vulnerability : SSL Error Handler For more information…
2
votes
1 answer

Go back to previous screen on SslErrorHandler

So in my webview, I am showing an error dialog box for SSL security issues which Google had made compulsory. The code looks like below: @Override public void onReceivedSslError(WebView view, final SslErrorHandler handler, SslError…
yogsma
  • 10,142
  • 31
  • 97
  • 154
2
votes
1 answer

Google Play app rejected - SSL Error Handler

Below is the message I get from Google Play. After I read the message, I take a look on Google Help Center article. For what I thought, this should be related to the class of WebViewClient and some of its methods like onReceivedSslError,…
2
votes
1 answer

SslErrorHandler.cancel() is not working when call manually in android

I am getting error in @Override public void onReceivedSslError(WebView view, final SslErrorHandler handler, SslError error) { } for handle this error i created a alert dialog with following code:- AlertDialog.Builder builder = new…
AndroidMob
  • 101
  • 1
  • 11
1
vote
1 answer

Error while using bert-base-nli-mean-tokens bert model

I am using this code: model = SentenceTransformer('bert-base-nli-mean-tokens') body = list(data['preprocessedBody']) bodyEmbedding = model.encode(body, show_progress_bar = True) However, I am getting this error: ProxyError:…
1
vote
2 answers

SSL error in python request which is not caused by bad proxy format

I know that similar questions have been asked before, but none of the answers seems to work for me. And every answer on this I have seen was that it is caused by a by proxy format. This error is not because of proxies, as you can see I'm not using…
1
2 3