ended3월 15일· 1 sources

Your AWS Credentials Are Still on GitHub Even After You Delete Them

AWS 자격 증명, 삭제해도 GitHub에 그대로 남아 있다

Why it matters

Deleting credentials from a file and pushing to GitHub does not remove them — Git retains every committed version, making secrets recoverable via simple commands like `git log -p`. Automated bots scan public repos within seconds and exploit exposed keys; a 2024 incident led to $50K in unauthorized charges within two hours. To truly remove credentials, developers must rewrite Git history using `git filter-branch` or the BFG Repo Cleaner and force-push.

1
Sources
+0
24h
Growth
190d
Active
AWS credentialsGitHubGit historyBFG Repo Cleanercredential leak

Sources

Related Issues