33 questions
0
votes
1
answer
59
views
Google map is not working in Android Release build
In my project, Google Maps works fine in other product flavors (both debug and release builds). But in the release build of one specific flavor, the map is showing blank.
I have already:
Added the ...
0
votes
0
answers
110
views
Unsafe Implementation of WebView SSL Error Handler
Recently we got the below mail from Google play for our app:
Issue found: Unsafe Implementation of WebView SSL Error Handler
Issue details
We found an issue in the following area(s):
Version code ...
0
votes
0
answers
646
views
How to solve the SSLError of using python to insert data into bigquery table?
I'm maintaining a data pipeline of a youtube channel, and I try to insert the live streaming chat data into my bigquery table.
I was successfully inserted into the same table before, but the error ...
2
votes
1
answer
3k
views
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 ...
1
vote
1
answer
371
views
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 ...
0
votes
1
answer
687
views
SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1129)'))
def ws_run():
global ws
ws = websocket.WebSocketApp(url,on_open=on_open,on_message=on_message,on_error=on_error,on_close=on_close)
ws.run_forever()
1
vote
2
answers
2k
views
SSL error in python request which is not caused by bad proxy format [duplicate]
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 ...
1
vote
2
answers
3k
views
Yfinance suddenly raises SSLError
I have code that suddenly started raising errors while running it. Some time ago worked fine and still works on the PC i was using ~6 months ago (for the same code).
Tracked the problem to yfinance ...
0
votes
1
answer
342
views
Getting Blank Screen in webview when bypassing SSL Error
I know that SSL handler.proceed() is not allowed on the playstore. And they reject the app once their bots able to find the same in the uploaded app. For testing purpose I was asked to share the UAT ...
1
vote
1
answer
596
views
How to fix the Google Play Warning: SSL Error Handler Vulnerability
I recently publish a production release version app to the google play, and I got a email from Google:
I update my code as Google Support suggest:
class SslErrorHelper {
companion object {
...
1
vote
0
answers
2k
views
What is the alternate for onReceivedSslError() in Webview?
I am working on app that will connect user with available open WIFIs by providing their landing pages (having login option) in the app. Google is showing alert for using onReceivedSslError() in ...
3
votes
0
answers
1k
views
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 ...
2
votes
0
answers
6k
views
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 ...
0
votes
0
answers
523
views
CentOS 6 JBoss: "javax.net.ssl.SSLHandshakeException: unable to find valid certification path to requested target"
I have a JBoss application [Java(TM) SE Runtime Environment (build 1.7.0-b147)] running on a CentOS 6 servers that sends information to an external address and occasionally an error occurs as ...
0
votes
1
answer
1k
views
Handshake error while connecting to Google Vision API using Python
I am using below code to connect to Google Vision API. I have JSON from Google Vision.
The code is giving me below error . Not Sure why.. < TSI_PROTOCOL_FAILURE >
Please suggest.. It is ...
3
votes
1
answer
1k
views
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 ...
4
votes
0
answers
6k
views
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, ...
2
votes
0
answers
687
views
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 :-
...
1
vote
1
answer
1k
views
Test onReceiveSSLError
I fixed the vulnerability with the implementation of the WebViewClient.onReceivedSslError handler in my Android project but I would like to know how can I test it.
Previously my code was:
@Override
...
1
vote
1
answer
2k
views
SSL Error Handler WebView Android
When I try to publish my app, the Google Play Console says that I have a vulnerability in my app due to SSL Error Handler. I followed the Google Help Center solution https://support.google.com/faqs/...
2
votes
1
answer
579
views
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(...
2
votes
1
answer
2k
views
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 ...
0
votes
1
answer
621
views
Passing context to alert dialog in onReceivedSslError in SystemWebViewClient.java file cordova
I want to display alert dialog in onReceivedSslError method of SystemWebViewClient class.So what should I pass parameter to alert dialog.I tried "this,MainActivity.this,view.this" but its not working....
3
votes
1
answer
4k
views
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 ...
0
votes
1
answer
532
views
How to successfully upload my app to the play store without WebViewClient.onReceivedSslError
Recently I updated my app and tried to upload the Google Play Store again.
But my app rejected several times due to this warning
Your application uses an old version ( not secure one ) of Lib
...
0
votes
0
answers
854
views
SSLError "UKNOWN_PROTOCOL" imaplib Python
I am trying to connect to an email server with my own credentials in Python. The script works great until the exception "SSLError" shows up. Sometimes it occurs as soon as starting up the script or ...
2
votes
1
answer
371
views
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:-
...
9
votes
2
answers
4k
views
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.
...
1
vote
0
answers
350
views
SSL Error on apache server
I have updated SSL certificate and private key in httpd.conf file when we are checking the URL I am getting error like cross symbol. When I click that symbol and click the details:
It's showing error ...
1
vote
1
answer
831
views
Reoccurred. Webview avoid security alert from google play upon implementation of onReceivedSslError
Webview avoid security alert from google play upon implementation of onReceivedSslError
We have done the steps written in the above link.
And we have confirmed that the alert was removed on March.
...
12
votes
2
answers
4k
views
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 ...
77
votes
8
answers
72k
views
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,...
1
vote
0
answers
2k
views
How to Handle WebView in Android 4.2 and 4.1
My Webview works in android 4.4.4 and higher.How can I handle it in all android devices?!
I mean I tried many ways to show PaymentGateWay in Webview but it`s just shown url address in webview page(...