Skip to content

Instantly share code, notes, and snippets.

@MilesDowe
Created October 15, 2021 19:00
Show Gist options
  • Save MilesDowe/9784ec11c37fbb51c959ad1ecd9c23ef to your computer and use it in GitHub Desktop.
Save MilesDowe/9784ec11c37fbb51c959ad1ecd9c23ef to your computer and use it in GitHub Desktop.
How I fixed issues with WSS and the corporate firewall.

Had system update, company added Symantec WSS to OS. But caused issues in VM since didn't have cert.

Found cert near WSS executable and added to VM. Added to some apps, but had issues with pip and pipenv.

Solution was to fix pip with:

pip config set global.cert /path/to/wss-ssl-intercept-ca.crt

Then to fix pipenv with:

echo 'export REQUESTS_CA_BUNDLE=/path/to/wss-ssl-intercept-ca.crt' >> ~/.bashrc # or .zshrc, in my case
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment