How to View Wi-Fi Password on Android: Complete Instructions

It's quite common to need to connect a new device to your home network but have forgotten the password. Fortunately, modern smartphones running the operating system Android They store connection data in memory, allowing them to be retrieved when needed. However, the viewing procedure depends on the operating system version, as Google's security policies are constantly tightening.

Owners of devices with up-to-date software are more fortunate: starting with the tenth version Android, the password viewing function is built into the default settings. If you have an older model, the process may require using ADB commands or presence root rightsBelow we'll review all available methods, starting with the simplest and safest.

Before you begin any technical manipulations, it's important to understand that access to this data is protected by the system for a reason. Wireless network security — is a critical aspect, and the ability to easily extract a password should be used exclusively to restore access to one's own equipment, and not to hack other people's access points.

Standard tools for Android 10 and later

Since version Android 10Google engineers have implemented a convenient QR code generation mechanism for quickly connecting guests. This same mechanism allows the smartphone owner to view a text version of the password. This doesn't require third-party apps or complicated settings; simply access the network management menu.

The process is as follows: open Settings → Connections → Wi-FiClick the gear next to the active network or select "QR code." On many shells, such as MIUI, One UI or Pixel UIThe password is written in small print beneath the QR code itself. If there's no text, take a screenshot of the screen with the code and open it using Google Lens or any QR code reader. The system will recognize the text and display the access details.

In some cases, the system may require verification of identity. You may be asked to enter Unlock PIN code, use fingerprint or conduct face scanningThis is a standard security measure to prevent data theft if the phone falls into the wrong hands.

⚠️ Attention: On smartphones of some manufacturers (for example, older versions Xiaomi or Huawei) the text password display function may be hidden. In this case, scanning the QR code remains the only standard method.

📊 What version of Android are you using?
Android 13-14
Android 10-12
Android 9 and later
Don't know

Using Google Account and syncing

The Google ecosystem allows you to sync saved Wi-Fi passwords across all devices linked to the same account. This means that if you've ever connected to a network on the same phone, the password may have been automatically saved in the cloud. You can check this using a browser on your computer or any other device.

You need to go to your settings Google accountFind the "Security" or "Password Manager" section. This is where all your saved credentials are stored, including wireless network passwords. Find the desired network in the list, tap it, and select the option to show the password (usually indicated by an eye icon). You will be required to log in again.

This method is especially useful if the phone you need to find the password from is broken, lost, or out of range. The main requirement is that it must have been turned on previously. synchronization data. Without it, the password will not be stored in Google's cloud storage.

Viewing through router settings

If your phone doesn't allow you to view the password directly, the logical next step is to access the internet connection source—your router. To do this, your smartphone must be connected to a Wi-Fi network (even if you don't know the password, the connection is already established). You'll need to find out Gateway IP address, which is usually indicated on a sticker on the bottom of the router (often this is 192.168.0.1 or 192.168.1.1).

Enter the gateway address in the address bar of your phone's browser. The system will ask for your login and password to access the control panel. By default, these are often combinations admin/admin or admin/password, if you haven't changed them. After logging in, find the section Wireless or Wi-Fi SettingsThere in the field WPA/WPA2 Password The current access key will be displayed.

The table below shows the standard addresses and login details for popular router manufacturers that may be useful when logging in:

Router brand Entrance address Default login Default password
TP-Link 192.168.0.1 admin admin
Asus 192.168.1.1 admin admin
D-Link 192.168.0.1 admin (empty)
Xiaomi 192.168.31.1 admin (set during setup)
Keenetic my.keenetic.net admin 1234

⚠️ Note: Router interfaces are constantly being updated. Menu locations may vary depending on the firmware version. If the default paths don't work, please refer to the documentation for your specific model.

Method using ADB (without Root)

For devices based on Android 9 and below, as well as for some specific builds, there is a method to obtain the password via USB debugging (ADB). This method doesn't require superuser rights, but it does require a computer and the phone driver installed. The method involves executing a command that queries the system for saved Wi-Fi configurations.

