Checkout a repo:
svn checkout svn://...
Show log
svn log
Show infos
svn info
Show all branches
svn ls svn://$victim --verbose
The first number from the previous command shows the revision. To see the content of a repo for another revision, add the r flag:
svn ls svn://$victim --verbose -r 1 svn ls svn://$victim --verbose -r 2 ...
Checkout a specific version. Use X as revision number. The command svn up shows the current revision number. Use this first with ‑r1 (first commit) and then increment the numbers until the current commit.
svn up -rX
Notes
- Extracting creds and infos from the .svn directory: SVN-Extractor
Leave a Reply
You must be logged in to post a comment.