mirror of
https://github.com/HackTricks-wiki/hacktricks.git
synced 2025-10-10 18:36:50 +00:00
23 lines
1.6 KiB
Markdown
23 lines
1.6 KiB
Markdown
# 1723 - Pentesting PPTP
|
||
|
||
{{#include ../banners/hacktricks-training.md}}
|
||
|
||
## Basic Information
|
||
|
||
**Point-to-Point Tunneling Protocol (PPTP)** एक विधि है जो **दूरस्थ पहुँच** के लिए मोबाइल उपकरणों पर व्यापक रूप से उपयोग की जाती है। यह **TCP पोर्ट 1723** का उपयोग कुंजी के आदान-प्रदान के लिए करता है, जबकि **IP प्रोटोकॉल 47** (Generic Routing Encapsulation, या **GRE**) का उपयोग उन डेटा को एन्क्रिप्ट करने के लिए किया जाता है जो साथियों के बीच भेजा जाता है। यह सेटअप इंटरनेट पर एक सुरक्षित संचार चैनल स्थापित करने के लिए महत्वपूर्ण है, यह सुनिश्चित करते हुए कि आदान-प्रदान किया गया डेटा गोपनीय और अनधिकृत पहुँच से सुरक्षित रहे।
|
||
|
||
**डिफ़ॉल्ट पोर्ट**:1723
|
||
|
||
## Enumeration
|
||
```bash
|
||
nmap –Pn -sSV -p1723 <IP>
|
||
```
|
||
### [Brute Force](../generic-hacking/brute-force.md#pptp)
|
||
|
||
## Vulnerabilities
|
||
|
||
- [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}}
|