Ae4
- Category
- analysis-evasion
- Confidence
- 80% confidence
- Finding
Suspicious Unicode normalization or mixed-script content
- Content
Security audit
Security checks for vulnerabilities and agentic risk
This is a local video-table transcription helper with disclosed file, Python, FFmpeg, and optional OCR use, and I found no evidence of exfiltration, persistence, or deceptive behavior.
Install only if you are comfortable with a Russian-language workflow that may be implicitly selected for relevant video/table transcription tasks and that processes user-provided media locally with Python/FFmpeg and optional Tesseract. Avoid feeding sensitive industrial or account data unless you intend the agent to analyze those files, and do not authorize external OCR services unless you explicitly want that.
Suspicious Unicode normalization or mixed-script content
The skill explicitly instructs use of local files, Python, and shell-capable tooling, but it does not declare an explicit tool scope or permission boundary. In an agent environment, this can lead to overbroad access, making it easier for the skill to read or modify unintended local files or invoke shell commands beyond what is minimally necessary.
The skill enables implicit invocation for a broadly described video/table transcription capability without any visible trigger constraints, scope limits, or exclusion conditions. That increases the chance the platform will auto-route unrelated user content or sensitive screenshots/videos into this skill unexpectedly, which can cause unintended processing of confidential visual data and reduce user awareness/consent.
Suspicious Unicode normalization or mixed-script content
This markdown file contains user-facing instructions exclusively in Russian from start to finish. Under the policy, forcing a specific language without user opt-in or a clearly justified locale-specific scope is a natural-language policy violation.
This markdown file contains all user-facing instructions in Russian, and there is no indication that the skill is intended only for Russian-speaking users or a specific regional context. Under the policy rule for natural-language violations, forcing a specific language without user opt-in is a locale-policy issue.
subprocess module calls execute external commands. Without careful input validation, this enables command injection.
colors, grid = fixture(root)
def call(*args, expected=0):
result = subprocess.run([sys.executable, str(script), *map(str, args)], capture_output=True, text=True)
if result.returncode != expected:
raise AssertionError(f"{args}: expected {expected}, got {result.returncode}\n{result.stdout}\n{result.stderr}")
return result
subprocess module calls execute external commands. Without careful input validation, this enables command injection.
call("split", "--image", root / "synthetic.png", "--grid", root / "crossed.json", "--out", root / "rejected", expected=1)
if shutil.which("tesseract"):
call("ocr", "--manifest", out / "manifest.json", "--lang", "unavailable_test_language", "--out", out / "missing.json", expected=1)
langs = subprocess.run(["tesseract", "--list-langs"], capture_output=True, text=True, check=True).stdout.splitlines()[1:]
if "eng" in langs:
call("ocr", "--manifest", out / "manifest.json", "--lang", "eng", "--out", out / "ocr.json")
draft = json.loads((out / "ocr.json").read_text())
subprocess module calls execute external commands. Without careful input validation, this enables command injection.
def run(args):
return subprocess.run([str(x) for x in args], check=True, capture_output=True, text=True)
def new_dir(path):
The user-facing description and default prompt are written entirely in Russian, which can impose a language/locale preference without offering user choice or documenting that the skill is intended only for Russian-speaking users. This may violate language or locale policy expectations for broadly available skills.
No suspicious patterns detected.