-
Notifications
You must be signed in to change notification settings - Fork 28
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
Check certificate while sending and receiving data #3
Comments
Hi @us3soap, thank you for creating an awesome plugin. We are looking forward to using this but this issue mentioned above is holding us back. Please let me know what would it take to add "certificate check" into the plugin so we safely implement cert pinning through this plugin. Thanks very much for your contribution! |
Hi, sorry for the delay. Do you need support or evolution ? |
As mentioned by @mleonhard in this thread, i guess the plugin makes a separate call to same domain for validating the keys. Therefore, two calls are being made for every request where we need SSL pinning. It would be really nice if we can validate Certificate Key in the original request itself. |
@SahilPatel16 do we have anything alternative to these solution. I found this code in stackoverflow HttpClient client = new HttpClient(); |
There is inbuilt support for SSL pinning in dart but it does not cover all the cases. A possible alternative would be to get inbuilt support fixed.
In the code snippet you are checking if the request is coming from the desired host. I am not sure about your use case but this does not help us with MITM attacks. |
Any update? |
Bump! Any update on this issue? |
It's been three years since this was opened, let us know if there's any update. |
My dartlang application performs network requests like this:
Please add a way to check the certificate used by such requests, to protect the data sent and received by the app.
The text was updated successfully, but these errors were encountered: