byted-security-llmscanner
Warn
Audited by Gen Agent Trust Hub on Mar 26, 2026
Risk Level: MEDIUMCOMMAND_EXECUTIONCREDENTIALS_UNSAFEEXTERNAL_DOWNLOADS
Full Analysis
- [COMMAND_EXECUTION]: In
scripts/src/run_analysis.ts, the script useschild_process.execto runanalyze_task_data.ts. ThetaskIdvariable is taken directly from command-line arguments and interpolated into the shell string without sanitization, creating a potential command injection vector. - [CREDENTIALS_UNSAFE]: The skill's architecture relies on storing plain-text credentials (username and MD5-hashed password) in
scripts/config.ts. It also caches sensitive authentication tokens inscripts/data/token_cache.jsonon the local file system. - [SAFE]: All network operations performed by the skill (in files like
analyze_rt_task.ts,common.ts,create_asset_model.ts, etc.) explicitly disable SSL/TLS certificate verification by settingrejectUnauthorized: falsein the HTTPS agent. This practice makes all API communications, including the transmission of credentials and security reports, vulnerable to Man-in-the-Middle (MitM) attacks. - [EXTERNAL_DOWNLOADS]: The skill requires the installation of several external Node.js dependencies from the public NPM registry during the setup phase, including
axios,ts-node, andtypescript.
Audit Metadata