suspicious.dynamic_code_execution
- Location
- assets/templates/image_classification.py:105
- Finding
- Dynamic code execution detected.
AdvisoryAudited by Static analysis on May 10, 2026.
Detected: suspicious.dynamic_code_execution
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.
A malicious or malformed experiment plan could influence the generated Python project; if the user runs it without review, unintended code could run.
Fields parsed from the uploaded experiment plan are embedded into generated Python source. This is central to the skill's code-generation purpose, but generated code should be reviewed before being run, especially for plans from untrusted sources.
backbone_match = re.search(r'backbone[:\\s]+(.+)', m_text) ... model_name = "{model_info.get('backbone', 'resnet18')}"Use trusted experiment plans, review generated files before execution, and prefer escaping or allowlisting parsed values such as model names in future versions.
Some advertised generation paths may not work as expected, or may require files that were not included in the reviewed artifact set.
The skill references templates and a training-best-practices document that are not present in the supplied manifest, which may make parts of the advertised functionality incomplete or dependent on code not reviewed here.
文本分类 → `assets/templates/text_classification.py` ... 回归预测 → `assets/templates/regression.py` ... `references/training-best-practices.md`
Before relying on non-image templates, verify that all referenced files are present and review any additional files if they are supplied later.