Project

General

Profile

The bad and insecure method » History » Version 1

Redmine Admin, 08/06/2014 12:06 PM

1 1 Redmine Admin
h1. The bad and insecure method
2
3
Please be aware that all of these methods allows an attacker 
4
5
h2. Temporary ignore ssl certificate verification for one operation
6
<pre>env GIT_SSL_NO_VERIFY=true git clone https://scm.in.tu-clausthal.de/git/PROJECTNAME</pre>
7
8
h2. Disable ssl verfication for user Account
9
<pre>git config http.sslVerify false</pre>
10
11
Globally disable ssl verification
12
<pre>git config --global http.sslVerify false</pre>