You need to activate it first Developer mode on your phone. To do this, go to Settings → About phone and press seven times quickly Build number. Then, in the "For Developers" menu that appears, enable USB debuggingConnect your phone to the PC using a cable.

On the computer, in the command line, after installation ADB Platform Tools, run the command to check the connection adb devicesA debugging permission prompt will appear on your phone's screen—confirm it. Next, enter the command to list networks. The syntax may vary, but a query via SQLite often works.

adb shell sqlite3 /data/misc/wifi/wpa_supplicant.conf "select * from networks;"

In the output you will see a list of networks (ssid) and the corresponding passwords (pskIf the command returns an access error, it means that access to this file is denied on your device without root rights, and this method will not work.

What to do if ADB doesn't detect the phone?

Make sure the ADB Interface driver is installed. Try a different USB cable (not just the charging one). Check Windows Device Manager for any unknown devices. Sometimes switching the USB connection mode from "Charging" to "File Transfer (MTP)" helps.

Using Root Rights and File Managers

The deepest level of access to the system is provided by the presence of root rights (superuser rights). If your smartphone is rooted, you can directly access the system file where all the passwords ever saved are stored. This file is usually located at /data/misc/wifi/wpa_supplicant.conf or /data/misc/wifi/WifiConfigStore.xml depending on the Android version.

To work you will need a file manager with root support, for example, Root Explorer, ES File Explorer (old versions) or Solid ExplorerAfter granting the application superuser rights, navigate to the specified path. Open the file in a text editor. Inside, you'll find blocks of code where ssid — is the name of the network, and psk — the desired password in clear text.

  • 📱 Install a file manager with Root support (for example, Root Explorer).
  • 🔓 Grant the app superuser privileges when prompted.
  • 📂 Go to the directory /data/misc/wifi/.
  • 📝 Open the file wpa_supplicant.conf text editor.

This method is the most reliable for older versions of Android, but it requires preliminary device preparation. Rooting can void the warranty and poses security risks if the user is inexperienced. It's also worth noting that modern phones have an encrypted partition. data may not allow you to read this file even with root rights without unlocking the bootloader.

Third-party applications and their limitations

There are many applications in the Play Market that promise to show saved passwords (for example, WiFi Password Viewer). It's important to understand how they work: they either exploit vulnerabilities in older versions of Android, require root access, or simply display what's already visible in the system settings. On modern versions of Android (10+), such apps are generally useless without root access due to security restrictions. Sandbox.

Some apps act as QR code generators, reading data from the system API if it's open to them. Others may attempt to recover passwords using brute-force methods, which is extremely ineffective and time-consuming. Using unverified apps carries the risk of leaking your personal data, as they request extensive permissions.

If you do decide to use third-party software, read reviews carefully and check permissions. The best choice is proven open-source tools or applications from reputable antivirus and utility developers.

⚠️ Warning: Be extremely cautious with apps that require root access just to view your password. They can often use this as a pretext to gain full access to your system and steal your banking information.

☑️ Password security check

Completed: 0 / 4

Frequently Asked Questions (FAQ)

Is it possible to find out the Wi-Fi password if the phone is not connected to it?

No, this can't be done using standard Android tools. The phone only stores networks it has successfully connected to in the past. If the device has never connected to a given access point, it won't remember the password.

Are password viewer apps safe to use?

Most of these apps require root access, which inherently compromises device security. Furthermore, they can transmit your data to third parties. It's recommended to use native Android features or log in through the router's web interface.

What should I do if I forgot my router password to access the settings?

If you've changed your password and forgotten it, the only way to reset it is to reset the router to factory settings (press the Reset button on the router). This will reset the device to the factory username and password (found on the sticker), but you'll have to reset your internet settings.

Why isn't the password text displayed under the QR code on Android 12?

It depends on the UI manufacturer. On stock Android, the password may be hidden. Try taking a screenshot of the QR code and scanning it with Google Lens—this is often the only way to see the text on these versions.