Kali에서 apt-get 업데이트를 시도할 때 서명이 잘못되었습니다.

Kali에서 apt-get 업데이트를 시도할 때 서명이 잘못되었습니다.

다음을 수행하려고 하면 잘못된 서명 오류가 발생합니다 apt-get update.

Ign:1 http://dl.google.com/linux/chrome/deb stable InRelease

Hit:2 http://dl.google.com/linux/chrome/deb stable Release 

Hit:4 https://download.sublimetext.com apt/dev/ InRelease                      

Hit:5 http://deb.i2p2.no unstable InRelease                         

Get:6 http://ftp.yzu.edu.tw/Linux/kali kali-rolling InRelease [30.5 kB]

Err:6 http://ftp.yzu.edu.tw/Linux/kali kali-rolling InRelease
  The following signatures were invalid: EXPKEYSIG ED444FF07D8D0BF6 Kali Linux Repository <[email protected]>
Reading package lists... Done
W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: http://ftp.yzu.edu.tw/Linux/kali kali-rolling InRelease: The following signatures were invalid: EXPKEYSIG ED444FF07D8D0BF6 Kali Linux Repository <[email protected]>
W: Failed to fetch http://http.kali.org/kali/dists/kali-rolling/InRelease  The following signatures were invalid: EXPKEYSIG ED444FF07D8D0BF6 Kali Linux Repository <[email protected]>
W: Some index files failed to download. They have been ignored, or old ones used instead.

왜 이런 일이 발생합니까? 어떻게 해결할 수 있나요?

답변1

모든:https://twitter.com/kalilinux/status/959515084157538304, 보관된 키링 패키지가 오래되었습니다. 이 작업을 수행해야 합니다(루트로):

wget -q -O - https://archive.kali.org/archive-key.asc  | apt-key add

답변2

이 시도:

wget https://http.kali.org/kali/pool/main/k/kali-archive-keyring/kali-archive-keyring_2018.1_all.deb
apt install ./kali-archive-keyring_2018.1_all.deb
apt-get update

칼리 포럼그래도 작동하지 않으면 이 스레드에서 더 자세히 알아볼 수 있습니다.

답변3

Kali가 패키지에 서명하는 데 사용하는 키가 누락되었습니다. gpg다운로드 키를 사용하여 apt-key add추가 할 수 있습니다 .

gpg --keyserver pgpkeys.mit.edu --recv-key  ED444FF07D8D0BF6
gpg -a --export ED444FF07D8D0BF6 | sudo apt-key add -

관련 정보