Browse Source
-----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQIcBAABCAAGBQJZflNxAAoJELC16IaWr+bLpSsQAIT1s4c/uKAXJBw8CegM4SP1 SeB5NMnjz7VVtBsdXKPy6fVXBHCjffON/MvNXcXwGqzx3lh6SiMAVNjYknBkQcKN b639dD9HEEBRFf62a+QAyRYbFeg0NONVydB25s7RfR57HUNxFibaJDT5SoymO0/5 YCdmMENuvijvCYcwyb3MSjAKCkwDDErPzyI4NZ2YZpC7IG46Uoxq8BCdHpKhXa5I 3TNEDruBAd/UJCIQiMW1HP3OMQXzXmCTL5i4QSr/uloO1kNzkWgCZDkkFrSGFPdx UeTRXOM0r5QdFXZC36zZNoL5ELflgzrYFSerj6VkCAbiG4FAWL+43CCxuUcq5OkZ JsTYObieBMFiaowTn9hKo3ix1xDSjR2+p0bfZbOPy5jMB85oegnjV3Rp/eBoXsDm h4qo+5kv0h8H2wKdxcBfVg6LkpBZGsvEOveAtWZIcFIVIOyULj9UAsnTwOotwQiL NHO4J2fJhcvSYUj6oGB3SpabKZfcbVXRE2fzZq+3+Mt4DdzSdSmx5CEJfUmxN7sQ YLb8UKSr2vv03YfKRghCGxqjOcmQL5vY79O8+QSN3cCDFFAwxzNYaGeHJ+/chvh2 NySOkUf/uA7H1xQiZmJI1mfwQvi527MEzblCPDButm6n8ty6QyWOQ+kQYzcW5jjI kPWdqc5pCZQ+Q+q6lQc0 =rNay -----END PGP SIGNATURE----- Merge tag 'v2.7.6' into maint-2.8 Git 2.7.6maint
Junio C Hamano
8 years ago
7 changed files with 100 additions and 0 deletions
@ -0,0 +1,25 @@
@@ -0,0 +1,25 @@
|
||||
Git v2.7.6 Release Notes |
||||
======================== |
||||
|
||||
Fixes since v2.7.5 |
||||
------------------ |
||||
|
||||
* A "ssh://..." URL can result in a "ssh" command line with a |
||||
hostname that begins with a dash "-", which would cause the "ssh" |
||||
command to instead (mis)treat it as an option. This is now |
||||
prevented by forbidding such a hostname (which will not be |
||||
necessary in the real world). |
||||
|
||||
* Similarly, when GIT_PROXY_COMMAND is configured, the command is |
||||
run with host and port that are parsed out from "ssh://..." URL; |
||||
a poorly written GIT_PROXY_COMMAND could be tricked into treating |
||||
a string that begins with a dash "-". This is now prevented by |
||||
forbidding such a hostname and port number (again, which will not |
||||
be necessary in the real world). |
||||
|
||||
* In the same spirit, a repository name that begins with a dash "-" |
||||
is also forbidden now. |
||||
|
||||
Credits go to Brian Neel at GitLab, Joern Schneeweisz of Recurity |
||||
Labs and Jeff King at GitHub. |
||||
|
Loading…
Reference in new issue