26 lines
1.0 KiB
Markdown
26 lines
1.0 KiB
Markdown
# Samsung_S7
|
|
Code to exploit and research the Exynos Bootrom.
|
|
|
|
## Setting up
|
|
|
|
### Python module
|
|
Create a venv, and intall ghidra_assistant.
|
|
```bash
|
|
python3 -m venv venv
|
|
. venv/bin/activate
|
|
pip install -r requirements.txts
|
|
```
|
|
|
|
### Building the debugger
|
|
The debugger needs to be built using [gupje](https://git.herreweb.nl/EljakimHerrewijnen/Gupje). Move the contents of `source/gupje_device` to `Gupje/devices/samsung_s7`. Then proceed to build the debugger.
|
|
|
|
```bash
|
|
mv source/gupje_device/* {your-gupje-root}/devices/samsung_s7
|
|
cd {your-gupje-root}
|
|
make -f devices/samsung_s7/Makefile
|
|
```
|
|
|
|
Then proceed to move the debugger to `dump/debugger.bin`. To get to work, run `source/exploit/exploit.py`. The launch.json's are located in source/exploit, so its recommended to open this folder in your VSCode/favourite IDE.
|
|
|
|
### Viewing/building documentation
|
|
To view documentation, ensure you have sphinx installed. If not, run `sudo apt install python3-sphinx`. Then proceed to build the documentation by running `make livehtml` in `documentation`. |