(01-04-2024, 05:52 AM)notconnectedxxx Wrote: Hey,
what is the easiest/fastest way to copy andoind phone contents once phone in unlocked?
Thanks
[*]Imaging an Android device requires three things:
- A data connection between the device and the computer
- An exploit
- An imaging command
So adb, dd netcat and root (SuperSu) is all you need to do that task.
[font='courier new', 'courier', monospace]adb devices[/font]
adb -d install supersu.apk
[font='courier new', 'courier', monospace]adb -d shell[/font]
[font='courier new', 'courier', monospace]su[/font]
[font='courier new', 'courier', monospace]ls /data[/font]
[font='courier new', 'courier', monospace]adb forward tcp:8888 tcp:8888[/font]
[font='courier new', 'courier', monospace]dd if=/dev/block/mmcblk0 | busybox nc -l -p 8888[/font]
[font='courier new', 'courier', monospace]nc 127.0.0.1 8888 > device_image.dd[/font]
[font='courier new', 'courier', monospace]
[/font]