
Security News
minimatch Patches 3 High-Severity ReDoS Vulnerabilities
minimatch patched three high-severity ReDoS vulnerabilities that can stall the Node.js event loop, and Socket has released free certified patches.
gke-cache-builder
Advanced tools
"""
Multi-cluster GKE cache builder with fuzzy search capabilities for hosts, namespaces, and clients.
pip install gke-cache-builder
from gke_cache_builder import build_cache, get_cache, fuzzy_search_hosts
# Build cache from GCP organization
cache = build_cache(org_id="123456789")
# Get cached data
cache_data = get_cache()
# Fuzzy search for hosts
results = fuzzy_search_hosts("example.com", max_results=5)
Set environment variables:
export GOOGLE_APPLICATION_CREDENTIALS=/path/to/service-account.json
export GCP_ORG_ID=123456789
export CLIENT_MAPPINGS_CSV=client_mappings.csv
from gke_cache_builder import build_cache
# Build from organization
cache = build_cache(org_id="123456789")
# Build from folder
cache = build_cache(folder_id="987654321")
from gke_cache_builder import fuzzy_search_hosts, fuzzy_search_namespaces
# Search hosts
host_results = fuzzy_search_hosts("acme", max_results=5, min_score=0.4)
# Search namespaces
ns_results = fuzzy_search_namespaces("prod", max_results=5)
from gke_cache_builder import get_csv_handler, create_sample_csv
# Create sample CSV
create_sample_csv("client_mappings.csv")
# Use CSV handler
handler = get_csv_handler()
client_data = handler.get_client_data("www.example.com")
MIT License """
FAQs
[Protected] GKE Multi-Cluster Cache Builder with Fuzzy Search
We found that gke-cache-builder demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
minimatch patched three high-severity ReDoS vulnerabilities that can stall the Node.js event loop, and Socket has released free certified patches.

Research
/Security News
Socket uncovered 26 malicious npm packages tied to North Korea's Contagious Interview campaign, retrieving a live 9-module infostealer and RAT from the adversary's C2.

Research
An impersonated golang.org/x/crypto clone exfiltrates passwords, executes a remote shell stager, and delivers a Rekoobe backdoor on Linux.