stremio-cli
SKILL.md explicitly claims the main script is 'legacy and not used', but it is fully functional code that performs undeclared shell execution via subprocess.Popen.
Why this conclusion was reached
2/4 dimensions flagged1 undeclared or violating capabilities were inferred.
2 lower-risk artifacts were extracted and still need context.
The report includes 4 attack-chain steps and 2 severe findings.
Dependency information is incomplete, so supply-chain confidence stays limited.
Attack Chain
Entry · SKILL.md:1
deception · SKILL.md:15
Escalation · scripts/stremio_cast.py:1
Execution · scripts/stremio_cast.py:67
What drove the risk score up
SKILL.md line 15 states script is 'not used' when it's fully functional automation code
subprocess.Popen(['catt', ...]) at line 67 executes shell commands without any declaration
Hardcoded URL contains local IP disguised as domain: 192-168-15-162.519b6502d940.stremio.rocks
stream_url captured from network intercept is passed to shell command without sanitization
Most important evidence
Explicit false statement about script status
SKILL.md line 15 states 'The script in scripts/stremio_cast.py is Portuguese/legacy and not used — we rely on the built-in browser tool instead.' This is demonstrably false. The script is fully functional Python code with complete automation logic including browser control, stream URL interception, and shell command execution.
SKILL.md:15 Undeclared shell command execution via subprocess
The script executes 'catt cast' command via subprocess.Popen without any declaration in SKILL.md. This constitutes shell:WRITE capability that was never disclosed to the user.
scripts/stremio_cast.py:67 Suspicious hardcoded streaming server URL
The URL contains a local network IP address (192.168.15.162) disguised as a subdomain of stremio.rocks. This could indicate a man-in-the-middle setup or a custom streaming server.
scripts/stremio_cast.py:10 Potential injection via unsanitized stream URL
The stream_url variable is captured from network request interception and passed directly to a shell command. If the URL contains special characters, this could be exploited.
scripts/stremio_cast.py:67 Declared capability vs actual capability
No file operations in script scripts/stremio_cast.py:10 - Makes HTTP requests to external Stremio service scripts/stremio_cast.py:67 - subprocess.Popen(['catt', '-d', device, 'cast', stream_url]) Playwright browser automation is declared and used Suspicious artifacts and egress
https://app.strem.io/shell-v4.4/?streamingServer=https%3A%2F%2F192-168-15-162.519b6502d940.stremio.rocks%3A12470#/ scripts/stremio_cast.py:10
Dependencies and supply chain
There are no structured dependency warnings.
File composition
scripts/stremio_cast.py SKILL.md