Port 1723 is the PPTP (Point-to-Point Tunneling Protocol) control channel port. PPTP is a legacy VPN protocol with known cryptographic weaknesses – MS-CHAPv2 authentication can be cracked in under 24 hours. PPTP should never be used for security-sensitive connections. Use WireGuard, OpenVPN, or IPsec instead.
Port Number
1723
Protocol
TCP
Service
Point-to-Point Tunneling Protocol
Range
IANA Registered (1024–49151)
Detect PPTP VPN server and version
nmap -p 1723 --script pptp-version targetCheck if PPTP server daemon is configured on Linux
grep -r 'pptp\|pptpd' /etc/ 2>/dev/nullPowerShell: check Windows RRAS VPN tunnel types (disable PPTP)
Get-VpnServerConfiguration | Select TunnelTypeCheck if the same server offers IKEv2 as a PPTP replacement
ike-scan --ikev2 targetpptpsetup --create tunnel --server vpn.example.com --username user
nmap -p 1723 target
pon tunnelPPTP (Point-to-Point Tunneling Protocol) was developed by Microsoft, Ascend Communications, and US Robotics in 1996 (RFC 2637, informational). Port 1723 was assigned for the control channel. PPTP was the first widely-deployed VPN protocol (built into Windows 95 OSR2). Bruce Schneier and Mudge published the first cryptanalysis in 1998. Moxie Marlinspike's 2012 MS-CHAPv2 crack made PPTP definitively insecure. Apple removed PPTP from macOS/iOS in 2016-2018.
Why is PPTP still used if it's broken?
Inertia. PPTP is built into every Windows version, most consumer routers, and many legacy network appliances. It 'just works' without certificates or complex setup. Organizations often don't realize it's broken because: (1) it was once recommended by Microsoft, (2) traffic 'looks encrypted' in Wireshark, (3) no one tested their specific deployment. The migration path is clear (IKEv2 is built into modern Windows too) but requires active effort.
What should I replace PPTP with?
For Windows environments: IKEv2/IPsec (built into Windows 10/11, no client install, strongest with certificate auth). For cross-platform: WireGuard (fastest, simplest, modern crypto). For maximum compatibility: OpenVPN (works through restrictive firewalls on TCP 443). All three are dramatically more secure than PPTP. Migration order: deploy new VPN alongside PPTP → move users → disable 1723.