Kali-Linux

如何修復 wget 在 kali 中不受信任的 HTTP url 錯誤?

  • October 1, 2021

當我嘗試wget在 http url 上執行命令時,我收到以下錯誤消息:

ERROR: The certificate of `url' is not trusted.
ERROR: The certificate of `url' hasn't got a known issuer.

如果您使用的是 Debian 或 Ubuntu,請安裝該ca-certificates軟體包:

$ sudo apt-get install ca-certificates

如果您不關心檢查證書的有效性,請使用以下--no-check-certificate選項:

$ wget --no-check-certificate https://download/url

注意:不推薦使用第二個選項,因為可能會發生中間人攻擊。

每個 TFM for wget 使用

--no-check-certificate

選項。

“不要根據可用的證書頒發機構檢查伺服器證書。也不要要求 URL 主機名與證書提供的公用名匹配。”

引用自:https://unix.stackexchange.com/questions/334905