1001Ferramentas
📶Generators

Wi-Fi SSID Generator

Generate creative Wi-Fi SSIDs: theme (family, office, aggressive, fantasy) + optional numeric suffix.


  

Understanding the Wi-Fi SSID

The SSID — Service Set Identifier — is the public name of a Wi-Fi network. It's what the laptop, phone or smart bulb sees when scanning for networks. IEEE 802.11 defines the SSID as a string of up to 32 octets — in practice up to 32 ASCII characters or fewer UTF-8 characters depending on how many bytes each glyph takes. The router announces the SSID in beacon frames roughly ten times per second; clients use the SSID to know which access point they should associate with after the user picks a network.

Routers can be configured to hide the SSID — the beacon goes out with an empty name and the router only answers probe requests that already know the SSID. This is security through obscurity: it doesn't protect the network because any client that has connected before will broadcast the SSID in its probe requests as it walks down the street, and tools like Kismet or Wireshark capture the leak in seconds. Hiding the SSID also breaks roaming on some legacy iOS and Android builds.

Default SSIDs and rainbow tables

Off-the-shelf routers ship with predictable SSIDs like NET_AB12CD, CLARO_AB12, VIVO-2G-XYZ, TP-Link_E0F2. When the default password is derived from the MAC address or serial number, attackers pre-compute rainbow tables of WPA2 PSKs for the entire range — cracking a captured handshake then takes milliseconds, not days. Changing the SSID is the easiest way to drop out of those rainbow tables, but you should also change the password.

Best practices for naming

  • Avoid PII: never use CasaDoJoao or WiFi_Maria_Silva — it makes social engineering trivial and helps WPS attacks.
  • Keep it unique: identical SSIDs on neighbouring networks confuse clients and may trigger evil-twin warnings on iOS.
  • Separate guests: run a guest SSID isolated from the main LAN — most consumer routers support it natively.
  • Isolate IoT: put smart bulbs, cameras and TVs on a separate SSID so a compromised lightbulb can't pivot to your laptop.
  • Band steering: modern routers expose 2.4 GHz and 5 GHz under the same SSID; older models force you to suffix _5G or -2.4.

Security and encryption

SSID is plaintext — the encryption is on top of it. The current standard is WPA3 (2018), which fixes WPA2's KRACK weaknesses and forbids weak ciphers. WPA2-AES is still acceptable if the password is long and not in any leak list. WEP and original WPA are broken — cracked in under five minutes — and should be retired. Mesh systems like Google Nest Wifi, Eero and TP-Link Deco announce a single SSID across multiple access points; the underlying radios pick the best link without the user noticing.

Gotchas and trivia

Emoji in the SSID look great on modern phones but break older Wi-Fi printers and many ESP8266-based smart plugs. Special characters that push the byte count over 32 (a single 4-byte emoji counts as four octets) can cause overflow on dumb clients. Cafés and hotels often run a public SSID plus an HTTP captive portal that intercepts the first request and asks for login or terms acceptance. The geek tradition of trolling SSIDs is alive and well: FBI Surveillance Van, Pretty Fly For A Wi-Fi and Tell My Wi-Fi Love Her are recurring classics. Privacy researchers note that SSID plus a GPS fix is enough to locate a household via the public WiGLE database, so unique-but-impersonal naming is the sweet spot.

FAQ

Does the SSID affect Wi-Fi speed? Not directly. Throughput depends on radio band, channel width, MIMO streams and interference. The SSID just labels the network — though hiding it adds latency on connect because the client has to probe instead of passively scan.

Can two networks share the same SSID? Yes — that's exactly how mesh and enterprise Wi-Fi work. Clients pick the access point with the strongest signal, but in a non-mesh setup they may flap between APs and confuse roaming, so use the same SSID only when you actually want roaming.

Are spaces allowed in the SSID? Yes — spaces are valid ASCII and most operating systems handle them. Some older command-line tools (legacy iwconfig, embedded routers) require the SSID to be quoted on the configuration line.

How long can the SSID be? Up to 32 octets per IEEE 802.11. For ASCII that's 32 characters; for UTF-8 with accented or emoji characters the visible length is shorter because each glyph takes 2–4 bytes.

Related Tools