Merge bitcoin/bitcoin#32826: p2p: add more bad ports

6967e8e8ab add more bad p2p ports (Jameson Lopp)

Pull request description:

  Add a few more ports used by extremely well adopted services that require authentication and really ought not be used by bitcoin nodes for p2p traffic.

ACKs for top commit:
  Sjors:
    utACK 6967e8e8ab
  l0rinc:
    ACK 6967e8e8ab
  glozow:
    ACK 6967e8e8ab

Tree-SHA512: bbe86aef2be9727338712ded8f90227f5d12f633ab5d324c8907c01173945d1c4d9899e05565f78688842bbf5ebb010d22173969e4168ea08d4e33f01fe9569d
This commit is contained in:
merge-script
2025-06-30 13:28:17 -04:00
3 changed files with 15 additions and 8 deletions

View File

@@ -920,10 +920,14 @@ bool IsBadPort(uint16_t port)
case 1720: // h323hostcall
case 1723: // pptp
case 2049: // nfs
case 3306: // MySQL
case 3389: // RDP / Windows Remote Desktop
case 3659: // apple-sasl / PasswordServer
case 4045: // lockd
case 5060: // sip
case 5061: // sips
case 5432: // PostgreSQL
case 5900: // VNC
case 6000: // X11
case 6566: // sane-port
case 6665: // Alternate IRC
@@ -933,6 +937,7 @@ bool IsBadPort(uint16_t port)
case 6669: // Alternate IRC
case 6697: // IRC + TLS
case 10080: // Amanda
case 27017: // MongoDB
return true;
}
return false;