hacktricks/src/network-services-pentesting/3690-pentesting-subversion-svn-server.md
2025-01-02 11:51:00 +01:00

32 lines
875 B
Markdown

{{#include ../banners/hacktricks-training.md}}
# Basic Information
**Subversion** is a centralized **version control system** that plays a crucial role in managing both the present and historical data of projects. Being an **open source** tool, it operates under the **Apache license**. This system is widely acknowledged for its capabilities in **software versioning and revision control**, ensuring that users can keep track of changes over time efficiently.
**Default port:** 3690
```
PORT STATE SERVICE
3690/tcp open svnserve Subversion
```
## Banner Grabbing
```
nc -vn 10.10.10.10 3690
```
## Enumeration
```bash
svn ls svn://10.10.10.203 #list
svn log svn://10.10.10.203 #Commit history
svn checkout svn://10.10.10.203 #Download the repository
svn up -r 2 #Go to revision 2 inside the checkout folder
```
{{#include ../banners/hacktricks-training.md}}