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

23 lines
1.4 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}}
## Basic Information
**Point-to-Point Tunneling Protocol (PPTP)** είναι μια μέθοδος που χρησιμοποιείται ευρέως για **remote access** σε κινητές συσκευές. Χρησιμοποιεί **TCP port 1723** για την ανταλλαγή κλειδιών, ενώ το **IP protocol 47** (Generic Routing Encapsulation, ή **GRE**), χρησιμοποιείται για την κρυπτογράφηση των δεδομένων που μεταδίδονται μεταξύ των συμμετεχόντων. Αυτή η ρύθμιση είναι κρίσιμη για την establishment ενός ασφαλούς καναλιού επικοινωνίας μέσω του διαδικτύου, διασφαλίζοντας ότι τα δεδομένα που ανταλλάσσονται παραμένουν εμπιστευτικά και προστατευμένα από μη εξουσιοδοτημένη πρόσβαση.
**Default Port**:1723
## Enumeration
```bash
nmap Pn -sSV -p1723 <IP>
```
### [Brute Force](../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}}