hacktricks/src/network-services-pentesting/1723-pentesting-pptp.md

23 lines
1010 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 1723 - Pentesting PPTP
{{#include ../banners/hacktricks-training.md}}
## 기본 정보
**Point-to-Point Tunneling Protocol (PPTP)**는 **모바일 장치**에 대한 **원격 액세스**에 널리 사용되는 방법입니다. 키 교환을 위해 **TCP 포트 1723**를 사용하며, **IP 프로토콜 47**(Generic Routing Encapsulation, 또는 **GRE**)는 피어 간에 전송되는 데이터를 암호화하는 데 사용됩니다. 이 설정은 인터넷을 통한 안전한 통신 채널을 구축하는 데 중요하며, 교환되는 데이터가 기밀로 유지되고 무단 액세스로부터 보호되도록 보장합니다.
**기본 포트**:1723
## 열거
```bash
nmap Pn -sSV -p1723 <IP>
```
### [무차별 대입 공격](../generic-hacking/brute-force.md#pptp)
## 취약점
- [https://www.schneier.com/academic/pptp/](https://www.schneier.com/academic/pptp/)
- [https://github.com/moxie0/chapcrack](https://github.com/moxie0/chapcrack)
{{#include ../banners/hacktricks-training.md}}