mirror of
https://github.com/splunk/security_content
synced 2026-06-08 17:32:49 +00:00
89 lines
2.6 KiB
JSON
89 lines
2.6 KiB
JSON
{
|
|
"configurations": [
|
|
{
|
|
"name": "contentctl init",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/.venv/bin/contentctl",
|
|
"cwd": "${workspaceFolder}/../ddd/",
|
|
"args": [
|
|
"init"
|
|
]
|
|
},
|
|
{
|
|
"name": "contentctl validate",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/.venv/bin/contentctl",
|
|
"cwd": "${workspaceFolder}/../",
|
|
"args": [
|
|
"validate"
|
|
]
|
|
},
|
|
{
|
|
"name": "contentctl validate enrich",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/.venv/bin/contentctl",
|
|
"cwd": "${workspaceFolder}/../",
|
|
"args": [
|
|
"validate",
|
|
"--enrichments"
|
|
]
|
|
},
|
|
{
|
|
"name": "contentctl build",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/.venv/bin/contentctl",
|
|
"cwd": "${workspaceFolder}/../",
|
|
"args": [
|
|
"build"
|
|
]
|
|
},
|
|
{
|
|
"name": "contentctl build enrich",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/.venv/bin/contentctl",
|
|
"cwd": "${workspaceFolder}/../",
|
|
"args": [
|
|
"build",
|
|
"--enrichments"
|
|
]
|
|
},
|
|
{
|
|
"name": "contentctl test",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/.venv/bin/contentctl",
|
|
"cwd": "${workspaceFolder}/../",
|
|
"args": [
|
|
"test"
|
|
]
|
|
},
|
|
{
|
|
"name": "contentctl --help",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/.venv/bin/contentctl",
|
|
"cwd": "${workspaceFolder}/../",
|
|
"args": [
|
|
"--help"
|
|
]
|
|
},
|
|
{
|
|
"name": "contentctl test detection",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/.venv/bin/contentctl",
|
|
"cwd": "${workspaceFolder}/../",
|
|
"args": [
|
|
"test",
|
|
"mode:selected",
|
|
"--mode.files",
|
|
"detections/endpoint/3cx_supply_chain_attack_network_indicators.yml"
|
|
]
|
|
}
|
|
]
|
|
} |