mirror of
https://github.com/bkerler/edl.git
synced 2024-11-14 19:14:58 -05:00
Fix readme
This commit is contained in:
parent
b26ddc907b
commit
dc1dbdd615
1 changed files with 37 additions and 21 deletions
58
README.md
58
README.md
|
@ -1,14 +1,14 @@
|
|||
# Qualcomm Sahara / Firehose Attack Client / Diag Tools
|
||||
(c) B. Kerler 2018-2019
|
||||
|
||||
Why
|
||||
===
|
||||
## Why
|
||||
=======
|
||||
- Because we'd like to flexible dump smartphones
|
||||
- Because attacking firehose is kewl
|
||||
- Because memory dumping helps to find issues :)
|
||||
|
||||
Installation
|
||||
=============
|
||||
## Installation
|
||||
================
|
||||
- Get python >= 3.7 64-Bit
|
||||
|
||||
- Add "blacklist qcserial" as last line to /etc/modprobe.d/blacklist.conf
|
||||
|
@ -24,24 +24,42 @@ Windows:
|
|||
- Use Filter Installer to install libusb filter driver
|
||||
on Qualcomm 9008 port otherwise we won't detect the device
|
||||
|
||||
Run EDL (examples)
|
||||
==================
|
||||
## Run EDL (examples)
|
||||
======================
|
||||
|
||||
### Generic
|
||||
- "./edl.py -h" -> to see help with all options
|
||||
- "./edl.py printgpt --memory=ufs --lun=0" -> to print gpt on lun 0 on device with ufs
|
||||
- "./edl.py server --memory=ufs --tcpport=1340" -> Run TCP/IP server on port 1340, see tcpclient.py for an example client
|
||||
- "./edl.py xml run.xml" -> To send a xml file run.xml via firehose
|
||||
- "./edl.py reset" -> To reboot the phone
|
||||
|
||||
|
||||
### For EMMC Flash
|
||||
- "./edl.py printgpt" -> to print gpt on device with emmc
|
||||
- "./edl.py rf flash.bin" -> to dump whole flash for device with emmc
|
||||
- "./edl.py rf lun0.bin --memory=ufs --lun=0" -> to dump whole lun 0 for device with ufs
|
||||
- "./edl.py rl dumps" -> to dump all partitions to directory dumps for device with emmc
|
||||
- "./edl.py rl dumps --memory=ufs --lun=0" -> to dump all partitions from lun0 to directory dumps for device with ufs
|
||||
- "./edl.py rs 0 15 data.bin" -> to dump 15 sectors from starting sector 0 to file data.bin for device with emmc
|
||||
- "./edl.py r boot_a boot.img" -> to dump the partition "boot_a" to the filename boot.img for device with emmc
|
||||
- "./edl.py footer footer.bin" -> to dump the crypto footer for Androids with emmc flash
|
||||
- "./edl.py w boot boot.img --memory=ufs --lun=0" -> to write boot.img to the "boot" partition on lun 0 on the device with ufs flash
|
||||
- "./edl.py w boot boot.img" -> to write boot.img to the "boot" partition on lun 0 on the device with emmc flash
|
||||
- "./edl.py wl dumps" -> to write all files from "dumps" folder to according partitions to flash
|
||||
- "./edl.py wf dump.bin" -> to write the rawimage dump.bin to flash
|
||||
- "./edl.py e misc" -> to erase the partition misc on emmc flash
|
||||
- "./edl.py server --memory=ufs --tcpport=1340" -> Run TCP/IP server on port 1340, see tcpclient.py for an example client
|
||||
|
||||
|
||||
### For UFS Flash
|
||||
- "./edl.py printgpt --memory=ufs --lun=0" -> to print gpt on lun 0 on device with ufs
|
||||
- "./edl.py rf lun0.bin --memory=ufs --lun=0" -> to dump whole lun 0 for device with ufs
|
||||
- "./edl.py rl dumps --memory=ufs --lun=0" -> to dump all partitions from lun0 to directory dumps for device with ufs
|
||||
- "./edl.py rs 0 15 data.bin --memory=ufs --lun=0" -> to dump 15 sectors from starting sector 0 from lun 0 to file data.bin for device with emmc
|
||||
- "./edl.py r boot_a boot.img --memory=ufs --lun=4" -> to dump the partition "boot_a" from lun 4 to the filename boot.img for device with emmc
|
||||
- "./edl.py footer footer.bin --memory=ufs --lun=4" -> to dump the crypto footer for Androids from lun4
|
||||
- "./edl.py w boot boot.img --memory=ufs --lun=0" -> to write boot.img to the "boot" partition on lun 0 on the device with ufs flash
|
||||
- "./edl.py wl dumps --memory=ufs --lun=0" -> to write all files from "dumps" folder to according partitions to flash lun 0
|
||||
- "./edl.py wf dump.bin --memory=ufs --lun=0" -> to write the rawimage dump.bin to flash lun 0
|
||||
- "./edl.py e misc --memory=ufs --lun=0" -> to erase the partition misc on lun 0
|
||||
|
||||
### For devices with peek/poke command
|
||||
- "./edl.py peek 0x200000 0x10 mem.bin" -> To dump 0x10 bytes from offset 0x200000 to file mem.bin from memory
|
||||
- "./edl.py peekhex 0x200000 0x10" -> To dump 0x10 bytes from offset 0x200000 as hex string from memory
|
||||
- "./edl.py peekqword 0x200000" -> To display a qword (8-bytes) at offset 0x200000 from memory
|
||||
|
@ -50,18 +68,16 @@ Run EDL (examples)
|
|||
- "./edl.py secureboot" -> To display secureboot fuses (only on EL3 loaders)
|
||||
- "./edl.py pbl pbl.bin" -> To dump pbl (only on EL3 loaders)
|
||||
- "./edl.py qfp qfp.bin" -> To dump qfprom fuses (only on EL3 loaders)
|
||||
- "./edl.py xml run.xml" -> To send a xml file run.xml via firehose
|
||||
- "./edl.py reset" -> To reboot the phone
|
||||
|
||||
|
||||
Install EDL loaders
|
||||
===============
|
||||
## Install EDL loaders
|
||||
=======================
|
||||
- "mkdir examples"
|
||||
- Copy all your loaders into the examples directory
|
||||
- "./fhloaderparse.py examples" -> will autodetect and rename loader structure and copy them to the "Loaders" directory
|
||||
|
||||
Run Diag (examples)
|
||||
========
|
||||
## Run Diag port tools (examples)
|
||||
==================================
|
||||
For Oneplus 6T, enter *#801#* on dialpad, set Engineer Mode and Serial to on and try :
|
||||
- "./diag.py -vid 0x05c6 -pid 0x676c -interface 0 -info"
|
||||
|
||||
|
@ -75,13 +91,13 @@ Allows to send commands to the qc diag port
|
|||
- "./diag.py -vid 0x1234 -pid 0x5678 -interface 0 -efslistdir /" -> Display / directory listing of EFS
|
||||
|
||||
|
||||
Issues
|
||||
======
|
||||
## Issues
|
||||
==========
|
||||
- Secure loader with SDM660 on Xiaomi not yet supported
|
||||
- EFS directory write and file read has to be added
|
||||
|
||||
Tested with
|
||||
===========
|
||||
## Tested with
|
||||
===============
|
||||
- Oneplus 3T, Oneplus 6T, BQ X, BQ X5, BQ X2, Gigaset ME Pure, ZTE MF210
|
||||
|
||||
Published under MIT license
|
||||
|
|
Loading…
Reference in a new issue