commands: version_info: include openssl version
What changed, and why it matters
This commit simply adds the installed OpenSSL version string to Electrum's existing `version_info` diagnostic command. It is a minor information-gathering improvement with no apparent security relevance.
No security action required. Treat as routine diagnostic enhancement.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The patch imports Python’s ssl module and adds ssl.OPENSSL_VERSION to the dictionary returned by the version_info command in electrum/commands.py. No cryptographic logic, parsing, or trust decisions are changed. The value is read-only and only exposed through an existing diagnostic RPC/console command.
Changed components
electrum/commands.py:Commands.version_infoInspect captured patch +2 / −0
diff --git a/electrum/commands.py b/electrum/commands.py
index 889243d..6aef50c 100644
--- a/electrum/commands.py
+++ b/electrum/commands.py
@@ -806,6 +806,8 @@ class Commands(Logger):
ret["certifi.version"] = certifi.__version__
import dns
ret["dnspython.version"] = dns.__version__
+ import ssl
+ ret["openssl.version"] = ssl.OPENSSL_VERSION
return ret
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.