How to view the password for a connected Wi-Fi network on Android: all the methods

Forgot your home Wi-Fi password, and the sticker on your router has worn off? Or do you need to connect a new device, but you haven't written down the password anywhere? Android There are several ways to retrieve a saved password for a current network, from simple to technically complex. It's important to understand: Not all methods work on modern versions of Android. due to the tightening of security policies. For example, in Android 10+ Google has removed the ability to view passwords through default settings, but workarounds remain.

In this article we will analyze 5 proven methods, including work with root rights, usage ADB and specialized applications. We'll also explain why some methods stopped working after system updates and how to bypass these restrictions. A word of warning: Not all methods are safe - Incorrect actions may result in resetting network settings or even blocking the device.

If you urgently need to connect another device and you don't know the password, try the simplest method first - viewing via router settingsIf this isn't possible (for example, you're not a network admin), move on to the other options. But remember: Extracting passwords without the network owner's permission may be illegal. (In some countries this qualifies as unauthorized access).

For your convenience, we've divided the methods by difficulty level, from "for beginners" to "for advanced users." Choose the one that best suits your skills and phone model. If none of the methods work, there's a solution at the end of the article. A universal life hack using a QR code, which works on 99% of devices.

1. View your password through Android settings (only for older versions)

Before the release Android 9 Pie (2018) The system had a built-in way to view saved Wi-Fi passwords. It now works. only on devices with custom firmware (For example, LineageOS) or some models Xiaomi, Samsung And Huawei With proprietary skins. Check your phone using these instructions:

Open Settings → Wi-Fi (or Network and Internet → Wi-Fi (in new versions). Find your network in the list and tap on its name. If the option appears Share (or Share), then you're in luck:

  • 🔹 Click Share — the system will ask PIN code, pattern or fingerprint.
  • 🔹 After authentication, a window will open with QR code and the password text line below it.
  • 🔹 Copy the password or scan the QR code with another device.

⚠️ Attention: On Android 10+ This feature is disabled in most firmware versions. If the options Share no - go to the next method.

📊 What version of Android is your phone?
Android 9 or later
Android 10-11
Android 12-13
Android 14+
Don't know

2. Using a QR code to transfer a password (always works)

This the most reliable and universal method, which doesn't require root access or technical skills. It's compatible with all Android versions, including the latest ones. The system generates a QR code with network information that can be scanned by another device. The password isn't displayed explicitly, but is transmitted automatically.

Instructions:

  1. Open Settings → Wi-Fi.
  2. Tap on the name of your network.
  3. Select Share (or Share (on English firmware).
  4. Please complete authentication (PIN/pattern/biometrics).
  5. Bring another device closer and scan the QR code with its camera (on iPhone this works through the Control Center, on Android - through the Wi-Fi quick settings).

If the QR code does not scan, try:

  • 📱 Increase screen brightness to maximum.
  • 🔄 Restart both devices.
  • 🔍 Use a third-party scanning app (eg. QR & Barcode Scanner).

⚠️ Attention: Some manufacturers (eg OnePlus) block QR code generation for guest networks. In this case, you'll have to use other methods.

3. View password via file system (root required)

On devices with root rights Wi-Fi passwords are stored in a system file /data/misc/wifi/WifiConfigStore.xml (or wpa_supplicant.conf on older versions of Android). To extract them, you will need file manager with root access (For example, Root Explorer or FX File Explorer) or command via ADB.

Step-by-step instructions for manual viewing:

  1. Install Root Explorer from Google Play (or alternative).
  2. Open the app and grant root access.
  3. Follow the path /data/misc/wifi/.
  4. Find the file WifiConfigStore.xml and open it with a text editor.
  5. Look for blocks with the tag <string name="PreSharedKey"> — after it there will be a password in encrypted or open form.

If the file is encrypted, use this ADB-method:

adb shell

su

cat /data/misc/wifi/WifiConfigStore.xml | grep -A 10 "your network's SSID"

⚠️ Attention: Modifying or deleting files in /data/misc/wifi/ may lead to loss of all saved networksDo not edit the file manually!

Make sure your phone has root rights (check via Root Checker)

Back up your Wi-Fi data (via Titanium Backup or ADB backup)

Install a file manager with root support

Disable your antivirus (it may block access to system files) -->

4. Apps to view Wi-Fi passwords (without root)

IN Google Play There are apps that promise to show passwords without root, but most of them don't work on modern versions of Android. However, some utilities use legal workarounds, such as reading data from the system cache.

Top 3 apps that might still work:

ApplicationDoes it work without root?PeculiaritiesCons
WiFi Password Viewer❌ NoShows all saved passwordsRequires root and hasn't been updated since 2019.
WiFi Key Recovery⚠️ PartiallyCan extract passwords from backupsOnly works on Android 8 and below
WiFi Password (ROOT)❌ NoExports passwords to a text fileRoot access and technical knowledge required

⚠️ Attention: Many "magic" applications in Google Play, promising to show passwords without root, are fraudulentThey either display ads or collect data. Read reviews and check permissions before installing!

If you decide to give it a try, be careful what permissions the app requests. Good utilities only request access to:

  • 📶 Wi-Fi connections
  • 📁 Storage (for data export)

If the application requires access to SMS, Contacts or Geolocations - this is a reason to be wary.

How to recognize a fraudulent app?

Scammers often use names similar to popular utilities (for example, "WiFi Password Pro Max Ultra"). Be aware of:

- Date of last update (if the application has not been updated for more than a year, it is out of date).

- Number of installations (real utilities have 100K+ downloads).

- Reviews with photo/video proof of work.

- Availability of a support website (scammers do not maintain one).

5. Extracting the password via ADB (for advanced users)

ADB (Android Debug Bridge) — is a tool for debugging Android devices via a computer. It can be used to extract Wi-Fi passwords even if you don't have root access, but it will require unlocked bootloader and included USB debugging.

Instructions for Windows:

  1. Download ADB Tools and unzip into a folder C:\adb.
  2. Turn it on on your phone Developer mode (tap 7 times Build number in the settings).
  3. Activate USB debugging in the developer menu.
  4. Connect your phone to your PC and launch it Command line on behalf of the administrator.
  5. Enter the commands in order:
    cd C:\adb
    

    adb devices

    adb shell

    su

    cat /data/misc/wifi/WifiConfigStore.xml | grep -A 5 "your network's SSID"

If the team su If it doesn't work, your device doesn't have root access. In this case, try an alternative method using a backup:

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

Then open the file wifi_backup.ab archiver (for example, 7-Zip) and find the password in it in text form.

⚠️ Attention: Using ADB may result in reset network settings, if you interrupt the backup process. Also, some manufacturers (for example, Xiaomi) block access to system files even via ADB.

6. Alternative methods (if nothing helps)

If none of the above methods worked, there are three more options:

  • 🔧 Resetting the router. Click the button Reset on the back of the router (hold for 10 seconds). After this, the network will be named by default (for example, TP-Link_1234), and the password can be found on the device sticker. Minus: All router settings will be reset, including the network name and guest access.
  • 📞 Contact your provider. If the router was provided by an Internet provider (for example, Rostelecom or Beeline), the default password may be specified in the contract or personal account. Sometimes it can be obtained by calling the hotline.
  • 🔍 View password on another device. If a laptop is connected to the same network Windows or MacOS, the password can be extracted through the system settings (instructions are easy to find on the Internet).

⚠️ Attention: Resetting your router will disable internet access on all devices on the network. Warn your family or colleagues before performing this operation!

If you are a network administrator and frequently forget passwords, consider:

  • 🔐 Use password manager (For example, 1Password or Bitwarden) to store data from the router.
  • 📋 Stick a sticker with the password on the bottom of the router (if this is a home network).
  • 🔄 Set up guest network with a separate password so as not to reveal the main one.

FAQ: Frequently asked questions about viewing Wi-Fi passwords on Android

❓ Is it possible to find out the Wi-Fi password without root access?

Yes, but only on devices with Android 9 and below via network settings or using a QR code (works on all versions). Android 10+ Without root, it is impossible to extract the password in plain text.

❓ Why isn't there a "Share" option for my network in the settings?

This is a limitation of your firmware. Manufacturers (especially Samsung And Google) This feature is often removed in new versions of Android. Try updating the system or using a QR code.

❓ Will it be visible that I viewed the password through root?

No, viewing the password through system files leaves no trace. However, if you are using someone else's device, the owner may notice your actions through root access logs (apps like Root Checker record such events).

❓ Is it possible to hack a Wi-Fi password via Android?

Technically possible, but:

  • This illegally without the permission of the network owner.
  • Modern routers with WPA3 are practically impossible to hack via mobile devices.
  • Most of the "hacked" applications in Google Play - fraud.

❓ What should I do if I reset my router and the password sticker has come off?

The default password can be found:

  • IN provider's personal account (if the router is from the operator).
  • On manufacturer's website (enter router model + "default password").
  • Through support phone number your internet provider.