How to dump RAW Data from Android to PC?
I'm looking for a way to dump raw data from an entire phone or at least the sda
block to a PC, using a method other than adb pull
.
When I run adb pull /dev/block/sda sdaDump.img
, it creates a dump file. To find what I need, I have to search through this raw data using a Hex Editor
. If the dump comes from a fully functioning phone, I can usually find what I’m looking for because all the data is still intact.
However, I accidentally wiped the metadata
partition on my phone, so the decryption keys/files are gone. Now, because of that, some folders appear empty when checked with TWRP's File Manager, even though the actual files are still there.
If I create a dump now, the raw data in the file won't be the same as when the metadata
was present, and those folders weren't showing as empty.
Running adb pull /dev/block/sda sdaDump.img
now results in a dump where the Hex Editor
shows zeroes (no data) where these files should be.
Is there any alternative method to create a ra
Finally resolved: Recovering data after wiping metadata is actually possible, but I need you help with some info
I need to ask a small favor from the good people of Lemdro.id Community.
In short, I accidentally wiped the metadata
partition on my Poco F3
and now I can't boot into the OS and access my data. I have a lot of pictures, videos and other stuff that I would hate to lose, because of a mistake. But all that is still on the phone, I just can't boot the phone to access it.
Thankfully, there is a way to fix this by creating a full backup of the phone with adb
, then using a HEX Editor to manually look through that gigantic file and try to find the files that were in that metadata partition.
A huge thanks to bluet33th, a user from XDA Forums, without whom I would be helpless and couldn't do any of this. It might be a bit complicated and manual process, but it is possible. He explained everything in great detail here, so check it out, especially if you are facing the same problem, this will
Finally resolved: Recovering data after wiping metadata is actually possible, but I need you help with some info
I need to ask a small favor from the good people of Lemdro.id Community.
In short, I accidentally wiped the metadata
partition on my Poco F3
and now I can't boot into the OS and access my data. I have a lot of pictures, videos and other stuff that I would hate to lose, because of a mistake. But all that is still on the phone, I just can't boot the phone to access it.
Thankfully, there is a way to fix this by creating a full backup of the phone with adb
, then using a HEX Editor to manually look through that gigantic file and try to find the files that were in that metadata partition.
A huge thanks to bluet33th, a user from XDA Forums, without whom I would be helpless and couldn't do any of this. It might be a bit complicated and manual process, but it is possible. He explained everything in great detail here, so check it out, especially if you are facing the same problem, this will