Samsung_S7/source/exploit/.vscode/launch.json

25 lines
749 B
JSON
Raw Normal View History

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": [
{
"name": "Debug exploit",
"type": "debugpy",
"request": "launch",
"program": "exploit.py",
"console": "integratedTerminal",
"args": ["--debug"]
2024-08-05 12:51:04 +00:00
},
{
"name": "Run chain",
"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-02 19:19:14 +00:00
}
]
}