Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
Tools/GitHubGitHub/randomrobbiebf/chart-down
Container SecurityCloud SecurityDevSecOpsSecret DetectionSupply Chain Security
GitHubrandomrobbiebf/chart-down

chart-down

Extracts all the chart lists from ChartMuseum

View Repository
16 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

chart-down

Download and scan Helm charts for secrets using TruffleHog.

Given a Helm repository URL, chart-down fetches the repo index, downloads every chart archive, extracts it, and runs TruffleHog against the contents.

Requirements

  • Go 1.19+
  • TruffleHog on PATH (brew install trufflehog)

Install

root@kitploit:~
go install github.com/RandomRobbieBF/chart-down@latest

Or build from source:

root@kitploit:~
git clone https://github.com/RandomRobbieBF/chart-down.git
cd chart-down
go build -o chart-down .

Usage

root@kitploit:~
./chart-down -url <helm-repo-url> [-proxy <proxy-url>]

Flags

FlagRequiredDescription
-urlYesHelm repository URL (appends /index.yaml if needed)
-proxyNoHTTP or SOCKS5 proxy URL (e.g. )

Examples

root@kitploit:~
# Basic scan
./chart-down -url https://charts.example.com

# Scan through a proxy
./chart-down -url https://charts.example.com -proxy http://127.0.0.1:8080

Output

PathDescription
charts.txtList of all chart download URLs
charts-extracted/

Review findings:

root@kitploit:~
# Verified secrets only
cat trufflehog-results/verified-secrets.json 2>/dev/null | jq .

# All findings
cat trufflehog-results/*.json | jq .
Download Tool
http://127.0.0.1:8080
Extracted chart contents
trufflehog-results/JSON findings per chart (only charts with secrets)
trufflehog-results/verified-secrets.jsonConsolidated verified (confirmed active) secrets