2021-12-25 17:01:25 -05:00
|
|
|
# MTKClient
|
2021-12-26 13:45:08 -05:00
|
|
|
![Logo](mtkclient/gui/images/logo_256.png)
|
2021-12-25 17:01:25 -05:00
|
|
|
|
2021-09-28 11:56:15 -04:00
|
|
|
Just some mtk tool for exploitation, reading/writing flash and doing crazy stuff.
|
2021-08-04 16:40:41 -04:00
|
|
|
For windows, you need to install the stock mtk port and the usbdk driver (see instructions below).
|
2021-09-28 11:56:15 -04:00
|
|
|
For linux, a patched kernel is only needed when using old kamakiri (see Setup folder) (except for read/write flash).
|
2021-08-01 16:25:44 -04:00
|
|
|
|
|
|
|
Once the mtk script is running, boot into brom mode by powering off device, press and hold either
|
|
|
|
vol up + power or vol down + power and connect the phone. Once detected by the tool,
|
|
|
|
release the buttons.
|
|
|
|
|
2021-08-02 10:17:59 -04:00
|
|
|
## Credits
|
2021-08-02 10:19:02 -04:00
|
|
|
- kamakiri [xyzz]
|
2021-08-03 04:35:21 -04:00
|
|
|
- linecode exploit [chimera]
|
2021-08-02 10:19:02 -04:00
|
|
|
- Chaosmaster
|
2021-12-25 17:01:25 -05:00
|
|
|
- Geert-Jan Kreileman (GUI, design & fixes)
|
2021-08-02 10:19:02 -04:00
|
|
|
- All contributors
|
2021-08-02 10:00:57 -04:00
|
|
|
|
2021-08-01 16:25:44 -04:00
|
|
|
## Installation
|
|
|
|
|
2021-08-05 07:42:20 -04:00
|
|
|
### Use Re LiveDVD (everything ready to go, based on Ubuntu):
|
2022-06-03 08:26:07 -04:00
|
|
|
User: user, Password:user (based on Ubuntu 22.04 LTS)
|
2022-06-03 08:25:43 -04:00
|
|
|
|
2022-06-28 06:01:57 -04:00
|
|
|
[Live DVD V4](https://www.androidfilehost.com/?fid=15664248565197184488)
|
2022-06-03 08:25:43 -04:00
|
|
|
|
|
|
|
[Live DVD V4 Mirror](https://drive.google.com/file/d/10OEw1d-Ul_96MuT3WxQ3iAHoPC4NhM_X/view?usp=sharing)
|
2022-06-03 08:26:07 -04:00
|
|
|
|
2021-08-01 16:25:44 -04:00
|
|
|
|
|
|
|
|
|
|
|
## Install
|
|
|
|
|
2021-12-25 17:01:25 -05:00
|
|
|
### Linux / Mac OS - (Ubuntu recommended, no patched kernel needed except for kamakiri)
|
2021-08-01 16:25:44 -04:00
|
|
|
|
|
|
|
#### Install python >=3.8, git and other deps
|
|
|
|
|
2023-01-08 20:54:52 -05:00
|
|
|
#### For Debian/Ubuntu
|
2021-08-01 16:25:44 -04:00
|
|
|
```
|
2021-11-22 09:09:30 -05:00
|
|
|
sudo apt install python3 git libusb-1.0-0 python3-pip
|
2021-08-01 16:25:44 -04:00
|
|
|
```
|
2023-01-08 20:54:52 -05:00
|
|
|
#### For ArchLinux
|
|
|
|
```
|
|
|
|
(sudo) pacman -S python python-pip git libusb
|
|
|
|
```
|
|
|
|
or
|
|
|
|
```
|
|
|
|
yay -S python python-pip git libusb
|
|
|
|
```
|
2021-08-01 16:25:44 -04:00
|
|
|
|
|
|
|
#### Grab files
|
|
|
|
```
|
|
|
|
git clone https://github.com/bkerler/mtkclient
|
|
|
|
cd mtkclient
|
|
|
|
pip3 install -r requirements.txt
|
|
|
|
python3 setup.py build
|
|
|
|
python3 setup.py install
|
|
|
|
```
|
|
|
|
|
|
|
|
#### Install rules
|
|
|
|
```
|
2021-08-04 17:05:49 -04:00
|
|
|
sudo usermod -a -G plugdev $USER
|
|
|
|
sudo usermod -a -G dialout $USER
|
2021-08-01 16:25:44 -04:00
|
|
|
sudo cp Setup/Linux/*.rules /etc/udev/rules.d
|
|
|
|
sudo udevadm control -R
|
|
|
|
```
|
2022-02-07 14:46:15 -05:00
|
|
|
Make sure to reboot after adding the user to dialout/plugdev. If the device
|
|
|
|
has a vendor interface 0xFF (like LG), make sure to add "blacklist qcaux" to
|
|
|
|
the "/etc/modprobe.d/blacklist.conf".
|
2021-08-01 16:25:44 -04:00
|
|
|
|
2021-08-04 17:03:25 -04:00
|
|
|
---------------------------------------------------------------------------------------------------------------
|
2021-08-04 16:59:15 -04:00
|
|
|
|
|
|
|
### Windows
|
|
|
|
|
|
|
|
#### Install python + git
|
|
|
|
- Install python 3.9 and git
|
|
|
|
- If you install python from microsoft store, "python setup.py install" will fail, but that step isn't required.
|
|
|
|
- WIN+R ```cmd```
|
|
|
|
|
|
|
|
#### Grab files and install
|
|
|
|
```
|
|
|
|
git clone https://github.com/bkerler/mtkclient
|
|
|
|
cd mtkclient
|
|
|
|
pip3 install -r requirements.txt
|
|
|
|
```
|
|
|
|
|
|
|
|
#### Get latest UsbDk 64-Bit
|
|
|
|
- Install normal MTK Serial Port driver (or use default Windows COM Port one, make sure no exclamation is seen)
|
|
|
|
- Get usbdk installer (.msi) from [here](https://github.com/daynix/UsbDk/releases/) and install it
|
|
|
|
- Test on device connect using "UsbDkController -n" if you see a device with 0x0E8D 0x0003
|
|
|
|
- Works fine under Windows 10 and 11 :D
|
|
|
|
|
2021-08-04 17:03:25 -04:00
|
|
|
---------------------------------------------------------------------------------------------------------------
|
|
|
|
### Use kamakiri (optional, only needed for mt6260 or older)
|
2021-08-01 16:25:44 -04:00
|
|
|
|
|
|
|
- For linux (kamakiri attack), you need to recompile your linux kernel using this kernel patch :
|
|
|
|
```
|
|
|
|
sudo apt-get install build-essential libncurses-dev bison flex libssl-dev libelf-dev libdw-dev
|
|
|
|
git clone https://git.kernel.org/pub/scm/devel/pahole/pahole.git
|
|
|
|
cd pahole && mkdir build && cd build && cmake .. && make && sudo make install
|
|
|
|
sudo mv /usr/local/libdwarves* /usr/local/lib/ && sudo ldconfig
|
|
|
|
```
|
|
|
|
|
|
|
|
```
|
|
|
|
wget https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-`uname -r`.tar.xz
|
|
|
|
tar xvf linux-`uname -r`.tar.xz
|
|
|
|
cd linux-`uname -r`
|
|
|
|
patch -p1 < ../Setup/kernelpatches/disable-usb-checks-5.10.patch
|
|
|
|
cp -v /boot/config-$(uname -r) .config
|
|
|
|
make menuconfig
|
|
|
|
make
|
|
|
|
sudo make modules_install
|
|
|
|
sudo make install
|
|
|
|
```
|
|
|
|
|
|
|
|
- These aren't needed for current ubuntu (as make install will do, just for reference):
|
|
|
|
|
|
|
|
```
|
|
|
|
sudo update-initramfs -c -k `uname -r`
|
|
|
|
sudo update-grub
|
|
|
|
```
|
|
|
|
|
|
|
|
See Setup/kernels for ready-to-use kernel setups
|
|
|
|
|
|
|
|
|
|
|
|
- Reboot
|
|
|
|
|
|
|
|
```
|
|
|
|
sudo reboot
|
|
|
|
```
|
|
|
|
|
|
|
|
|
2021-08-04 17:03:25 -04:00
|
|
|
---------------------------------------------------------------------------------------------------------------
|
2021-08-01 16:25:44 -04:00
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
2021-12-25 17:01:25 -05:00
|
|
|
### Using MTKTools via the graphical user interface:
|
2021-12-28 09:08:57 -05:00
|
|
|
For the 'basics' you can use the GUI interface. This supports dumping partitions or the full flash for now. Run the following command:
|
2021-12-25 17:01:25 -05:00
|
|
|
```
|
2021-12-26 13:45:56 -05:00
|
|
|
python mtk_gui
|
2021-12-25 17:01:25 -05:00
|
|
|
```
|
|
|
|
|
2022-07-04 03:12:29 -04:00
|
|
|
### Run multiple commands
|
|
|
|
```bash
|
|
|
|
python mtk script run.example
|
|
|
|
```
|
2023-07-16 08:27:09 -04:00
|
|
|
See the file "[run.example](https://github.com/bkerler/mtkclient/blob/main/run.example)" on how to structure the script file
|
2022-07-04 03:12:29 -04:00
|
|
|
|
2021-09-28 11:56:15 -04:00
|
|
|
### Root the phone (Tested with android 9 - 12)
|
|
|
|
|
|
|
|
1. Dump boot and vbmeta
|
|
|
|
```
|
|
|
|
python mtk r boot,vbmeta boot.img,vbmeta.img
|
|
|
|
```
|
|
|
|
|
|
|
|
2. Reboot the phone
|
|
|
|
```
|
|
|
|
python mtk reset
|
|
|
|
```
|
|
|
|
|
|
|
|
3. Download patched magisk for mtk:
|
2023-07-12 05:33:06 -04:00
|
|
|
Download latest Magisk [here]([https://raw.githubusercontent.com/vvb2060/magisk_files/44ca9ed38c29e22fa276698f6c03bc1168df2c10/app-release.ap](https://github.com/topjohnwu/Magisk/releases)k)
|
2021-09-28 11:56:15 -04:00
|
|
|
|
|
|
|
4. Install on target phone
|
|
|
|
- you need to enable usb-debugging via Settings/About phone/Version, Tap 7x on build number
|
|
|
|
- Go to Settings/Additional settings/Developer options, enable "OEM unlock" and "USB Debugging"
|
|
|
|
- Install magisk apk
|
|
|
|
```
|
|
|
|
adb install app-release.apk
|
|
|
|
```
|
|
|
|
- accept auth rsa request on mobile screen of course to allow adb connection
|
|
|
|
|
|
|
|
5. Upload boot to /sdcard/Download
|
|
|
|
```
|
|
|
|
adb push boot.img /sdcard/Download
|
|
|
|
```
|
|
|
|
|
|
|
|
6. Start magisk, tap on Install, select boot.img from /sdcard/Download, then:
|
|
|
|
```
|
|
|
|
adb pull /sdcard/Download/[displayed magisk patched boot filename here]
|
|
|
|
mv [displayed magisk patched boot filename here] boot.patched
|
|
|
|
```
|
|
|
|
|
|
|
|
7. Do the steps needed in section "Unlock bootloader below"
|
|
|
|
|
|
|
|
8. Flash magisk-patched boot and empty vbmeta
|
|
|
|
```
|
|
|
|
python mtk w boot,vbmeta boot.patched,vbmeta.img.empty
|
|
|
|
```
|
|
|
|
|
|
|
|
9. Reboot the phone
|
|
|
|
```
|
|
|
|
python mtk reset
|
|
|
|
```
|
|
|
|
|
|
|
|
10. Disconnect usb cable and enjoy your rooted phone :)
|
|
|
|
|
|
|
|
|
2021-11-27 13:01:13 -05:00
|
|
|
### Boot to meta mode via payload
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
```
|
|
|
|
python mtk payload --metamode FASTBOOT
|
|
|
|
```
|
|
|
|
|
2022-09-13 17:57:30 -04:00
|
|
|
### Read efuses
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
```
|
|
|
|
python mtk da efuse
|
|
|
|
```
|
2021-11-27 13:01:13 -05:00
|
|
|
|
2021-09-28 11:56:15 -04:00
|
|
|
### Unlock bootloader
|
|
|
|
|
2021-10-01 05:48:10 -04:00
|
|
|
1. Erase metadata and userdata (and md_udc if existing):
|
2021-09-28 11:56:15 -04:00
|
|
|
```
|
2021-10-02 02:15:35 -04:00
|
|
|
python mtk e metadata,userdata,md_udc
|
2021-09-28 11:56:15 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
2. Unlock bootloader:
|
|
|
|
```
|
2021-11-30 03:52:46 -05:00
|
|
|
python mtk da seccfg unlock
|
2021-09-28 11:56:15 -04:00
|
|
|
```
|
|
|
|
for relocking use:
|
|
|
|
```
|
2021-11-30 03:52:46 -05:00
|
|
|
python mtk da seccfg lock
|
2021-09-28 11:56:15 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
3. Reboot the phone:
|
|
|
|
```
|
|
|
|
python mtk reset
|
|
|
|
```
|
|
|
|
|
|
|
|
and disconnect usb cable to let the phone reboot.
|
|
|
|
|
2021-09-28 13:38:01 -04:00
|
|
|
If you are getting a dm-verity error on Android 11, just press the power button,
|
|
|
|
then the device should boot and show a yellow warning about unlocked bootloader and
|
|
|
|
then the device should boot within 5 seconds.
|
|
|
|
|
2021-09-28 11:56:15 -04:00
|
|
|
|
2021-08-05 02:36:23 -04:00
|
|
|
### Read flash
|
|
|
|
|
|
|
|
Dump boot partition to filename boot.bin via preloader
|
|
|
|
|
|
|
|
```
|
|
|
|
python mtk r boot boot.bin
|
|
|
|
```
|
|
|
|
|
|
|
|
Dump boot partition to filename boot.bin via bootrom
|
|
|
|
|
|
|
|
```
|
|
|
|
python mtk r boot boot.bin [--preloader=Loader/Preloader/your_device_preloader.bin]
|
|
|
|
```
|
|
|
|
|
|
|
|
|
2021-10-28 13:49:28 -04:00
|
|
|
Dump preloader partition to filename preloader.bin via bootrom
|
|
|
|
|
|
|
|
```
|
|
|
|
python mtk r preloader preloader.bin --parttype=boot1 [--preloader=Loader/Preloader/your_device_preloader.bin]
|
|
|
|
```
|
|
|
|
|
2021-08-05 02:36:23 -04:00
|
|
|
Read full flash to filename flash.bin (use --preloader for brom)
|
|
|
|
|
|
|
|
```
|
|
|
|
python mtk rf flash.bin
|
|
|
|
```
|
|
|
|
|
2023-04-21 12:52:25 -04:00
|
|
|
Read full flash to filename flash.bin (use --preloader for brom) for IoT devices (MT6261/MT2301):
|
|
|
|
|
|
|
|
```
|
|
|
|
python mtk rf flash.bin --iot
|
|
|
|
```
|
|
|
|
|
2021-10-28 13:49:28 -04:00
|
|
|
Read flash offset 0x128000 with length 0x200000 to filename flash.bin (use --preloader for brom)
|
|
|
|
|
|
|
|
```
|
|
|
|
python mtk ro 0x128000 0x200000 flash.bin
|
|
|
|
```
|
|
|
|
|
2021-08-05 02:36:23 -04:00
|
|
|
Dump all partitions to directory "out". (use --preloader for brom)
|
|
|
|
|
|
|
|
```
|
|
|
|
python mtk rl out
|
|
|
|
```
|
|
|
|
|
|
|
|
Show gpt (use --preloader for brom)
|
|
|
|
|
|
|
|
```
|
|
|
|
python mtk printgpt
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
### Write flash
|
|
|
|
(use --preloader for brom)
|
|
|
|
|
|
|
|
Write filename boot.bin to boot partition
|
|
|
|
|
|
|
|
```
|
|
|
|
python mtk w boot boot.bin
|
|
|
|
```
|
|
|
|
|
|
|
|
Write filename flash.bin as full flash (currently only works in da mode)
|
|
|
|
|
|
|
|
```
|
|
|
|
python mtk wf flash.bin
|
|
|
|
```
|
|
|
|
|
|
|
|
Write all files in directory "out" to the flash partitions
|
|
|
|
|
|
|
|
```
|
|
|
|
python mtk wl out
|
|
|
|
```
|
|
|
|
|
2021-10-28 13:49:28 -04:00
|
|
|
write file flash.bin to flash offset 0x128000 with length 0x200000 (use --preloader for brom)
|
|
|
|
|
|
|
|
```
|
|
|
|
python mtk wo 0x128000 0x200000 flash.bin
|
|
|
|
```
|
|
|
|
|
2021-08-05 02:36:23 -04:00
|
|
|
### Erase flash
|
|
|
|
|
2021-09-28 11:56:15 -04:00
|
|
|
Erase boot partition
|
2021-08-05 02:36:23 -04:00
|
|
|
```
|
|
|
|
python mtk e boot
|
|
|
|
```
|
|
|
|
|
2021-09-28 11:56:15 -04:00
|
|
|
Erase boot sectors
|
2021-09-03 04:49:12 -04:00
|
|
|
```
|
2021-09-28 11:56:15 -04:00
|
|
|
python mtk es boot [sector count]
|
|
|
|
```
|
|
|
|
|
2021-11-30 03:52:46 -05:00
|
|
|
### DA commands:
|
2021-09-28 11:56:15 -04:00
|
|
|
|
|
|
|
Peek memory
|
|
|
|
```
|
2021-11-30 03:52:46 -05:00
|
|
|
python mtk da peek [addr in hex] [length in hex] [optional: -filename filename.bin for reading to file]
|
2021-09-28 11:56:15 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
Poke memory
|
|
|
|
```
|
2021-11-30 03:52:46 -05:00
|
|
|
python mtk da peek [addr in hex] [data as hexstring or -filename for reading from file]
|
2021-09-28 11:56:15 -04:00
|
|
|
```
|
|
|
|
|
2021-11-30 03:52:46 -05:00
|
|
|
Read rpmb (Only xflash for now)
|
2021-09-28 11:56:15 -04:00
|
|
|
```
|
2021-11-30 03:52:46 -05:00
|
|
|
python mtk da rpmb r [will read to rpmb.bin]
|
2021-09-28 11:56:15 -04:00
|
|
|
```
|
|
|
|
|
2021-11-30 03:52:46 -05:00
|
|
|
Write rpmb [Currently broken, xflash only]
|
2021-09-28 11:56:15 -04:00
|
|
|
```
|
2021-11-30 03:52:46 -05:00
|
|
|
python mtk da rpmb w filename
|
2021-09-03 04:49:12 -04:00
|
|
|
```
|
|
|
|
|
2021-09-28 11:56:15 -04:00
|
|
|
Generate and display rpmb1-3 key
|
|
|
|
```
|
2021-11-30 03:52:46 -05:00
|
|
|
python mtk da generatekeys
|
2021-09-28 11:56:15 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
Unlock / Lock bootloader
|
|
|
|
```
|
2021-11-30 03:52:46 -05:00
|
|
|
python mtk da seccfg [lock or unlock]
|
2021-09-28 11:56:15 -04:00
|
|
|
```
|
2021-09-03 04:49:12 -04:00
|
|
|
|
2021-08-05 02:36:23 -04:00
|
|
|
---------------------------------------------------------------------------------------------------------------
|
|
|
|
|
2021-08-01 16:25:44 -04:00
|
|
|
### Bypass SLA, DAA and SBC (using generic_patcher_payload)
|
|
|
|
``
|
2021-08-05 02:36:23 -04:00
|
|
|
python mtk payload
|
2021-08-01 16:25:44 -04:00
|
|
|
``
|
|
|
|
If you want to use SP Flash tool afterwards, make sure you select "UART" in the settings, not "USB".
|
|
|
|
|
2021-08-05 02:36:23 -04:00
|
|
|
### Dump preloader
|
|
|
|
- Device has to be in bootrom mode and preloader has to be intact on the device
|
|
|
|
```
|
|
|
|
python mtk dumppreloader [--ptype=["amonet","kamakiri","kamakiri2","hashimoto"]] [--filename=preloader.bin]
|
|
|
|
```
|
|
|
|
|
2021-08-01 16:25:44 -04:00
|
|
|
### Dump brom
|
|
|
|
- Device has to be in bootrom mode, or da mode has to be crashed to enter damode
|
|
|
|
- if no option is given, either kamakiri or da will be used (da for insecure targets)
|
|
|
|
- if "kamakiri" is used as an option, kamakiri is enforced
|
|
|
|
- Valid options are : "kamakiri" (via usb_ctrl_handler attack), "amonet" (via gcpu)
|
|
|
|
and "hashimoto" (via cqdma)
|
|
|
|
|
|
|
|
```
|
2021-08-05 02:36:23 -04:00
|
|
|
python mtk dumpbrom --ptype=["amonet","kamakiri","hashimoto"] [--filename=brom.bin]
|
2021-08-01 16:25:44 -04:00
|
|
|
```
|
|
|
|
|
2021-08-04 16:59:15 -04:00
|
|
|
For to dump unknown bootroms, use brute option :
|
|
|
|
```
|
2021-08-05 02:36:23 -04:00
|
|
|
python mtk brute
|
2021-08-04 16:59:15 -04:00
|
|
|
```
|
|
|
|
If it's successful, please add an issue over here and append the bootrom in order to add full support.
|
|
|
|
|
2021-08-05 02:36:23 -04:00
|
|
|
---------------------------------------------------------------------------------------------------------------
|
2021-08-04 16:59:15 -04:00
|
|
|
|
2021-08-05 02:36:23 -04:00
|
|
|
### Crash da in order to enter brom
|
2021-08-01 16:25:44 -04:00
|
|
|
|
|
|
|
```
|
2021-08-05 02:36:23 -04:00
|
|
|
python mtk crash [--vid=vid] [--pid=pid] [--interface=interface]
|
2021-08-01 16:25:44 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
### Read memory using patched preloader
|
|
|
|
- Boot in Brom or crash to Brom
|
|
|
|
```
|
2021-08-05 02:36:23 -04:00
|
|
|
python mtk peek [addr] [length] --preloader=patched_preloader.bin
|
2021-08-01 16:25:44 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
### Run custom payload
|
|
|
|
|
|
|
|
```
|
2021-08-05 02:36:23 -04:00
|
|
|
python mtk payload --payload=payload.bin [--var1=var1] [--wdt=wdt] [--uartaddr=addr] [--da_addr=addr] [--brom_addr=addr]
|
2021-08-01 16:25:44 -04:00
|
|
|
```
|
|
|
|
|
2021-08-05 02:36:23 -04:00
|
|
|
---------------------------------------------------------------------------------------------------------------
|
|
|
|
## Stage2 usage
|
|
|
|
### Run python mtk stage (brom) or mtk plstage (preloader)
|
|
|
|
|
|
|
|
#### Run stage2 in bootrom
|
2021-08-01 16:25:44 -04:00
|
|
|
``
|
2021-08-05 02:36:23 -04:00
|
|
|
python mtk stage
|
2021-08-01 16:25:44 -04:00
|
|
|
``
|
|
|
|
|
2021-08-05 02:36:23 -04:00
|
|
|
#### Run stage2 in preloader
|
2021-08-01 16:25:44 -04:00
|
|
|
``
|
2021-08-05 02:36:23 -04:00
|
|
|
python mtk plstage
|
2021-08-01 16:25:44 -04:00
|
|
|
``
|
|
|
|
|
2021-08-05 02:36:23 -04:00
|
|
|
#### Run stage2 plstage in bootrom
|
|
|
|
- Boot in Brom or crash to Brom
|
|
|
|
```
|
|
|
|
python mtk plstage --preloader=preloader.bin
|
|
|
|
```
|
|
|
|
|
|
|
|
### Use stage2 tool
|
|
|
|
|
|
|
|
|
2021-08-02 06:46:18 -04:00
|
|
|
### Leave stage2 and reboot
|
|
|
|
``
|
2021-08-05 02:36:23 -04:00
|
|
|
python stage2 reboot
|
2021-08-02 06:46:18 -04:00
|
|
|
``
|
|
|
|
|
2021-08-01 16:25:44 -04:00
|
|
|
### Read rpmb in stage2 mode
|
|
|
|
``
|
2021-08-05 02:36:23 -04:00
|
|
|
python stage2 rpmb
|
2021-08-01 16:25:44 -04:00
|
|
|
``
|
|
|
|
|
|
|
|
### Read preloader in stage2 mode
|
|
|
|
``
|
2021-08-05 02:36:23 -04:00
|
|
|
python stage2 preloader
|
2021-08-01 16:25:44 -04:00
|
|
|
``
|
|
|
|
|
|
|
|
### Read memory as hex data in stage2 mode
|
|
|
|
``
|
2021-08-05 02:36:23 -04:00
|
|
|
python stage2 memread [start addr] [length]
|
2021-08-01 16:25:44 -04:00
|
|
|
``
|
|
|
|
|
|
|
|
### Read memory to file in stage2 mode
|
|
|
|
``
|
2021-08-05 02:36:23 -04:00
|
|
|
python stage2 memread [start addr] [length] --filename filename.bin
|
2021-08-01 16:25:44 -04:00
|
|
|
``
|
|
|
|
|
2021-09-28 11:56:15 -04:00
|
|
|
### Write hex data to memory in stage2 mode
|
|
|
|
``
|
|
|
|
python stage2 memwrite [start addr] --data [data as hexstring]
|
|
|
|
``
|
|
|
|
|
|
|
|
### Write memory from file in stage2 mode
|
2021-08-01 16:25:44 -04:00
|
|
|
``
|
2021-09-28 11:56:15 -04:00
|
|
|
python stage2 memwrite [start addr] --filename filename.bin
|
2021-08-02 06:46:18 -04:00
|
|
|
``
|
|
|
|
|
|
|
|
### Extract keys
|
|
|
|
``
|
2021-09-28 11:56:15 -04:00
|
|
|
python stage2 keys --mode [sej, dxcc]
|
2021-08-01 16:25:44 -04:00
|
|
|
``
|
2021-08-02 06:46:18 -04:00
|
|
|
For dxcc, you need to use plstage instead of stage
|
2021-08-01 16:25:44 -04:00
|
|
|
|
2021-09-29 05:47:02 -04:00
|
|
|
---------------------------------------------------------------------
|
2021-08-04 17:03:25 -04:00
|
|
|
|
|
|
|
### I have issues ....... please send logs and full console details !
|
2021-08-01 16:25:44 -04:00
|
|
|
|
|
|
|
- Run the mtk tool with --debugmode. Log will be written to log.txt (hopefully)
|
|
|
|
|
|
|
|
## Rules / Infos
|
|
|
|
|
|
|
|
### Chip details / configs
|
|
|
|
- Go to config/brom_config.py
|
|
|
|
- Unknown usb vid/pids for autodetection go to config/usb_ids.py
|