# WHATPORT(7777)

## NAME

port 7777 — game server / cbt — IANA calls it cbt, but everyone else knows 7777 as the default game-server port — Unreal Engine dedicated servers start here.

Protocol: TCP/UDP  
IANA registry

## DESCRIPTION

Epic's documentation states that an Unreal Engine dedicated server "listens on the localhost IP address (127.0.0.1) at port 7777" by default, and the convention spread across the games built on it and its contemporaries, which is why 7777 is the number people reach for when standing up any self-hosted multiplayer server. Game traffic is normally UDP; a TCP listener on 7777 is more often an application server, an RCON or query interface, or something unrelated that liked the digits. The IANA registration (cbt, Core Based Trees multicast routing) has no bearing on any of this.

## EXPOSURE

**Expose with care.** A public game server is exposed on purpose, but it is unauthenticated by design and mod or plugin layers are a repeated source of remote code execution — run it isolated, patched, and never on a machine that hosts anything else.

## CHECK

```sh
nmap -Pn -sU -sV -p 7777 TARGET
```

## SEE ALSO

- docs — [Unreal Engine — Setting Up Dedicated Servers (default port 7777)](https://dev.epicgames.com/documentation/en-us/unreal-engine/setting-up-dedicated-servers-in-unreal-engine) (dev.epicgames.com)
- iana — [IANA port registry — 7777 (cbt)](https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xhtml?search=7777) (iana.org)

---

HTML: <https://whatport.net/7777/> · JSON: <https://whatport.net/7777.json> · full dataset: <https://whatport.net/ports.json>
