You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pwndbg/.devcontainer/devcontainer.json

18 lines
381 B
JSON

{
"name": "pwndbg",
"build": {
"context": "..",
"dockerfile": "../Dockerfile"
},
"runArgs": [
"--security-opt=no-new-privileges:true",
"--cap-drop=ALL",
"--cap-add=SYS_PTRACE"
],
"workspaceFolder": "/pwndbg",
"workspaceMount": "source=${localWorkspaceFolder},target=/pwndbg,type=bind,consistency=cached",
"settings": {},
"extensions": [
"ms-python.python"
]
}