2024-08-02 19:19:14 +00:00
|
|
|
{
|
|
|
|
// Use IntelliSense to learn about possible attributes.
|
|
|
|
// Hover to view descriptions of existing attributes.
|
|
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
|
|
"version": "0.2.0",
|
|
|
|
"configurations": [
|
|
|
|
{
|
2024-08-08 17:46:04 +00:00
|
|
|
"name": "Debug usb stack",
|
2024-08-02 19:19:14 +00:00
|
|
|
"type": "debugpy",
|
|
|
|
"request": "launch",
|
|
|
|
"program": "exploit.py",
|
|
|
|
"console": "integratedTerminal",
|
2024-08-08 17:46:04 +00:00
|
|
|
"args": ["--usb-debug"]
|
2024-08-05 12:51:04 +00:00
|
|
|
},
|
|
|
|
{
|
2024-08-08 17:46:04 +00:00
|
|
|
"name": "Run boot chain",
|
|
|
|
"type": "debugpy",
|
|
|
|
"request": "launch",
|
|
|
|
"program": "exploit.py",
|
|
|
|
"console": "integratedTerminal",
|
|
|
|
"justMyCode": false,
|
|
|
|
"args": ["--run-boot-chain"]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Debug on device",
|
2024-08-05 12:51:04 +00:00
|
|
|
"type": "debugpy",
|
|
|
|
"request": "launch",
|
|
|
|
"program": "exploit.py",
|
|
|
|
"console": "integratedTerminal",
|
2024-08-05 17:37:13 +00:00
|
|
|
"justMyCode": false,
|
2024-08-05 12:51:04 +00:00
|
|
|
"args": []
|
2024-08-08 17:46:04 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Debug current file",
|
|
|
|
"type": "debugpy",
|
|
|
|
"request": "launch",
|
|
|
|
"program": "${file}",
|
|
|
|
"console": "integratedTerminal",
|
|
|
|
"justMyCode": false,
|
2024-08-02 19:19:14 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|