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
When I tried to install elastic-burp i encountered an error while installing the requirements. Within the requirements-proxy the dependency cryptography==2.8 is specified.
This leads to error: ERROR: pyopenssl 19.1.0 has requirement cryptography>=2.8, but you'll have cryptography 1.8.1 which is incompatible.
After that pip does not work anymore due to the following error: Error WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLError("bad handshake: Error([('SSL routines', 'ssl3_get_server_certificate', 'certificate verify failed')],)",),)': /simple/elasticsearch/
Steps to reproduce
virtualenv venv
source venv/bin/activate
pip install -r requirements-proxy.txt # includes the dependency error
pip install -r -r requirements-proxy.txt # Repeat of the previously working command (now fails)
(My) solution
Removing the stickied version from cryptography within the requirements-proxy.txt seemed to resolve the problem.
On a sidenote, there is still elasticsearch==5.1.0 and elasticsearch-dsl==5.1.0 specified within the requirements-proxy.txt, which causes Issue #12 for the Burp plugin.
The text was updated successfully, but these errors were encountered:
timoles
added a commit
to timoles/WASE
that referenced
this issue
Feb 28, 2020
When I tried to install elastic-burp i encountered an error while installing the requirements. Within the requirements-proxy the dependency
cryptography==2.8
is specified.This leads to error:
ERROR: pyopenssl 19.1.0 has requirement cryptography>=2.8, but you'll have cryptography 1.8.1 which is incompatible.
After that pip does not work anymore due to the following error:
Error WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLError("bad handshake: Error([('SSL routines', 'ssl3_get_server_certificate', 'certificate verify failed')],)",),)': /simple/elasticsearch/
Steps to reproduce
(My) solution
Removing the stickied version from cryptography within the
requirements-proxy.txt
seemed to resolve the problem.New requirements-proxy.txt content:
Pip freeze output afterwards
Remarks
On a sidenote, there is still
elasticsearch==5.1.0
andelasticsearch-dsl==5.1.0
specified within the requirements-proxy.txt, which causes Issue #12 for the Burp plugin.The text was updated successfully, but these errors were encountered: