Skip to content
Advertisement

Tag: ssl

Python Uvicorn – obtain SSL certificate information

I have a gunicorn + uvicorn + fastApi stack. (Basically, I am using https://hub.docker.com/r/tiangolo/uvicorn-gunicorn-fastapi docker image). I’ve already implemented SSL based authentication by providing appropriate gunicorn configuration options: certfile, keyfile, ca_certs, cert_reqs. And it works fine: user have to provide a client SSL certificate in order to be able to make an API calls. What I need to do now

Error after FTPS transfer finishes with Python ftplib

I’m trying to upload file into FTPS server (Wing FTP Server / Cerberus FTP Server 8) with following script. But I keep getting this error. This is FTPS server log. Can anyone tell me what is wrong?!! PS: I don’t know it matters or not but i can easily download from this FTPS server and only cant upload into it.

Python – requests.exceptions.SSLError – dh key too small

I’m scraping some internal pages using Python and requests. I’ve turned off SSL verifications and warnings. On certain servers I receive an SSL error I can’t get past. This happens both in/out of Cygwin, in Windows and OSX. My research hinted at outdated OpenSSL on the server. I’m looking for a fix client side ideally. Edit: I was able to

Advertisement