スキル maxhub-weibo 監査履歴
🐦

監査履歴

maxhub-weibo - 2 監査

監査バージョン 2

最新 低リスク

May 20, 2026, 01:16 PM

This skill is a legitimate Weibo data query assistant that calls a third-party API (aconfig.cn) using a user-provided API key. Static analysis reported 676 potential issues, but nearly all are false positives: 'weak cryptographic algorithm' findings are markdown table separators (|---|---|), 'shell backtick execution' findings are curl examples in documentation code blocks, and 'system reconnaissance' findings are API parameter documentation. The skill is transparent about its credential usage and network calls. Low risk - publish with standard warnings about third-party API usage.

10
スキャンされたファイル
2,645
解析された行数
8
検出結果
claude
監査者
中リスクの問題 (2)
Third-party API credential usage
The skill reads MAXHUB_API_KEY from environment variables and sends it as a Bearer token to www.aconfig.cn for API authentication. This is intentional and documented behavior for the skill's functionality.
External network requests via curl
The skill executes curl commands to make HTTP requests to www.aconfig.cn. All commands use hardcoded URLs and environment variable for auth. No dynamic command injection is possible as the reference files define fixed endpoints.
低リスクの問題 (3)
Markdown tables flagged as weak cryptographic algorithm
Static analyzer incorrectly flagged markdown table separator rows (e.g., '|---|---|---|') as 'weak cryptographic algorithm' at 138 locations across reference files. These are standard markdown formatting, not encryption.
API parameter documentation flagged as system reconnaissance
Static analyzer flagged example parameter values and container IDs in API documentation as 'system reconnaissance'. These are legitimate documentation values like container IDs for Weibo channel categories.
High entropy detection on bilingual documentation
Static analyzer flagged high file entropy on files containing mixed Chinese and English text. This is expected for a bilingual skill documentation file, not obfuscation.

監査バージョン 1

低リスク

May 9, 2026, 07:45 AM

This is a legitimate data fetching skill that provides documentation for accessing Weibo public data through the MaxHub API. Static analysis flagged 216 potential issues but evaluation confirms these are all false positives: backticks in markdown tables were misidentified as shell commands, environment variable access is intentional for API authentication, and network access is required for data retrieval. No malicious code or intent detected. The skill explicitly prohibits platform manipulation and only accesses public data.

3
スキャンされたファイル
499
解析された行数
6
検出結果
claude
監査者

高リスクの問題 (2)

API Credential Access via Environment Variables
The skill requires MAXHUB_API_KEY environment variable for API authentication. This is intentional and documented in the skill metadata.
External Network Access via HTTPS
The skill makes HTTPS requests to the MaxHub API endpoint to fetch Weibo public data. Network access is required and documented.
中リスクの問題 (1)
Documentation Contains Shell Command Syntax
The skill documentation includes curl command examples with environment variable syntax (${VAR}) showing how to make API requests. These are documentation examples, not executable code.
低リスクの問題 (1)
Static Analysis Pattern False Positives
The static analyzer flagged 216 potential security issues (157 external_commands, 13 env_access, 5 network, plus blockers/obfuscation). Manual evaluation confirms all are false positives: markdown backticks misidentified as shell commands, legitimate environment access, and documentation formatting misinterpreted as code.