How to find your Wi-Fi password: step-by-step instructions for all devices

Have you suddenly forgotten your Wi-Fi password, and there's no sticker with the code on your router? Or maybe someone changed it without telling you? This situation is familiar to many, especially when you need to connect a new device or share your network with guests. Luckily, there are several ways to restore access to your network, and you don't need to be an IT professional to do it.

In this article we will look at all possible methodsHow to find out your Wi-Fi password—from the simplest (viewing it on a connected device) to the more technical (logging into the router's admin panel). You'll learn how to Windows, MacOS, Android And iPhone, and what to do if standard methods don't work. Important: All instructions are suitable for any router modelsTP-Link, ASUS, D-Link, Zyxel, Keenetic and others.

Before we get into the details, remember: If you are not the network administrator (for example, you are connected to Wi-Fi in a cafe or office), then it is impossible to find out the password legally - this violates security rules and can be considered hackingAll methods in the article are intended only for restoring access to his own networks.

📊 What kind of router do you have?
TP-Link
ASUS
D-Link
Zyxel/Keenetic
Another brand
Don't know

1. Check the password on a connected device (without a router)

The fastest way is to view the saved password on a device that's already connected to Wi-Fi. This works if you've previously entered the code manually (for example, on a laptop or smartphone). Here are instructions for different operating systems.

🖥️ On Windows 10/11

If your computer or laptop is connected to Wi-Fi, you can find the password in your network settings:

  1. Click Win + R, enter ncpa.cpl and press Enter.
  2. Right-click on your Wi-Fi network → StateWireless network properties.
  3. Go to the tab Security and check the box Show entered characters.

The password will be displayed in the field. Network security key. If the button Display characters is inactive, which means your account does not have administrator rights.

🍎 On MacOS

On MacBook or iMac The password is stored in the keychain:

  1. Open Programs → Utilities → Keychain.
  2. Enter the name of your Wi-Fi network in the search.
  3. Double-click on the found entry and check the box Show password.

The system will ask for your account password Mac - enter it, and the required code will be displayed in the window.

📱 On Android

On smartphones with Android 10+ You can only view the password with permissions root or through ADBBut there is a workaround:

  • 🔹 If you have Samsung: go to Settings → Connections → Wi-Fi, tap on your network → Share (you will need to enter your PIN or fingerprint).
  • 🔹 On Xiaomi/Redmi: open Settings → Wi-Fi, select your network → Show QR code — the password will be at the bottom of the screen.
  • 🔹 On other devices: Use apps like WiFi Password Viewer (requires root).

🍏 On iPhone/iPad

On iOS There is no built-in way to view the password, but you can bypass the restriction:

  • 🔹 If you have Mac: connect iPhone to the computer, open A bunch of keys (see instructions for MacOS higher).
  • 🔹 Through iCloud Keychain: If syncing is enabled, the password can be found on another device. Apple.
  • 🔹 With the help of Shortcuts: Create an automation with an action Get Wi-Fi Network (requires iOS 14+).
⚠️ Attention: On some devices (especially corporate ones), Wi-Fi passwords may be hidden by security policies. In this case, access to the router is required.

2. Login to the router admin panel

If the password isn't saved on your devices, you can find it through the router's web interface. To do this, you'll need to connect to the network. via cable (or via Wi-Fi if you remember the old password) and go to settings.

🌐 How to open the Control Panel

Standard login addresses:

  • 🔹 192.168.0.1 or 192.168.1.1 (the most common)
  • 🔹 tplinkwifi.net (For TP-Link)
  • 🔹 router.asus.com (For ASUS)
  • 🔹 my.keenetic.net (For Keenetic)

Enter the address in your browser (for example, Chrome or Edge). If the page doesn't open, check your connection to your router or try a different address.

🔐 Login and password to log in

By default, most routers use:

Router brand Login Password
TP-Link admin admin or an empty field
ASUS admin admin
D-Link admin admin or an empty field
Zyxel/Keenetic admin 1234 or password
Huawei admin admin or @HuaweiHgw

If the default data doesn't work, it means someone has changed it. In this case, reset the router to factory settings (button Reset on the back panel - hold for 10 seconds). Attention: After the reset, you will have to set up the network again!

🔍 Where to find the Wi-Fi password in settings

After logging into the control panel:

  1. Go to the section Wireless (or Wi-Fi, Wireless network).
  2. Open the tab Security (Security).
  3. The password will be in the field Password, Key or PSK.

On some routers (for example, Keenetic) the path may differ: Home Network → Access Point → Security.

Check your cable connection|Try a different browser (Chrome, Firefox)|Clear your browser cache|Disable VPN/proxy|Make sure you are entering the correct IP address-->

⚠️ Attention: If your router displays an "Incorrect Password" error with default settings and resetting it doesn't help, your device may be blocked by your ISP. Contact technical support.

3. Using mobile applications from the manufacturer

Many brands offer official apps for managing your router from your smartphone. This is convenient if you don't want to fiddle with the web interface. Let's look at the most popular utilities.

📱 Wi-Fi Management Apps

  • 🔹 TP-Link Tether — for routers TP-Link (available on Android And iOS).
  • 🔹 ASUS Router — for devices ASUS.
  • 🔹 D-Link Wi-Fi — for routers D-Link.
  • 🔹 Keenetic — a universal application for Keenetic.
  • 🔹 Mi Wi-Fi — for routers Xiaomi.

Download the app from App Store or Google Play, connect to the router's network and log in (usually using the login/password from the sticker on the device). The Wi-Fi password can be found in the Network settings or Wireless mode.

⚡ Benefits of mobile apps

Compared to the web interface, apps offer:

  • 🔹 Simplified interface (no need to understand technical terms).
  • 🔹 Remote control (you can change your password even without being at home).
  • 🔹 Notifications about connected devices.
  • 🔹 Possibility to create a guest network.

4. Viewing the password via the command line (Windows)

For experienced users, there is a way to find out the password through CMD (command line Windows). This method works even if you are not a network administrator, but your computer is connected to it.

🖱️ Step-by-step instructions

  1. Open Command line as administrator (click Win + XTerminal (Administrator)).
  2. Enter the command to view all saved networks:
    netsh wlan show profiles
  3. Find the name of your Wi-Fi network in the list and enter:
    netsh wlan show profile name="NETWORK_NAME" key=clear

    (replace NETWORK_NAME to the real name).

  4. The password will be in the line Key content.

🔧 Alternative method via PowerShell

If CMD it doesn't work, try PowerShell:

  1. Open PowerShell on behalf of the administrator.
  2. Enter:
    (netsh wlan show profiles) | Select-String "\:(.+)$" | %{$name=$_.Matches.Groups[1].Value.Trim(); $_} | %{(netsh wlan show profile name="$name" key=clear)} | Select-String "Key contents\W+\:(.+)$" | %{$pass=$_.Matches.Groups[1].Value.Trim(); [PSCustomObject]@{PROFILE=$name;PASSWORD=$pass}} | Format-Table -AutoSize

This command will output a table with all saved networks and their passwords.

⚠️ Attention: If you're using a corporate network (e.g., at your office), your password may be hidden by domain policies. In this case, the command line won't help.

5. Reset the router to factory settings

If none of these methods work, the only drastic solution is resetting the router. This will return all settings to factory defaults, including the Wi-Fi password (it will be located on the device's sticker).

How to reset a router

  1. Find the small button on the back of the router. Reset (usually recessed into the body).
  2. Take a paper clip or a toothpick and press and hold the button 10-15 seconds.
  3. The indicators on the router will flash and go out, indicating that the reset was successful.

After rebooting, the router will have a default password (see the table in section 2). However, all personal settings (for example, PPPoE for the Internet) will have to be entered again.

⚠️ When resetting doesn't help

  • 🔹 If the router is rented from a provider (for example, Rostelecom or Beeline), resetting may block internet access. In this case, please contact support.
  • 🔹 On some models (for example, Huawei HG8245) resetting does not return the default password - you will need a configuration file from the provider.
What should I do if the Internet doesn't work after a reset?

If the internet connection disappears after resetting the router, you most likely need to reconfigure the connection. ISPs typically use the protocol PPPoE — You'll need to enter the username and password from your contract. If you don't know this information, call support or check your personal account on the provider's website.

6. Alternative methods (if nothing helps)

In rare cases, standard methods don't work. Let's consider some less obvious solutions.

📡 View your password on another device

If you have a second computer, tablet or even Smart TV, which is connected to Wi-Fi, try looking up the password there. For example:

  • 🔹 On Smart TV (Samsung/LG): go to Settings → Network → Wi-Fi → select your network → Show password.
  • 🔹 On printer with Wi-Fi: some models (eg HP or Canon) save passwords in the web interface.

📞 Contacting your provider

If the router was issued by the provider (for example, MTS, Megaphone, Dom.ru), call support and ask for help restoring access. They have remote access to your equipment (if it's linked to your contract).

When you call, please be prepared to provide:

  • 🔹 Contract or personal account number.
  • 🔹 Router MAC address (indicated on the sticker).
  • 🔹 Passport details (to confirm identity).

🔍 Using specialized software

As a last resort, you can use Wi-Fi password recovery programs, such as:

  • 🔹 WirelessKeyView (For Windows) - shows all saved passwords.
  • 🔹 Wifi Password Revealer (For Android With root).
  • 🔹 Kismac (For MacOS) - for network analysis.

Important: Antivirus programs may flag such software as potentially dangerous. Download programs only from official websites!

7. How to protect your Wi-Fi password in the future

To avoid this problem again, follow these simple rules:

🔒 Safety tips

  • 🔹 Keep your password in a safe place: write it down in a notepad or use password managers (KeePass, 1Password).
  • 🔹 Change the default router password: by default, many devices use admin/admin, which is unsafe.
  • 🔹 Enable guest networkIf you frequently share Wi-Fi with guests, create a separate network with limited access.
  • 🔹 Update your router firmware: Outdated versions may contain vulnerabilities.
  • 🔹 Disable WPS: This feature makes connection easier, but makes the network vulnerable to hacking.

📌 How to create a strong password

Use these guidelines:

  • 🔹 Length: not less than 12 characters.
  • 🔹 Combination: uppercase and lowercase letters, numbers, symbols (!@#$%).
  • 🔹 Avoid obvious words (e.g. qwerty123 or password).
  • 🔹 Example of a strong password: C0ff33$h0p! or W1-F1_Pr1v3t!.

You can use password generators, such as the one built into Google Chrome or on the website LastPass.

⚠️ Attention: Never share your main Wi-Fi network password with strangers. If you need to grant access, use a guest network or a temporary password (if your router supports this feature).

Frequently Asked Questions (FAQ)

Is it possible to find out my neighbor's Wi-Fi password?

No, it's illegal. Hacking into other people's networks violates Article 272 of the Russian Criminal Code ("Unauthorized access to computer information") and can result in a fine or criminal liability. If you need internet, sign up for a mobile plan or make an official arrangement with your neighbor.

I reset my router, but the internet isn't working. What should I do?

After the reset, you'll need to reconfigure your connection to your provider. Typically, you'll need to enter the following information: PPPoE (login/password from the contract) in the section WAN or InternetIf you don't know the parameters, contact your provider's support team.

Is it possible to find out the Wi-Fi password from a phone without rooting?

On the majority Android-devices without root This is not possible, except for some models Samsung And Xiaomi (See Section 1). iPhone there is also no legal way without Mac or iCloud Keychain.

How to change Wi-Fi password after recovery?

Go to the router control panel (see section 2), go to Wireless → Security and enter the new password in the field Password or PSKSave the settings and reconnect all devices.

My provider says they can't help with my password. What should I do?

If the router is yours (not rented) and your provider refuses to help, try:

  1. Reset the router and configure it yourself (the details for connecting to the Internet should be in the contract).
  2. Contact another support specialist (sometimes operators provide different information).
  3. Buy a new router and set it up from scratch.