Assinatura inválida ao tentar atualizar o apt no Kali [duplicado]

12

Estou recebendo um erro de assinatura inválida quando tento 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.

Por que isso está acontecendo? Como posso consertar isso?

    
por Torpea 05.02.2018 / 10:56

3 respostas

41

Por: link , seu pacote de chaveiro de arquivo está desatualizado. Você precisa fazer isso (como root):

wget -q -O - https://archive.kali.org/archive-key.asc  | apt-key add
    
por 06.02.2018 / 06:19
6

Tente isto:

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

Fórum Kali tem este tópico onde você pode procurar mais se isso não funcionar.

    
por 05.02.2018 / 11:13
3

Você está perdendo a chave que o Kali usa para assinar seus pacotes. Você pode usar gpg para baixar a chave e apt-key add para adicioná-la:

gpg --keyserver pgpkeys.mit.edu --recv-key  ED444FF07D8D0BF6
gpg -a --export ED444FF07D8D0BF6 | sudo apt-key add -
    
por 05.02.2018 / 17:50