腾讯文档Markdown

Security checks across static analysis, malware telemetry, and agentic risk

Overview

This appears to be a disclosed Tencent Docs Markdown automation tool, but it stores account cookies and can modify or delete Tencent documents.

This skill looks coherent for Tencent Docs Markdown automation. Before installing, be comfortable granting it access to your Tencent Docs session, protect the .cookies.json file, verify document URLs before update/delete/rename actions, and avoid using it with highly sensitive documents unless you trust the agent session and machine.

Static analysis

No static analysis findings were reported for this release.

VirusTotal

VirusTotal findings are pending for this skill version.

View on VirusTotal

Risk analysis

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

#
ASI03: Identity and Privilege Abuse
Medium
What this means

Anyone who obtains the cookie file may be able to act on your Tencent Docs account.

Why it was flagged

The skill stores reusable Tencent Docs session cookies locally, which are account-level credentials.

Skill content
This file grants full access to your Tencent Docs account. • Do NOT commit it to version control or share it with anyone.
Recommendation

Use a dedicated automation account if possible, keep .cookies.json private, and run the logout command or delete the file when finished.

#
ASI02: Tool Misuse and Exploitation
Medium
What this means

If used on the wrong URL or with confirmation bypassed, a document could be overwritten, renamed, or moved to trash.

Why it was flagged

The skill can overwrite, rename, or delete Tencent Docs documents. The artifacts include confirmation gates, but also document explicit bypass options.

Skill content
更新...这是破坏性操作...程序化调用须显式传入 confirm=True...CLI 也可加 -y/--yes 跳过提示.
Recommendation

Check the document title and URL before approving destructive actions, and avoid -y/--yes unless you are certain.

#
ASI06: Memory and Context Poisoning
Medium
What this means

Sensitive document content could appear in chat logs, terminal output, local files, or downstream tool calls.

Why it was flagged

Reading or downloading documents intentionally brings their contents into the agent session and may write them to disk.

Skill content
document content will be exposed to the caller / agent session... The downloaded content is written to the local filesystem and returned to the caller.
Recommendation

Do not use read/download on highly sensitive documents unless you trust the current agent session and local environment.

#
ASI04: Agentic Supply Chain Vulnerabilities
Low
What this means

Installation depends on external package and browser downloads, which carry normal supply-chain risk.

Why it was flagged

The install script downloads Python dependencies and a Playwright Chromium browser. Dependencies are version-pinned, but the fallback install does not enforce hashes.

Skill content
"install": "pip install --require-hashes -r requirements.txt 2>/dev/null || pip install -r requirements.txt && playwright install chromium"
Recommendation

Install in a trusted environment, review dependencies, and prefer locked or hash-verified installs where possible.