Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
trivy-repo — Trivy的deb/rpm仓库 | Kitploit
工具/GitHubGitHub/aquasecurity/trivy-repo
漏洞扫描器容器安全云安全DevSecOps秘密检测供应链安全错误配置
GitHubaquasecurity/trivy-repo

trivy-repo

Trivy的deb/rpm仓库

查看仓库
12135天前尚未审核

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

trivy-repo

Trivy的deb/rpm软件仓库

Debian/Ubuntu

root@kitploit:~
$ sudo apt-get install wget apt-transport-https gnupg
$ wget -qO - https://get.trivy.dev/deb/public.key | gpg --dearmor | sudo tee /usr/share/keyrings/trivy.gpg > /dev/null
$ echo "deb [signed-by=/usr/share/keyrings/trivy.gpg] https://get.trivy.dev/deb generic main" | sudo tee -a /etc/apt/sources.list.d/trivy.list
$ sudo apt-get update
$ sudo apt-get install trivy

RHEL/CentOS

添加仓库设置

root@kitploit:~
$ sudo tee /etc/yum.repos.d/trivy.repo << 'EOF'
[trivy]
name=Trivy repository
baseurl=https://get.trivy.dev/rpm/releases/$basearch/
gpgcheck=1
enabled=1
gpgkey=https://get.trivy.dev/rpm/public.key
EOF

使用 yum:

root@kitploit:~
$ sudo yum -y update
$ sudo yum -y install trivy

使用 dnf:

root@kitploit:~
$ sudo dnf -y update
$ sudo dnf -y install trivy
下载工具