The bad and insecure method » History » Version 6
Redmine Admin, 09/15/2014 12:09 PM
1 | 1 | Redmine Admin | h1. The bad and insecure method |
---|---|---|---|
2 | |||
3 | 3 | Redmine Admin | |
4 | 1 | Redmine Admin | |
5 | 2 | Redmine Admin | h3. Temporary ignore ssl certificate verification for one operation |
6 | |||
7 | 1 | Redmine Admin | <pre>env GIT_SSL_NO_VERIFY=true git clone https://scm.in.tu-clausthal.de/git/PROJECTNAME</pre> |
8 | |||
9 | 2 | Redmine Admin | h3. Disable ssl verfication for user Account |
10 | |||
11 | 1 | Redmine Admin | <pre>git config http.sslVerify false</pre> |
12 | |||
13 | 2 | Redmine Admin | h3. Globally disable ssl verification |
14 | |||
15 | 1 | Redmine Admin | <pre>git config --global http.sslVerify false</pre> |
16 | 4 | Redmine Admin | |
17 | 6 | Redmine Admin | *%{color:red}Warning: These methods allows a man-in-the-middle attack and should not be used at all!%* |