🎬

감사 이력

video-enhancement - 4 감사들

감사 버전 4

최신 중간 위험

Jun 8, 2026, 11:57 AM

This skill is a legitimate video enhancement tool that wraps the verging.ai API. Static analysis flagged shell commands (ffmpeg, curl, yt-dlp), env var access (VERGING_API_KEY), network calls to verging.ai, and temp directory usage. After evaluation, all findings are false positives: the shell commands are standard video processing tool invocations documented for instructional purposes, the API key access follows best practices (env var only), and network calls are to the documented verging.ai API. The combination heuristic is expected for a skill that processes media files via a cloud API. No malicious intent detected.

2
스캔된 파일
215
분석된 줄 수
8
발견 사항
claude
감사자
중간 위험 문제 (2)
Shell command execution via ffmpeg, curl, and yt-dlp
The skill instructs execution of shell commands including ffmpeg for video trimming, curl for API calls, and yt-dlp for video downloads. These are standard media processing tools invoked with documented parameters. While the execution pattern triggers static analysis, the commands are purposeful and scoped to the video enhancement workflow.
API key handling via environment variable
The skill accesses VERGING_API_KEY environment variable for authentication with the verging.ai API. This is the recommended secure pattern for credential management. The key is never hardcoded; users set it via export. Privacy section explicitly warns against exposing it in public repos.
낮은 위험 문제 (2)
Network requests to verging.ai API endpoints
The skill makes HTTP requests to verging.ai/api/v1/* endpoints for authentication, video upload, job creation, and status polling. All requests are to the documented API of the service the skill is designed to interface with. No requests to suspicious or external third-party domains.
Temp directory usage for video processing
The skill uses /tmp/verging-video-enhancement/ as a working directory for trimmed video files. This is a standard ephemeral location for media processing. The skill notes temp files are cleaned up after use.

감사 버전 3

낮은 위험

Jun 8, 2026, 11:50 AM

Evaluation of 76 static findings found all critical and high severity items to be false positives in legitimate context. The skill is a video enhancement API client that invokes standard tools (yt-dlp, ffmpeg, curl) and makes API calls to verging.ai. The 'dangerous combination' heuristic triggered on the standard pattern of shell commands + network + API key, but no malicious intent was found. No prompt injection or obfuscation detected. The 'weak crypto' finding is a false positive triggered by API key format strings, not cryptographic implementation.

2
스캔된 파일
215
분석된 줄 수
8
발견 사항
claude
감사자
낮은 위험 문제 (4)
External commands used for video processing
The skill invokes yt-dlp, ffmpeg, ffprobe, and curl as documented shell commands. These are standard video processing tools, and usage is explicitly documented. No injection risk since commands use fixed tool names with parameterized arguments.
Network access to verging.ai API endpoints
All network access is to verging.ai API endpoints (auth, upload, job management). This is expected for a SaaS API client skill. No requests to unknown or suspicious domains.
API key read from environment variable
VERGING_API_KEY is read from environment, which is the recommended secure pattern for API key management. Key is passed via Authorization header to the API.
Temporary directory usage
Temp files stored in /tmp/verging-video-enhancement/ for intermediate video processing. Standard pattern for media processing. Documentation notes files are cleaned up after use.

감사 버전 2

낮은 위험

Mar 18, 2026, 06:58 AM

This is a legitimate video enhancement skill that integrates with the verging.ai API service. Static analysis flagged 82 patterns, but most are false positives: hardcoded URLs are documented public API endpoints, API key references are for user-provided authentication (not secret exfiltration), and shell commands in documentation are usage examples for ffmpeg/yt-dlp/curl. The skill requires network access for API calls, environment variable for user API key, external tools for video processing, and temp directory for file handling. These are expected behaviors for a video processing tool. Risk level is LOW due to external service dependency and third-party API usage.

4
스캔된 파일
355
분석된 줄 수
8
발견 사항
claude
감사자
낮은 위험 문제 (4)
External API Dependency
Skill depends on third-party verging.ai API service for video enhancement processing. All video processing occurs on external servers.
User API Key Required
Skill requires users to provide their own verging.ai API key via environment variable. Users must trust the third-party service with their credentials.
External Tool Dependencies
Skill requires external binaries (yt-dlp, ffmpeg, ffprobe, curl) for video download and processing. These tools must be installed on the user's system.
Remote Video Download
Skill can download videos from remote URLs including YouTube and Bilibili. Users should ensure they have rights to process downloaded content.

감사 버전 1

안전

Mar 17, 2026, 04:15 PM

All static analysis findings are false positives representing legitimate functionality for a video processing tool. Network requests are made to documented verging.ai API endpoints. External commands (ffmpeg, ffprobe, curl, yt-dlp) are standard video processing tools with hardcoded arguments. Environment variables store API keys as documented. No prompt injection attempts or malicious patterns detected.

4
스캔된 파일
349
분석된 줄 수
8
발견 사항
claude
감사자
낮은 위험 문제 (4)
External Command Execution
Skill uses ffmpeg, ffprobe, curl, and yt-dlp commands for video processing. All commands shown in documentation use hardcoded arguments with no user input injection. This is legitimate video processing tooling.
Network Requests to External API
Skill makes HTTP requests to verging.ai API endpoints for video processing services. All URLs are hardcoded to legitimate service endpoints documented in the skill README.
API Key in Environment Variable
Skill reads VERGING_API_KEY environment variable for authentication with verging.ai API. This is the standard, secure pattern for API credential management.
Temporary File System Access
Skill uses /tmp/verging-video-enhancement/ directory for temporary video storage during processing. This is standard behavior for video processing workflows.