> For the complete documentation index, see [llms.txt](https://docs.h4rithd.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.h4rithd.com/tcp/3690-subversion.md).

# Subversion | 3690

* Basic Enumeration

```bash
## ------------------| Banner Grabbing
nc -vn 10.10.10.203 3690

## ------------------| list 
svn ls svn://10.10.10.203

## ------------------| Commit history
svn log svn://10.10.10.203

## ------------------| Download the repository
svn checkout svn://10.10.10.203

## ------------------| Go to revision 2 inside the checkout folder
svn up -r 2 
```
