2024-08-02 21:19:14 +02: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 19:46:04 +02:00
|
|
|
"name": "Debug usb stack",
|
2024-08-02 21:19:14 +02:00
|
|
|
"type": "debugpy",
|
|
|
|
"request": "launch",
|
|
|
|
"program": "exploit.py",
|
|
|
|
"console": "integratedTerminal",
|
2024-08-09 22:16:13 +02:00
|
|
|
"args": ["--debug"]
|
2024-08-05 14:51:04 +02:00
|
|
|
},
|
|
|
|
{
|
2024-08-08 19:46:04 +02:00
|
|
|
"name": "Run boot chain",
|
|
|
|
"type": "debugpy",
|
|
|
|
"request": "launch",
|
|
|
|
"program": "exploit.py",
|
|
|
|
"console": "integratedTerminal",
|
|
|
|
"justMyCode": false,
|
2024-08-05 14:51:04 +02:00
|
|
|
"args": []
|
2024-08-08 19:46:04 +02:00
|
|
|
},
|
2024-08-16 10:11:18 +02:00
|
|
|
{
|
|
|
|
"name": "Run unsecure boot",
|
|
|
|
"type": "debugpy",
|
|
|
|
"request": "launch",
|
|
|
|
"program": "exploit.py",
|
|
|
|
"console": "integratedTerminal",
|
|
|
|
"justMyCode": false,
|
2024-11-12 20:58:34 +01:00
|
|
|
"args": ["--unsecure-boot", "--MIB3"]
|
2024-08-16 18:15:53 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Run debugger boot",
|
|
|
|
"type": "debugpy",
|
|
|
|
"request": "launch",
|
|
|
|
"program": "exploit.py",
|
|
|
|
"console": "integratedTerminal",
|
|
|
|
"justMyCode": false,
|
2024-12-09 10:51:36 +01:00
|
|
|
"args": ["--debugger-boot", "--target", "MIB3"], //, "--MIB3"
|
2024-08-16 10:11:18 +02:00
|
|
|
},
|
2024-08-08 19:46:04 +02:00
|
|
|
{
|
|
|
|
"name": "Debug current file",
|
|
|
|
"type": "debugpy",
|
|
|
|
"request": "launch",
|
|
|
|
"program": "${file}",
|
|
|
|
"console": "integratedTerminal",
|
|
|
|
"justMyCode": false,
|
2024-12-07 21:01:35 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Load gupje only",
|
|
|
|
"type": "debugpy",
|
|
|
|
"request": "launch",
|
|
|
|
"program": "exploit.py",
|
|
|
|
"console": "integratedTerminal",
|
|
|
|
"justMyCode": false,
|
|
|
|
"args": ["--load_ga"],
|
|
|
|
},
|
2024-08-02 21:19:14 +02:00
|
|
|
]
|
|
|
|
}
|