commit-echo
- •
Attribution
- •
Solved by rn during the competition.
- •
- •
What it asked
- •
Inspect a repository whose working tree had been cleaned and recover evidence preserved in commit history.
- •
- •
- •
Solution
- •
git log --all --oneline --decorate git show --stat d8cafa0c87fecdf6e201d8783c8fa9fd04709197 git show d8cafa0c87fecdf6e201d8783c8fa9fd04709197
- •
- •
Verification
- •
The team document records the recovered flag and the exact commit ID. The repository archive was not separately attached for replay.
- •
- •
Concepts
- •
Git object history; deleted-file recovery; commit-level evidence review.
- •
- •