Skip to main content
COSMICBYTEZLABS
NewsSecurityHOWTOsToolsTraining
StudyProjectsNewsletterHire MeAbout
Subscribe

Press Enter to search or Esc to close

News
Security
HOWTOs
Tools
Training
Study
Projects
Newsletter
Hire Me
About
RSS Feed
Reading List
Subscribe

Stay in the Loop

Get the latest security alerts, tutorials, and tech insights delivered to your inbox.

Subscribe NowFree forever. No spam.
COSMICBYTEZLABS

Your trusted source for IT intelligence, cybersecurity insights, and hands-on technical guides.

2493+ Articles
160+ Guides

CONTENT

  • Latest News
  • Security Alerts
  • HOWTOs
  • Checklists
  • Projects
  • Exam Prep

RESOURCES

  • Search
  • Browse Tags
  • Newsletter Archive
  • Reading List
  • RSS Feed

COMPANY

  • About Us
  • Contact
  • Privacy Policy
  • Terms of Service

© 2026 CosmicBytez Labs. All rights reserved.

System Status: Operational
  1. Home
  2. News
  3. 9,300+ Leaked AWS Keys Still Active, Granting Full Corporate Account Control
9,300+ Leaked AWS Keys Still Active, Granting Full Corporate Account Control
NEWS

9,300+ Leaked AWS Keys Still Active, Granting Full Corporate Account Control

Over 9,300 AWS access keys exposed publicly between 2022 and 2026 remain valid and active, giving attackers full control over corporate cloud accounts.

Dylan H.

News Desk

August 22, 2026
4 min read

Thousands of Leaked AWS Keys Are Still Working

Security researchers have uncovered a deeply troubling finding: more than 9,300 Amazon Web Services (AWS) access keys that were publicly exposed between August 2022 and August 2026 are still active and valid. The keys — leaked across public code repositories, pastebins, container images, and misconfigured storage — provide full control over the corporate AWS accounts they belong to.

The scale of the exposure and the failure to rotate compromised credentials represents one of the most significant ongoing cloud credential risks documented to date.


What Was Found

MetricDetail
Keys Exposed9,300+
Exposure WindowAugust 2022 – August 2026
StatusStill active and valid
Account TypeCorporate AWS accounts
Access LevelFull account control in many cases

Researchers found the credentials exposed across a range of public-facing surfaces including:

  • GitHub and GitLab repositories — hardcoded keys committed to public repos
  • Public S3 buckets — configuration files containing API credentials left world-readable
  • Docker Hub images — credentials baked into container layers
  • Pastebin and code-sharing sites — snippets uploaded during debugging sessions
  • CI/CD logs — pipeline output inadvertently printed secrets to public build logs

Why This Matters

AWS access keys consist of an Access Key ID and a Secret Access Key. Together, they authenticate as a specific IAM user or role. Keys with broad permissions can be used to:

  • Enumerate and exfiltrate data from S3 buckets, RDS databases, and DynamoDB tables
  • Spin up compute resources for cryptomining or botnet activity (generating large bills for victims)
  • Exfiltrate secrets from AWS Secrets Manager and Parameter Store
  • Modify IAM policies to create backdoor accounts
  • Delete or encrypt resources for ransomware-style attacks
  • Pivot to other cloud providers via stored cross-cloud credentials

The fact that these keys remain active four years after initial exposure suggests that many organizations either:

  1. Do not have automated secret scanning and rotation pipelines
  2. Are unaware the keys were ever exposed
  3. Lack sufficient AWS CloudTrail monitoring to detect active abuse

The Credential Lifecycle Problem

When a developer commits an AWS key to a public GitHub repo, best practice calls for immediate key rotation — even if the commit is deleted within seconds. Modern internet scanners and bots continuously monitor GitHub events and will capture leaked credentials within minutes of publication.

Yet the research findings indicate that the majority of the 9,300+ leaked keys were never rotated. This creates a persistent attack surface that grows over time as the credentials age without rotation.

Common Sources of Credential Leaks

# Developer accidentally commits .env file
git add .env && git commit -m "add config"
 
# Hardcoded in application code
aws_access_key_id = "AKIA..."
aws_secret_access_key = "abc123..."
 
# Left in CI/CD environment variable logs
echo "Deploying with key: $AWS_ACCESS_KEY_ID"

Immediate Actions for Organizations

1. Audit Existing Keys

# List all IAM users and their access keys
aws iam list-users --query 'Users[*].UserName' --output text | \
  xargs -I{} aws iam list-access-keys --user-name {}
 
# Check for keys older than 90 days
aws iam generate-credential-report
aws iam get-credential-report --query 'Content' --output text | base64 -d

2. Enable AWS Secrets Scanner

AWS now offers Amazon CodeGuru Secrets Detector and integrates with GitHub Advanced Security for secret scanning. Enable these guardrails across all repositories.

3. Implement Key Rotation Policies

  • Set IAM password and key rotation policies via AWS Config rules
  • Enable AWS IAM Access Analyzer to continuously monitor for public exposure
  • Use AWS Secrets Manager with automatic rotation instead of static keys where possible

4. Adopt IAM Roles Over Long-Lived Keys

For EC2, Lambda, ECS, and other AWS-native workloads, use IAM roles rather than static access keys. Roles issue short-lived credentials automatically and eliminate the rotation problem entirely.

5. Monitor CloudTrail for Abuse

Enable CloudTrail in all regions and set up AWS GuardDuty to detect anomalous API activity including:

  • API calls from unfamiliar IP addresses or geographies
  • Unusual IAM operations (creating users, attaching policies)
  • High-volume S3 GetObject requests (data exfiltration)
  • EC2 or Lambda provisioning outside normal patterns

Prevention: Shift Left on Secrets

ToolPurpose
git-secretsPre-commit hook to block credential commits
truffleHogScan git history for leaked secrets
detect-secretsBaseline and drift detection
AWS Secrets ManagerCentralized secret storage with auto-rotation
SOPSEncrypted secrets in version control

References

  • BleepingComputer — Hundreds of leaked AWS keys give full control over corporate accounts
  • AWS IAM Best Practices
  • AWS CloudTrail Documentation
#AWS#Cloud Security#Credential Leak#Access Keys#Amazon#Secret Management#Data Exposure

Related Articles

768 Live AWS Keys with Full Admin Access Found Across Public Repos, AI Training Data, and Docker Images

Truffle Security found 64,000 unique live AWS keys in public sources — 526 are root keys, 88% still authenticate, median age 5 years.

4 min read

Over 1,000 Charities Hit by Beacon CRM Data Breach

Over 1,000 UK charities affected after Beacon CRM suffered a data breach traced to an exposed AWS access key in public JS files.

3 min read

Lessons Learned from CISA's Recent GitHub Leak

CISA has published a postmortem on a data leak in which a contractor exposed dozens of internal credentials — including AWS GovCloud keys — in a public...

4 min read
Back to all News