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

23 lines
1.0 KiB
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}}