web-dev-qa-db-ja.com

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.

なんでこんなことが起こっているの?どうすれば修正できますか?

19
Torpea

あたり: https://Twitter.com/kalilinux/status/959515084157538304 、アーカイブキーリングパッケージが古くなっています。これを(rootとして)行う必要があります。

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

これを試して:

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

Kaliフォーラム これが機能しない場合は、このスレッドで詳細を確認できます。

5
AsmuAsheer

Kaliがパッケージの署名に使用するキーがありません。 gpgを使用してキーをダウンロードし、apt-key add追加するには:

gpg --keyserver pgpkeys.mit.edu --recv-key  ED444FF07D8D0BF6
gpg -a --export ED444FF07D8D0BF6 | Sudo apt-key add -
4
Michael Mrozek