GitBook: [master] 2 pages modified

This commit is contained in:
CPol 2021-03-24 15:52:51 +00:00 committed by gitbook-bot
parent a730873c39
commit 9bf5a75d23
No known key found for this signature in database
GPG Key ID: 07D2180C7B12D0FF
2 changed files with 30 additions and 0 deletions

View File

@ -276,6 +276,7 @@
* [3306 - Pentesting Mysql](pentesting/pentesting-mysql.md)
* [3389 - Pentesting RDP](pentesting/pentesting-rdp.md)
* [3632 - Pentesting distcc](pentesting/3632-pentesting-distcc.md)
* [3690 - Pentesting Subversion \(svn server\)](pentesting/3690-pentesting-subversion-svn-server.md)
* [4369 - Pentesting Erlang Port Mapper Daemon \(epmd\)](pentesting/4369-pentesting-erlang-port-mapper-daemon-epmd.md)
* [5000 - Pentesting Docker Registry](pentesting/5000-pentesting-docker-registry.md)
* [5353/UDP Multicast DNS \(mDNS\)](pentesting/5353-udp-multicast-dns-mdns.md)

View File

@ -0,0 +1,29 @@
# 3690 - Pentesting Subversion \(svn server\)
## Basic Information
Subversion is one of many version control options available today. It's often abbreviated as SVN.
Subversion is used for maintaining current and historical versions of projects. Subversion is an open source centralized version control system. It's licensed under Apache. It's also referred to as a software version and revisioning control system.
**Default port:** 3690
```text
PORT STATE SERVICE
3690/tcp open svnserve Subversion
```
### Banner Grabbing
```text
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
```