How to find out your Wi-Fi password on Android: all the ways to do it without a router

Forgot your home network password? Wi-Fi, but there's no sticker with the data on the router? Or do you need to connect a new device, but are too lazy to look for a piece of paper with the code? Android smartphone You can easily retrieve a saved password—even if you don't remember it. In this article, we'll look at all working methods, from standard system functions to advanced tools for experienced users.

Important: Password viewing capabilities vary by version. Android and the device manufacturer. On some smartphones (e.g., Xiaomi or Samsung) the function is available out of the box, but on others it will be required root access or additional applications. We'll consider options for all cases—choose the one that suits you best.

Before you begin, make sure your smartphone is already connected to the desired network Wi-FiIf the connection is broken, most methods will not work. Also remember: extracting passwords from other people's networks without permission violates data privacy laws and may result in legal liability.

📊 What smartphone do you have?
Samsung
Xiaomi/Redmi
Huawei/Honor
Google Pixel
Another brand

1. Standard method: via Android settings (without root)

Starting from Android 10Google has added a built-in password viewer to its system. Wi-FiHowever, its implementation depends on the manufacturer: on the "clean" Android (For example, Google Pixel) it works differently than on shells MIUI or One UI.

If you have a smartphone Samsung, Xiaomi, Realme or Oppo, try this method:

  1. Open Settings → Wi-Fi.
  2. Click on the name of the current network (or tap the gear next to it).
  3. Select an item Share (or Share (on English firmware).
  4. The system will ask PIN code, pattern or fingerprint - enter it.
  5. A text password will appear under the QR code - copy it or take a photo of it.

On Google Pixel and other devices with clean Android the path is a little different:

Settings → Network & Internet → Wi-Fi → [network name] → Share
⚠️ Attention: On some firmware (for example, ColorOS from Oppo) function Share may be missing. In this case, proceed to the next methods.

The device is connected to the desired Wi-Fi network

Android version 10 or later

There are no corporate restrictions (MDM) on the smartphone

The "Share" feature is available in the network settings-->

2. Viewing the password via the configuration file (root required)

If the standard method did not work, and the device has root access, you can extract the password directly from the system file wpa_supplicant.confThis method is universal for all versions. Android, but requires caution - incorrect actions can disrupt the network.

Instructions:

  1. Install any file manager with root support (For example, Root Explorer or Solid Explorer).
  2. Follow the path:
    /data/misc/wifi/WifiConfigStore/

    Or (on older versions of Android):

    /data/misc/wifi/
  3. Find the file wpa_supplicant.conf and open it with a text editor.
  4. Inside the file there will be blocks of the following type:
    network={
    

    ssid="Network_Name"

    psk="wifi_password"

    key_mgmt=WPA-PSK

    }

    Copy the parameter value psk - this is your password.

If the file is not in the specified folder, try an alternative path:

/data/vendor/wifi/WifiConfigStore/

On some firmware (for example, MIUI 12+) the configuration is stored in encrypted form - in this case, only specialized software will help.

⚠️ Warning: Editing system files without root access or using unverified applications may result in data loss or device blockingWe recommend creating a backup copy before modifying files.
What to do if the wpa_supplicant.conf file is encrypted?

On some firmware versions (for example, Xiaomi with MIUI 13+), passwords are stored in binary format. In this case, a utility can help WiFi Password Viewer (requires root) or manual extraction via ADB. For details, see the section on specialized apps.

3. Using ADB (without root, but with a computer)

If your smartphone does not have root access, but you can connect to computer with installed tools Android Debug Bridge (ADB), you can extract the password via the command line. This method works on most devices with Android 9 and newer.

Step-by-step instructions:

  1. Turn it on on your smartphone Developer mode:
    Settings → About phone → Build number (tap 7 times)
  2. Activate USB debugging in the developer menu.
  3. Connect your phone to your computer and trust the device.
  4. Open Command Prompt (Windows) or Terminal (macOS/Linux) and enter:
    adb shell
    

    su

    cat /data/misc/wifi/WifiConfigStore/wpa_supplicant.conf

    If the folder is different, specify the path (see the section about root).

  5. Find the block with in the output ssid="Your_network" and copy psk.

If the team su doesn't work (no root), try the alternative method via ADB backup:

adb backup -f wifi.ab -noapk com.android.providers.settings

Then unzip the archive wifi.ab using a tool abe (Android Backup Extractor) and find the password in the file settings.db.

4. Specialized applications (with and without root)

IN Google Play There are dozens of password viewing apps. Wi-Fi, but most of them require root access or only work on older versions AndroidWe've selected proven utilities with real reviews:

  • 🔓 WiFi Password Viewer — displays all saved passwords, requires root access. Supports export to a file.
  • 📱 WiFi Password Recovery - works on some devices without root (for example, Samsung With One UI).
  • 🔍 WiFi Key Recovery — analyzes system files and extracts passwords. Requires root access.
  • 📋 Network Info II — displays technical information about networks, including passwords (on some firmware versions).

Warning: Many applications in Play Market They promise to show passwords without root, but in reality they either don't work or contain adware. Check before installing. rating, number of downloads And reviews over the last 6 months.

Application Root required? Supported brands Rating (as of 2026)
WiFi Password Viewer Yes All 4.6
WiFi Password Recovery No (partially) Samsung, Xiaomi 3.9
WiFi Key Recovery Yes All 4.3
Network Info II No All (limited) 4.5
⚠️ Warning: Unrooted apps often exploit firmware vulnerabilities that manufacturers patch in updates. If your smartphone starts to slow down or display ads after installing such software, remove it and check the system for viruses.

5. Alternative methods: QR code and router

If none of the above methods worked, try doing it without a smartphone:

  • 📱 QR code from the network: On some routers (for example, Keenetic or TP-Link) The password is displayed as a QR code on the sticker. Scan it with any reader (for example, Google Lens).
  • 🌐 Router web interface: Connect to the router via cable, open in the browser 192.168.1.1 or 192.168.0.1, log in as administrator (usually login/password - admin/admin) and find the section Wireless → Security.
  • 📄 Backup settings: If you have a backup of your router (file with the extension .cfg or .bin), you can open it with a text editor and find the line with WirelessKey.

For routers with proprietary software (eg. MikroTik or Ubiquiti) you may need a specialized utility like WinBox or UniFi ControllerIn this case, it is better to contact manufacturer's instructions.

6. Common problems and solutions

When attempting to extract a password, you may encounter errors. Let's look at typical situations and how to resolve them:

  • 🚫 "File not found": On new versions Android The configuration path may have changed. Try searching for the file via adb shell find /data -name "wpa_supplicant.conf".
  • 🔒 "Access Denied": Make sure you have root access or you entered the command correctly su V ADBSome firmware versions require additional permission. SELinux.
  • 📵 "There is no 'Share' option": Update firmware to the latest version or use alternative methods (ADB, applications).
  • 🔄 "The password is displayed as dots.": In some shells (eg. EMUI from Huawei) The password is hidden. Try copying it to the clipboard and pasting it into Notepad.

If you use corporate network (for example, in an office or university), the password can be stored in encrypted form or managed through radius serverIn this case, you won't be able to remove it from your smartphone—contact your network administrator.

On devices with Android for Work or Knox (for example, office phones Samsung) Access to passwords may be blocked by security policies. Attempting to bypass these restrictions will result in automatic reset.

7. Security: How to protect your Wi-Fi from hacking

Once you know your network password, don't forget to check its security. Here 5 Key Recommendations, so that your Wi-Fi not hacked:

  • 🔐 Change the default password router (not admin/admin!). Use a combination of 12+ characters with letters, numbers, and special characters.
  • 🛡️ Enable WPA3 encryption (or at least WPA2-PSK). Outdated WEP hacked in minutes.
  • 📵 Disable WPS - This protocol is vulnerable to brute force attacks.
  • 👤 Create a guest network for friends - this way they won't know the main password.
  • 🔄 Update your router firmware at least once every six months.

To check how strong your password is, use services like How Secure Is My Password (Do not enter your real password - only similar combinations!) If the network is used to work with confidential data (for example, online banking), consider additional measures:

  • Set up MAC address filtering (although this is not a panacea).
  • Turn on VPN on a router (For example, OpenVPN or WireGuard).
  • Turn it off remote administration in the router settings.

FAQ: Answers to frequently asked questions

Is it possible to find out the Wi-Fi password without rooting or using a computer?

Yes, but only if your smartphone supports the function Share in the network settings (see Section 1). On devices without this option, you will need either root or a computer with ADB, or a specialized application (which may not work).

Why isn't my network listed in the wpa_supplicant.conf file?

Possible reasons:

  1. The network is saved in another file (eg. WifiConfigStore.xml on some Xiaomi).
  2. The password is stored in encrypted form (relevant for Android 12+).
  3. You are connected via Wi-Fi Direct or Hotspot, and not through the regular network.

Try searching for the file via adb shell find /data -name "wifi".

Is it possible to hack someone else's Wi-Fi using Android?

No, it's illegal.In Russia, hacking into other people's networks is punishable under Article 272 of the Russian Criminal Code ("Unauthorized access to computer information") and is punishable by a fine of up to 1 million rubles or imprisonment for up to four years. Even if you "just wanted to check," the consequences will be serious.

If you really need to access someone else's network (for example, in a cafe or hotel), ask the administrator for the password.

How to reset your Wi-Fi password if you forgot it?

If you can't retrieve the password from your smartphone, reset it through the router:

  1. Find the button on your router Reset (usually in a hole on the back panel).
  2. Press and hold it for 10-15 seconds until the indicators flash.
  3. Connect to the network with the default name (indicated on the router sticker) and password (usually admin or empty).
  4. Set a new password in the web interface (192.168.1.1).

⚠️ After resetting, all router settings will return to factory defaults, including the network name and password.

Do Wi-Fi hacking apps work?

Most of these applications are in Google Play — fraud. They either:

  • They're showing fake passwords (For example, 12345678).
  • They demand payment for the "full version" which does not work.
  • They are installing viruses or spyware.

The only legal ways are extraction own saved passwords (as described in the article) or reset the router.