You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Traceback (most recent call last):
File "/usr/local/bin/nxBender", line 8, in <module>
sys.exit(main())
^^^^^^
File "/opt/nxBender/lib/python3.12/site-packages/nxbender/__init__.py", line 69, in main
sess.run()
File "/opt/nxBender/lib/python3.12/site-packages/nxbender/nx.py", line 103, in run
self.tunnel()
File "/opt/nxBender/lib/python3.12/site-packages/nxbender/nx.py", line 216, in tunnel
pppd.run()
File "/opt/nxBender/lib/python3.12/site-packages/nxbender/ppp.py", line 51, in run
self.tunsock = sslconn.SSLTunnel(self.session_id, self.options, self.options.server, self.options.port)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/opt/nxBender/lib/python3.12/site-packages/nxbender/sslconn.py", line 38, in __init__
super(SSLTunnel, self).__init__(*args, **kwargs)
File "/opt/nxBender/lib/python3.12/site-packages/nxbender/sslconn.py", line 17, in __init__
self.s = ssl.wrap_socket(sock)
^^^^^^^^^^^^^^^
AttributeError: module 'ssl' has no attribute 'wrap_socket'
The text was updated successfully, but these errors were encountered:
ssl.wrap_socket is deprecated since Python 3.7 and has recently been removed in Python 3.12.
On Python 3.12, nxBender therefore fails with:
The text was updated successfully, but these errors were encountered: