Advertisement
metalx1000

Android WiFi Credential notes

Nov 29th, 2024
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.67 KB | None | 0 0
  1. # root required
  2. # Currently Android Stores WiFi Credentials here:
  3. cat /data/misc/apexdata/com.android.wifi/WifiConfigStore.xml
  4.  
  5. # Although it was in different locations in older versions of Android
  6. # one way to quickly search would be to grep for a known SSID you have stored
  7. # most likely in /data/misc and ignore Binary files
  8. # in this case I'm searching for xfinity SSID
  9. grep -r xfinity /data/misc/*|grep -v Binary
  10.  
  11. # you can easy copy this file to another devices
  12. # but note that you might need to manually changed some
  13. # stored MAC Addresses or the two devices might fight for a position
  14. # on a network,which will cause them to randomly kick each other off
  15. # the network
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement