Skip to content
KitploitKITPLOIT
उपकरणब्लॉग
जमा करें
उपकरणब्लॉग
जमा करें

हैकिंग, पेनटेस्ट और साइबर सुरक्षा उपकरण आपके सुरक्षा शस्त्रागार के लिए!

Kitploit हैकिंग, साइबर सुरक्षा और पेंटेस्टिंग टूल्स की एक निर्देशिका है। कमजोरियों को खोजने, सिस्टम का विश्लेषण करने, परीक्षण को स्वचालित करने और अपनी सुरक्षा को मजबूत करने के लिए नवीनतम प्रोजेक्ट अपडेट खोजें।

··फ़ीड·संपर्क·गोपनीयता·© 2026 Kitploit

टूल निर्देशिका

श्रेणियाँ

सभी श्रेणियाँ देखें
Loading categories
kube-trivy — Trivy for Kubernetes | Kitploit
उपकरण/GitHubGitHub/masahiro331/kube-trivy
Vulnerability ScannersContainer SecurityCloud Security
GitHubmasahiro331/kube-trivy

kube-trivy

Trivy for Kubernetes

रिपॉजिटरी देखें
437 साल पहलेअभी तक समीक्षित नहीं

सबसे लोकप्रिय

सभी देखें →

हमारे समुदाय द्वारा सबसे अधिक उपयोग किए जाने वाले उपकरण खोजें।

सभी उपकरण खोजें

हमारे उपकरणों का संग्रह ब्राउज़ करें

सभी उपकरण देखें →
साझा करें

Kubernetes के लिए एक सरल और व्यापक भेद्यता स्कैनर

Abstract

KubeTrivy Kubernetes के लिए trivy का विस्तार है। KubeTrivy Kubernetes के लिए एक सरल और व्यापक भेद्यता स्कैनर है। KubeTrivy OS पैकेजों (Alpine, RHEL, CentOS, आदि) और एप्लिकेशन निर्भरताओं (Bundler, Composer, npm, yarn आदि) की भेद्यताओं का पता लगाता है। KubeTrivy उपयोग करना आसान है। बस बाइनरी इंस्टॉल करें और आप स्कैन करने के लिए तैयार हैं। स्कैनिंग के लिए आपको बस Kubernetes पर कंटेनर का इमेज नाम निर्दिष्ट करना है।

Trivy के बारे में देखें।

विशेषताएँ

  • व्यापक भेद्यताओं का पता लगाना
    • OS पैकेज (Alpine, Red Hat Universal Base Image, Red Hat Enterprise Linux, CentOS, Debian और Ubuntu)
    • एप्लिकेशन निर्भरताएँ (Bundler, Composer, Pipenv, Poetry, npm, yarn और Cargo)
  • kubectl कमांड का उपयोग करके भेद्यताओं का प्रबंधन
    • अपने Kubernetes पर एक CRD बनाएं
    • भेद्यता जानकारी प्राप्त करें kubectl get vulnerability या kubetrivy get ${resourceName}
  • Trivy की सुविधाओं का विस्तार
    • kubetrivy trivy के स्थानीय DB के साथ संगत है।
    • kubetrivy trivy के कमांड विकल्पों के साथ संगत है।

Mac पर इंस्टॉल करें

root@kitploit:~
$ brew tap masahiro331/kube-tirvy
$ brew install kube-trivy
$ kubetrivy -h

इंस्टॉल करें

root@kitploit:~
$ go get -u github.com/masahiro331/kube-trivy
$ kubetrivy -h

त्वरित आरंभ

CRD इंस्टॉल करें

root@kitploit:~
$ cat << EOS > crd.yaml
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
  name: vulnerabilities.kubetrivy.io
spec:
  group: kubetrivy.io
  version: v1
  names:
    kind: Vulnerability
    plural: vulnerabilities
  scope: Namespaced
  additionalPrinterColumns:
  - name: UNKNOWN
    type: integer
    description: The total of vulnerabilities launched by the kubetrivy
    JSONPath: .spec.statistics.UNKNOWN
  - name: LOW
    type: integer
    description: The total of vulnerabilities launched by the kubetrivy
    JSONPath: .spec.statistics.LOW
  - name: MEDIUM
    type: integer
    description: The total of vulnerabilities launched by the kubetrivy
    JSONPath: .spec.statistics.MEDIUM
  - name: HIGH
    type: integer
    description: The total of vulnerabilities launched by the kubetrivy
    JSONPath: .spec.statistics.HIGH
  - name: CRITICAL
    type: integer
    description: The total of vulnerabilities launched by the kubetrivy
    JSONPath: .spec.statistics.CRITICAL
EOS

$ kubectl apply -f crd.yaml
$ kubectl get vulnerability

बुनियादी

root@kitploit:~
$ kubetrivy -n default scan
$ kubetrivy -n default scan
$ kubectl get vulnerability -n default
$ kubetrivy -n default get ${resourceName}
टूल डाउनलोड करें