physical-ai-video-data-augmentation
Audited by Socket on Jul 2, 2026
3 alerts found:
Anomalyx3No clear evidence of embedded malware (e.g., backdoor/exfiltration/persistence) is present in this fragment. The main security concerns are (1) high-impact execution risk from sourcing a local env file selected from setup_dir (`set -a; source ...`), which becomes arbitrary code execution if an attacker can influence setup_dir contents; and (2) potential SSRF-style risk from probing attacker-influenced URLs via curl without host allowlisting or stronger URL validation. Other logic is primarily orchestration (URL normalization, /models polling, local video discovery, and barrier coordination).
This workflow fragment does not show explicit malware (no clear exfiltration/backdoor commands are present in the YAML). However, it executes multiple shell scripts and a Python generator originating from {{skills_dir}} (potentially external/submitter-controlled content) and provides those scripts with sensitive credentials and configurable network endpoints. It also performs unpinned runtime pip installs during setup. The dominant concern is supply-chain/control risk rather than directly observable malicious payloads; review and provenance verification of {{skills_dir}} scripts and the generator are essential.
This fragment itself does not show overt malicious logic, but it has meaningful supply-chain/execution trust risks typical of orchestration pipelines: it executes shell/Python artifacts staged from {{skills_dir}}, performs unpinned runtime pip installs during setup, and configures workers to use HTTP VLM/LLM endpoints alongside injected secrets. A definitive malware assessment requires reviewing the executed scripts (/tmp/cosmos_worker.sh, /tmp/pl_augmented_worker.sh, /tmp/generate_configs.py, and endpoint_common.sh/osmo_barrier.py) and the referenced container images to confirm they do not exfiltrate or manipulate data using the provided tokens.