kost / dvcs-ripper

Rip web accessible (distributed) version control systems: SVN/GIT/HG...
GNU General Public License v2.0
1.69k stars 310 forks source link

Ignore SSL warnings #14

Closed gsingh93 closed 8 years ago

gsingh93 commented 8 years ago

I tried using this on a site with a broken HTTPS cert, and it was throwing errors. You should probably ignore these errors instead.

kost commented 8 years ago

Could you please copy/paste errors you're getting? Thanks in advance!

gsingh93 commented 8 years ago

Each request fails with a message like this:

[!] Not found for COMMIT_EDITMSG: 500 Can't connect to site.com:443 (certificate verify failed)

I don't want to share the site name, but the issue with the cert is that doesn't match the site name. In any case, all SSL errors should be ignored (i.e. self signed certs, invalid certs, etc.).

kost commented 8 years ago

No need for site name.

Just sanity check. Have you used "-s" switch to turn off SSL verification? Could you provide your full command line (obviously without offeninding URL)?

Thanks in advance,

On Fri, Nov 20, 2015 at 9:10 PM, Gulshan Singh notifications@github.com wrote:

Each request fails with a message like this:

[!] Not found for COMMIT_EDITMSG: 500 Can't connect to site.com:443 (certificate verify failed)

I don't want to share the site name, but the issue with the cert is that doesn't match the site name. In any case, all SSL errors should be ignored (i.e. self signed certs, invalid certs, etc.).

— Reply to this email directly or view it on GitHub https://github.com/kost/dvcs-ripper/issues/14#issuecomment-158512068.

Vlatko Kosturjak, Kost

gsingh93 commented 8 years ago

Using the -s flag worked. Thanks for the help!