Emacs 25로 업데이트 한 후 marmalade-repo.org:443에 대한 TLS 연결이 안전하지 않습니다


12

실행할 때 M-x list-packagesEmacs 25로 업데이트 한 후 Marmalade에 다음 오류가 발생합니다.

Certificate information
Issued by:          COMODO RSA Domain Validation Secure Server CA
Issued to:          Domain Control Validated
Hostname:           marmalade-repo.org
Public key:         RSA, signature: RSA-SHA256
Protocol:           TLS1.2, key: ECDHE-RSA, cipher: AES-256-GCM, mac: AEAD
Security level:     Medium
Valid:              From 2015-07-12 to 2018-07-11


The TLS connection to marmalade-repo.org:443 is insecure for the
following reasons:

the certificate was signed by an unknown and therefore untrusted authority
certificate could not be verified

관련 .emacs코드 : (full .emacs here )

(require 'package)
(add-to-list 'package-archives
         '("melpa" . "http://melpa.org/packages/") t)
(add-to-list 'package-archives
         '("gnu" . "http://elpa.gnu.org/packages/") t)
(add-to-list 'package-archives
         '("marmalade" . "http://marmalade-repo.org/packages/") t)
(package-initialize)

;; bootstrap use-package
;; https://github.com/jwiegley/use-package/
(unless (package-installed-p 'use-package)
  (package-refresh-contents)
  (package-install 'use-package))
(eval-when-compile (require 'use-package))

또한 gnutils-cli 제안 으로 해결하려고 시도했지만 $ gnutls-cli --tofu marmalade-repo.org아직 작동하지 못했습니다. 어떤 아이디어?

$ gnutls-cli --tofu marmalade-repo.org
gnutls-cli --tofu marmalade-repo.org                                                                              
Processed 173 CA certificate(s).                                                                                                      
Resolving 'marmalade-repo.org:443'...                                                                                                 
Connecting to '80.69.77.43:443'...                                                                                                    
- Certificate type: X.509                                                                                                             
- Got a certificate list of 1 certificates.                                                                                           
- Certificate[0] info:                                                                                                                
 - subject `CN=marmalade-repo.org,OU=PositiveSSL,OU=Domain Control Validated', issuer `CN=COMODO RSA Domain Validation Secure Server C
A,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB', serial 0x5f7ce5cf6602297b4cbd14639b670e7d, RSA key 2048 bits, signed usin
g RSA-SHA256, activated `2015-07-12 00:00:00 UTC', expires `2018-07-11 23:59:59 UTC', SHA-1 fingerprint `6e080a477d14631d2edf839de582a
c04d4363d09'                                                                                                                          
        Public Key ID:                                                                                                                
                aba6d76ab3d363fa190d654160236eefd32a46dc                                                                              
        Public key's random art:                                                                                                      
                +--[ RSA 2048]----+
                |      . +oo      |
                |     . o . .     |
                |      o   o      |
                |     . . o       |
                |     . .S        |
                |      o.E=       |
                |     . o= o      |
                |      O.==       |
                |    .*=X+.       |
                +-----------------+

- Status: The certificate is NOT trusted. The certificate issuer is unknown.
*** PKI verification of server certificate failed...
- Description: (TLS1.2)-(ECDHE-RSA-SECP256R1)-(AES-256-GCM)
- Session ID: 53:BF:2F:D2:86:74:BD:BC:85:A8:67:12:0B:39:7A:12:EA:2F:91:1F:8E:06:5E:94:7F:20:11:4F:FC:51:60:8F
- Ephemeral EC Diffie-Hellman parameters
 - Using curve: SECP256R1
 - Curve size: 256 bits
- Key Exchange: ECDHE-RSA
- Server Signature: RSA-SHA256
- Cipher: AES-256-GCM
- MAC: AEAD
- Compression: NULL
- Options: safe renegotiation,
- Handshake was completed

- Simple Client Mode:



*** Fatal error: The TLS connection was non-properly terminated.
*** Server has terminated the connection abnormally.

관련 해결되지 않은 문제 : 서버 TLS 구성이 손상되어 취약 함 # 144


몇 달 안에 자식 커밋이없고 만료 된 TLS 인증서는 마멀레이드가 죽었다 는 표시입니다 . 패키지 리포지토리로 제거하는 것이 좋습니다.
Flow

답변:


7

marmalade.org의 서버 구성이 손상되었습니다. 사용중인 중간 인증서를 제공하지 않습니다. 이 문제는 현재 https://github.com/nicferrier/elmarmalade 에서 십여 가지 문제로 지적되었습니다 . 아무 조치도 식별 할 수 없습니다.

그래서 마멀레이드는 쓸모가 없다고 말할 수 있습니다.

불행히도이 오류가 발생했을 때 Emacs 패키지 관리자를 다시 작동시키는 방법을 아직 모릅니다.


4

나는에 대한 PEM 파일을 다운로드하여 일이있어 [중간 CA # 2] COMODO RSA기구 검증 서버 CA (SHA-2) 보안~/etc/tls/certificates/comodo.rsa.ca.intermediate.crt와에 다음을 추가 .emacs:

  (require 'gnutls)
  (add-to-list 'gnutls-trustfiles
               (expand-file-name
                "~/etc/tls/certificates/comodo.rsa.ca.intermediate.crt"))

덕분에이 기본적으로 이맥스 26.1에서 나를 위해 일한,하지만 난에서 인증서 필요 support.comodo.com/index.php?/Knowledgebase/Article/View/970/0/...
매튜 필립스 (Matthew Phillips)
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.