Whenever I try to use wget to download a webpage that has SSL, it seg faults
Code:
$ wget http://cryptostorm.is/test
--2020-07-18 08:07:37-- http://cryptostorm.is/test
Resolving cryptostorm.is (cryptostorm.is)... 46.165.240.186
Connecting to cryptostorm.is (cryptostorm.is)|46.165.240.186|:80... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://cryptostorm.is/test.cgi [following]
--2020-07-18 08:07:38-- https://cryptostorm.is/test.cgi
Connecting to cryptostorm.is (cryptostorm.is)|46.165.240.186|:443... connected.
ERROR: cannot verify cryptostorm.is's certificate, issued by 'CN=COMODO RSA Domain Validation Secure Server CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB':
Unable to locally verify the issuer's authority.
To connect to cryptostorm.is insecurely, use `--no-check-certificate'.
Code:
$ wget http://cryptostorm.is/test --no-check-certificate
--2020-07-18 08:08:09-- http://cryptostorm.is/test
Resolving cryptostorm.is (cryptostorm.is)... 46.165.240.186
Connecting to cryptostorm.is (cryptostorm.is)|46.165.240.186|:80... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://cryptostorm.is/test.cgi [following]
--2020-07-18 08:08:11-- https://cryptostorm.is/test.cgi
Connecting to cryptostorm.is (cryptostorm.is)|46.165.240.186|:443... connected.
WARNING: cannot verify cryptostorm.is's certificate, issued by 'CN=COMODO RSA Domain Validation Secure Server CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB':
Unable to locally verify the issuer's authority.
HTTP request sent, awaiting response... [2] Segmentation fault (core dumped) wget http://cryptostorm.is/test --no-check-certificate
and a `wget.core' file is created
Wget works just fine for
http://www.google.com (non https, I have tried changing the link to http instead of https but cryptostorm only allows SSL)
I have also tried deleting the wget pkg and all of its dependencies and reinstalling them, but I still get the seg fault.
Is there another program I can use to just download a webpage?