[issue43274] Backlinks Strong decouverte SSL

2021-02-20 Thread Webstar Website

New submission from Webstar Website :

Comment puis-je savoir si mon python généré à la source a activé SSL
il faut obtenir l'information suivante : 
de savoir si opensslest est installé, vous pouvez analyser la sortie de openssl 
version:

$ openssl version
OpenSSL 1.0.2g-fips  1 Mar 2016

on obtient là toutes sortes d'informations à partir de cette  version, par 
exemple, du répertoire où elles sont stockées:
$ openssl version -d
OPENSSLDIR: "/usr/lib/ssl"

--
assignee: christian.heimes
components: SSL
messages: 387398
nosy: christian.heimes, webstarnantes
priority: normal
severity: normal
status: open
title: Backlinks Strong decouverte SSL
versions: Python 3.9

___
Python tracker 
<https://bugs.python.org/issue43274>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue37146] SSl Securité version 3.9.2

2021-02-20 Thread Webstar Website

Webstar Website  added the comment:

dans cette version pour securité maximale 

SSLContext.wrap_socket()
import socket
import ssl

hostname = 'www.python.org'
context = ssl.create_default_context()

with socket.create_connection((hostname, 443)) as sock:
with context.wrap_socket(sock, server_hostname=hostname) as ssock:
print(ssock.version())


https://backlinkstrong.com/

--
assignee:  -> christian.heimes
components: +SSL -Interpreter Core
nosy: +christian.heimes, webstarnantes
title: opcode cache for LOAD_GLOBAL emits false alarm in memory leak hunting -> 
SSl Securité version 3.9.2
type:  -> security
versions: +Python 3.9 -Python 3.8

___
Python tracker 
<https://bugs.python.org/issue37146>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com