mirror of
https://github.com/bkerler/mtkclient.git
synced 2024-11-14 11:14:56 -05:00
Compare commits
4 commits
501a23a7fa
...
20c7a50b17
Author | SHA1 | Date | |
---|---|---|---|
|
20c7a50b17 | ||
|
161ac0f664 | ||
|
dcc431022a | ||
|
b59f65f94e |
2 changed files with 28 additions and 2 deletions
|
@ -202,13 +202,13 @@ python mtk.py --stock
|
|||
|
||||
### Run multiple commands
|
||||
```bash
|
||||
python mtk.py script run.example
|
||||
python mtk.py script examples/run.example
|
||||
```
|
||||
or
|
||||
```
|
||||
python mtk.py multi "cmd1;cmd2"
|
||||
```
|
||||
See the file "[run.example](https://github.com/bkerler/mtkclient/blob/main/run.example)" on how to structure the script file
|
||||
See the file "[run.example](https://github.com/bkerler/mtkclient/blob/main/examples/run.example)" on how to structure the script file
|
||||
|
||||
### Root the phone (Tested with android 9 - 12)
|
||||
|
||||
|
|
26
shell.nix
Normal file
26
shell.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
with import <nixpkgs> { };
|
||||
|
||||
mkShell {
|
||||
|
||||
name = "mtkclient";
|
||||
|
||||
buildInputs = with python3Packages; [
|
||||
capstone
|
||||
colorama
|
||||
flake8
|
||||
fusepy
|
||||
keystone
|
||||
keystone-engine
|
||||
mock
|
||||
pycryptodome
|
||||
pycryptodomex
|
||||
pyserial
|
||||
pyside6
|
||||
pyusb
|
||||
setuptools
|
||||
shiboken6
|
||||
unicorn
|
||||
wheel
|
||||
];
|
||||
|
||||
}
|
Loading…
Reference in a new issue