HerrewebPy/.vscode/launch.json

45 lines
1.4 KiB
JSON
Raw Permalink Normal View History

{
// 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": "FF_FunctionExtractor",
"type": "debugpy",
"request": "launch",
"program": "herrewebpy/firmware_forensics/function_extractor.py",
"args": [
"--binary",
"sample_data/firmwares/S7_BL31.bin",
"--architecture",
"ARM_AARCH64",
"--endian",
"little",
],
"console": "integratedTerminal",
"justMyCode": false
},
{
"name": "FF_MemoryDrawer",
"type": "debugpy",
"request": "launch",
"program": "herrewebpy/firmware_forensics/memory_drawer.py",
"args": [
"--input",
"sample_data/csv/stack_and_functions.csv",
],
"console": "integratedTerminal",
"justMyCode": false
},
{
"name": "C-ReadPlanGenerator",
"type": "debugpy",
"request": "launch",
"program": "herrewebpy/christianity/readplan_generator.py",
"args": [],
"console": "integratedTerminal",
"justMyCode": false
}
]
}