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
CVE-2025-49844-discovery — Audits AWS ElastiCache Redis/Valkey clusters for network exposure, checking VPC, subnet, and internet gateway routes across multiple accounts and regions. | Kitploit
Tools/GitHubGitHub/gopinaath/cve-2025-49844-discovery
Vulnerability ScannersConfiguration AuditingInformation GatheringNetwork SecurityCloud Security
GitHubgopinaath/cve-2025-49844-discovery

CVE-2025-49844-discovery

Audits AWS ElastiCache Redis/Valkey clusters for network exposure, checking VPC, subnet, and internet gateway routes across multiple accounts and regions.

View Repository
10 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

ElastiCache Redis/Valkey Network Analysis Tools

Scripts to audit AWS ElastiCache Redis and Valkey clusters for network exposure.

Prerequisites

  • AWS CLI configured with appropriate credentials
  • jq installed: brew install jq

Scripts

list-elasticache-clusters.sh

Lists all Redis/Valkey clusters across specified regions.

root@kitploit:~
./list-elasticache-clusters.sh

check-elasticache-network.sh

Analyzes network configuration for Redis/Valkey clusters in a single AWS account.

root@kitploit:~
./check-elasticache-network.sh

Output columns:

  • Region, ClusterName, Version, ARN, VPC, Subnet, Has_IGW_Route

check-elasticache-network-multi-account.sh

Same analysis across multiple AWS accounts.

root@kitploit:~
./check-elasticache-network-multi-account.sh accounts.txt

accounts.txt format: One AWS account ID per line. Requires AWS profiles configured matching account IDs.

check-elasticache-network-by-arn.sh

Analyzes specific clusters by ARN.

root@kitploit:~
./check-elasticache-network-by-arn.sh arns.txt

arns.txt format: One ElastiCache ARN per line. Non-Redis/Valkey engines flagged in Notes column.

Configuration

Regions checked: ap-southeast-2, eu-central-1, eu-west-1, us-east-1, us-west-1, us-west-2

Edit the regions variable in scripts to modify.

Output

All scripts output pipe-delimited tables. For better formatting:

root@kitploit:~
./check-elasticache-network.sh | column -t -s '|'
Download Tool