windows-desktop-e2e
github.com/affaan-m/ECC
Scanned Thu, 28 May 2026 17:27:24 GMT
Scan ID crawl-sejzfuhyaz7impl0i9t9b4wq · 2ms
B
SCORE 75 / 100
Verdict: Safe to install
5 medium findings.
This skill spawns subprocesses outside its declared capabilities plus 4 other issues listed below.
0 critical0 high5 medium7 rules passed
Why grade B?
score · 75 / 100The current grade reflects 5 medium findings (3+ MEDs → B).
0 CRIT0 HIGH5 MED0 LOW
To reach a higher grade
- AReach Atarget score 95
Resolve 3 of 5 MED (cap is 2).
Thresholds are documented at /docs/grading. Source-of-truth is the grade() function in @skillox/scanner.
Findings · ordered by severity
medArbitrary subprocess execution detectedThe skill spawns subprocesses. Without a capability manifest declaring this, the skill could execute arbitrary commands.▾
Arbitrary subprocess execution detected
The skill spawns subprocesses. Without a capability manifest declaring this, the skill could execute arbitrary commands.
358
359def start_recording(name):
360 return subprocess.Popen([← spawns a subprocess outside declared capabilities
361 "ffmpeg", "-f", "gdigrab", "-framerate", "10",
362 "-i", "desktop", "-y", f"artifacts/videos/{name}.mp4"
medArbitrary subprocess execution detectedThe skill spawns subprocesses. Without a capability manifest declaring this, the skill could execute arbitrary commands.▾
Arbitrary subprocess execution detected
The skill spawns subprocesses. Without a capability manifest declaring this, the skill could execute arbitrary commands.
395### Tier 1 — ファイルシステム分離(デフォルト、常に使用)
396
397各テストは `subprocess.Popen` と `Application.connect()` を通じて独自の `APPDATA` / `LOCALAPPDATA` / `TEMP` を取得します。pytestの `tmp_path` フィクスチャがクリーンアップを自動的に処理します。← spawns a subprocess outside declared capabilities
398
399```python
medArbitrary subprocess execution detectedThe skill spawns subprocesses. Without a capability manifest declaring this, the skill could execute arbitrary commands.▾
Arbitrary subprocess execution detected
The skill spawns subprocesses. Without a capability manifest declaring this, the skill could execute arbitrary commands.
424 import shlex
425 # subprocessで起動して環境変数を渡し;PIDでpywinautoを接続
426 proc = subprocess.Popen(← spawns a subprocess outside declared capabilities
427 [APP_PATH] + shlex.split(APP_ARGS),
428 env=sandbox_env,
medArbitrary subprocess execution detectedThe skill spawns subprocesses. Without a capability manifest declaring this, the skill could execute arbitrary commands.▾
Arbitrary subprocess execution detected
The skill spawns subprocesses. Without a capability manifest declaring this, the skill could execute arbitrary commands.
505 return job # 生存を維持 — ジョブが閉じると(GC時)プロセスが終了する
506
507# proc = subprocess.Popen(...) の後: job = restrict_process(proc.pid)← spawns a subprocess outside declared capabilities
508```
509
medNo capability manifest declaredThe skill ships without a `manifest.yaml` or `capabilities` block in its frontmatter. Without a manifest, the runtime cannot enforce what this skill is permitted to do.rule: no-manifest▾
No capability manifest declared
The skill ships without a `manifest.yaml` or `capabilities` block in its frontmatter. Without a manifest, the runtime cannot enforce what this skill is permitted to do.
rule:
no-manifestskillox.io/r/crawl-sejzfuhyaz7impl0i9t9b4wq