Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > alt.comp.os.windows-10 > #179806

Re: Extracting WiFi Passwords - SOLVED AT LAST!

From Andrews <andrews@spam.net>
Newsgroups alt.comp.os.windows-10, comp.mobile.android
Subject Re: Extracting WiFi Passwords - SOLVED AT LAST!
Date 2024-11-09 14:02 +0000
Organization BWH Usenet Archive (https://usenet.blueworldhosting.com)
Message-ID <vgnq2c$2mp0$1@nnrp.usenet.blueworldhosting.com> (permalink)
References (16 earlier) <vgitog$1ch3$1@nnrp.usenet.blueworldhosting.com> <vgm951$3dr8g$1@dont-email.me> <vgmc8i$3e9fd$1@dont-email.me> <vgmd4c$3eclt$1@dont-email.me> <vgmpu1$1rhd$1@nnrp.usenet.blueworldhosting.com>

Cross-posted to 2 groups.

Show all headers | View raw


Andrews wrote on Sat, 9 Nov 2024 04:54:25 -0000 (UTC) :

> Single app backup (the app has to actually be installed already).
>  C:\app\editor\android\scrcpy> adb restore myAndroidBackup.ab

Bear in mind, for those who don't already know it, Android *never* deletes
the actual installer that was used to install an app, so it's there.

You just have to find it.

Also, note it's far easier to manage Android from Windows than from the
phone (for so many obvious reasons, I won't even list them for you).

So let's assume we want a backup on Windows of osmand~ *and* its data.

First you have to find the package name if you don't already know it.
 C:\> adb shell pm list packages | findStr /i "osmand" 
      package:net.osmand.plus

Then you have to find the location of the APK stored on your phone.
 C:\> adb shell pm path net.osmand.plus
      package:/data/app/~~k-jK7n2qHWcW_giNy6oVEA==/net.osmand.plus-6ws8wQWIkEi8vVgL5q3EdA==/base.apk

Then you can copy that APK manually if that's what you really want to do.
 C:\> adb pull /data/app/~~k-jK7n2qHWcW_giNy6oVEA==/net.osmand.plus-6ws8wQWIkEi8vVgL5q3EdA==/base.apk

Since *every* stored APK on Android is named, "base.apk", rename it:
 C:\> move base.apk net.osmand.plus_bck.apk

But nobody would copy an apk that way (unless they're writing scripts).
That's why they made all those free Android APK extraction tools.
 <https://play.google.com/store/apps/details?id=de.onyxbits.listmyapps>
 <https://play.google.com/store/apps/details?id=com.jenos.shareapkfile>
 <https://play.google.com/store/apps/details?id=sk.styk.martin.apkanalyzer>

Now that you have the APK backed up, it's time to use adb's data backup:
 C:\> adb backup -f net.osmand.plus_bck.ab net.osmand.plus
      WARNING: adb backup is deprecated and may be removed in a future release
      Now unlock your device and confirm the backup operation...

Now you have both the installer & the data on your Windows system:
 C:\> dir *osmand*
      11/09/2024  05:45 AM       146,644,539 net.osmand.plus_bck.apk
      11/09/2024  05:50 AM                47 net.osmand.plus_bck.ab

Note that I'm not sure what is in that data ball of string since the help
for adb backup says you need to copy over some things manually from your
sdcard. I suspect that's the internal sdcard they were referring to since
some people don't have an external sdcard.

To find where sdcard information is installed, I will *guess* it's in the
information that is spit out with a query using adb. Maybe this query?
 C:\> adb shell pm dump net.osmand.plus > net.osmand.plus_bck.txt

That file is over eight thousand lines long, so I'm not sure if it tells us
where the map data is stored & whether or not that's backed up.

Anyone know how to find the map data for osmand if it's stored on your
external sdcard? (Of course, you know where you put it - but this is for
general use where the user is backing up a device so they might not know.)

Back to alt.comp.os.windows-10 | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Thumbnails, and what creates them.  micky <NONONOmisc07@fmguy.com> - 2024-11-03 17:37 -0500
  Re: Thumbnails, and what creates them. "Alan K." <alan@invalid.com> - 2024-11-03 17:46 -0500
    Re: Thumbnails, and what creates them. micky <NONONOmisc07@fmguy.com> - 2024-11-03 19:03 -0500
      Re: Thumbnails, and what creates them. Paul <nospam@needed.invalid> - 2024-11-03 21:50 -0500
        Re: Thumbnails, and what creates them. micky <NONONOmisc07@fmguy.com> - 2024-11-03 22:17 -0500
        Re: Thumbnails, and what creates them. Andrews <andrews@spam.net> - 2024-11-04 14:43 +0000
        Re: Thumbnails, and what creates them. Andrews <andrews@spam.net> - 2024-11-04 14:47 +0000
          Re: Thumbnails, and what creates them. Java Jive <java@evij.com.invalid> - 2024-11-04 15:50 +0000
            Re: Thumbnails, and what creates them. Andrews <andrews@spam.net> - 2024-11-04 17:59 +0000
              Re: Thumbnails, and what creates them. Andrews <andrews@spam.net> - 2024-11-04 19:35 +0000
                Re: Thumbnails, and what creates them. Java Jive <java@evij.com.invalid> - 2024-11-05 11:00 +0000
                Re: Thumbnails, and what creates them. Andrews <andrews@spam.net> - 2024-11-05 19:04 +0000
                Re: Thumbnails, and what creates them. Java Jive <java@evij.com.invalid> - 2024-11-06 17:12 +0000
                Re: Thumbnails, and what creates them. Andrews <andrews@spam.net> - 2024-11-06 19:04 +0000
                Re: Thumbnails, and what creates them. Java Jive <java@evij.com.invalid> - 2024-11-06 20:50 +0000
                Re: Thumbnails, and what creates them. Andrews <andrews@spam.net> - 2024-11-06 21:02 +0000
                Re: Thumbnails, and what creates them. Java Jive <java@evij.com.invalid> - 2024-11-07 00:23 +0000
                Re: Thumbnails, and what creates them. Andrews <andrews@spam.net> - 2024-11-07 02:48 +0000
                Re: Thumbnails, and what creates them. Java Jive <java@evij.com.invalid> - 2024-11-07 17:02 +0000
                Re: Thumbnails, and what creates them. Andrews <andrews@spam.net> - 2024-11-07 17:35 +0000
                Re: Thumbnails, and what creates them. Java Jive <java@evij.com.invalid> - 2024-11-09 00:08 +0000
                Extracting WiFi Passwords - SOLVED AT LAST! Java Jive <java@evij.com.invalid> - 2024-11-09 01:01 +0000
                Re: Extracting WiFi Passwords - SOLVED AT LAST! Java Jive <java@evij.com.invalid> - 2024-11-09 01:15 +0000
                Re: Extracting WiFi Passwords - SOLVED AT LAST! Andrews <andrews@spam.net> - 2024-11-09 04:54 +0000
                Re: Extracting WiFi Passwords - SOLVED AT LAST! Andrews <andrews@spam.net> - 2024-11-09 04:57 +0000
                Re: Extracting WiFi Passwords - SOLVED AT LAST! Andrews <andrews@spam.net> - 2024-11-09 05:32 +0000
                Re: Extracting WiFi Passwords - SOLVED AT LAST! Andrews <andrews@spam.net> - 2024-11-09 14:02 +0000
                Re: Extracting WiFi Passwords - SOLVED AT LAST! Java Jive <java@evij.com.invalid> - 2024-11-09 12:10 +0000
                Re: Thumbnails, and what creates them. Java Jive <java@evij.com.invalid> - 2024-11-09 01:33 +0000
                Re: Thumbnails, and what creates them. Java Jive <java@evij.com.invalid> - 2024-11-09 01:35 +0000
            Re: Thumbnails, and what creates them. Frank Slootweg <this@ddress.is.invalid> - 2024-11-05 13:23 +0000
              Re: Thumbnails, and what creates them. Java Jive <java@evij.com.invalid> - 2024-11-05 21:36 +0000
                Re: Thumbnails, and what creates them. Java Jive <java@evij.com.invalid> - 2024-11-06 10:41 +0000
                Re: Thumbnails, and what creates them. Java Jive <java@evij.com.invalid> - 2024-11-06 10:51 +0000
                Re: Thumbnails, and what creates them. Andrews <andrews@spam.net> - 2024-11-06 14:54 +0000
                Re: Thumbnails, and what creates them. Frank Slootweg <this@ddress.is.invalid> - 2024-11-06 11:13 +0000
                Re: Thumbnails, and what creates them. "Carlos E. R." <robin_listas@es.invalid> - 2024-11-06 13:05 +0100
                Re: Thumbnails, and what creates them. Frank Slootweg <this@ddress.is.invalid> - 2024-11-06 13:26 +0000
                Re: Thumbnails, and what creates them. "Carlos E. R." <robin_listas@es.invalid> - 2024-11-06 14:36 +0100
                Re: Thumbnails, and what creates them. Frank Slootweg <this@ddress.is.invalid> - 2024-11-06 14:45 +0000
                Re: Thumbnails, and what creates them. Andrews <andrews@spam.net> - 2024-11-06 15:28 +0000
                Re: Thumbnails, and what creates them. "Carlos E. R." <robin_listas@es.invalid> - 2024-11-06 18:57 +0100
                Re: Thumbnails, and what creates them. Andrews <andrews@spam.net> - 2024-11-06 15:18 +0000
                Re: Thumbnails, and what creates them. Java Jive <java@evij.com.invalid> - 2024-11-06 13:24 +0000
                Re: Thumbnails, and what creates them. Paul <nospam@needed.invalid> - 2024-11-06 08:37 -0500
                Re: Thumbnails, and what creates them. Java Jive <java@evij.com.invalid> - 2024-11-06 16:15 +0000
                Re: Thumbnails, and what creates them. Frank Slootweg <this@ddress.is.invalid> - 2024-11-06 13:59 +0000
                Re: Thumbnails, and what creates them. "Carlos E. R." <robin_listas@es.invalid> - 2024-11-06 19:01 +0100
                Re: Thumbnails, and what creates them. Frank Slootweg <this@ddress.is.invalid> - 2024-11-06 19:15 +0000
                Re: Thumbnails, and what creates them. "Carlos E. R." <robin_listas@es.invalid> - 2024-11-07 12:45 +0100
                Re: Thumbnails, and what creates them. Frank Slootweg <this@ddress.is.invalid> - 2024-11-07 15:31 +0000
                Re: Thumbnails, and what creates them. Frank Slootweg <this@ddress.is.invalid> - 2024-11-07 16:18 +0000
                Re: Thumbnails, and what creates them. "Carlos E. R." <robin_listas@es.invalid> - 2024-11-07 23:34 +0100
                Re: Thumbnails, and what creates them. Frank Slootweg <this@ddress.is.invalid> - 2024-11-08 09:39 +0000
                Re: Thumbnails, and what creates them. "Carlos E. R." <robin_listas@es.invalid> - 2024-11-08 22:27 +0100
                Re: Thumbnails, and what creates them. Frank Slootweg <this@ddress.is.invalid> - 2024-11-09 16:04 +0000
                Re: Thumbnails, and what creates them. Java Jive <java@evij.com.invalid> - 2024-11-06 21:11 +0000
                Re: Thumbnails, and what creates them. Java Jive <java@evij.com.invalid> - 2024-11-07 02:19 +0000
                Re: Thumbnails, and what creates them. Java Jive <java@evij.com.invalid> - 2024-11-07 00:12 +0000
                Re: Thumbnails, and what creates them. Frank Slootweg <this@ddress.is.invalid> - 2024-11-07 10:07 +0000
                Re: Thumbnails, and what creates them. Java Jive <java@evij.com.invalid> - 2024-11-07 14:17 +0000
                Re: Thumbnails, and what creates them. Java Jive <java@evij.com.invalid> - 2024-11-07 19:08 +0000
                Re: Thumbnails, and what creates them. Frank Slootweg <this@ddress.is.invalid> - 2024-11-07 19:26 +0000
                Re: Thumbnails, and what creates them. Java Jive <java@evij.com.invalid> - 2024-11-07 20:38 +0000
                Re: Thumbnails, and what creates them. Andy Burns <usenet@andyburns.uk> - 2024-11-07 21:01 +0000
                Re: Thumbnails, and what creates them. Java Jive <java@evij.com.invalid> - 2024-11-08 00:20 +0000
                Re: Thumbnails, and what creates them. Andy Burns <usenet@andyburns.uk> - 2024-11-08 11:22 +0000
                Re: Thumbnails, and what creates them. Frank Slootweg <this@ddress.is.invalid> - 2024-11-08 10:47 +0000
                Re: Thumbnails, and what creates them. Andrews <andrews@spam.net> - 2024-11-09 00:45 +0000
                Re: Thumbnails, and what creates them. Frank Slootweg <this@ddress.is.invalid> - 2024-11-08 10:26 +0000
      Re: Thumbnails, and what creates them. Frank Slootweg <this@ddress.is.invalid> - 2024-11-04 15:41 +0000
        Re: Thumbnails, and what creates them. micky <NONONOmisc07@fmguy.com> - 2024-11-06 11:03 -0500
  Re: Thumbnails, and what creates them. Paul <nospam@needed.invalid> - 2024-11-03 21:16 -0500
    Re: Thumbnails, and what creates them. micky <NONONOmisc07@fmguy.com> - 2024-11-03 23:01 -0500
      Re: Thumbnails, and what creates them. Paul <nospam@needed.invalid> - 2024-11-04 03:46 -0500
        Re: Thumbnails, and what creates them. "Carlos E. R." <robin_listas@es.invalid> - 2024-11-05 12:23 +0100

csiph-web