SG-088: Python bytecode contains sensitive strings

Severity: CRITICAL

A .pyc bytecode file ships in the repo and embeds tokens that suggest credential theft, subprocess execution, or network exfiltration. The interpreter runs bytecode, not source - the visible .py may be a decoy.

Fires when

Remediation

Remove the .pyc from version control (it should be a build artifact in .gitignore). Decompile any committed .pyc with `uncompyle6` or `pycdc` and diff against the .py source before trusting the skill.

Research