marketing-skills
Warn
Audited by Gen Agent Trust Hub on Aug 30, 2026
Risk Level: MEDIUMCOMMAND_EXECUTIONEXTERNAL_DOWNLOADSINDIRECT_PROMPT_INJECTIONDYNAMIC_EXECUTION
Full Analysis
- [COMMAND_EXECUTION]: The script
prompt-engineer-toolkit/scripts/prompt_tester.pycontains functionality to execute an external command provided by the user via the--runner-cmdargument. - Evidence: Use of
subprocess.run(parts, ...)wherepartsis derived from a formatted string containing user-controlledrunner_cmd,prompt, andinput. - This allows arbitrary code execution on the local machine if the command template is manipulated or if the tool is used to call dangerous binaries.
- [EXTERNAL_DOWNLOADS]: Several automation tools fetch content from the web for analysis.
- Evidence:
site-architecture/scripts/sitemap_analyzer.py,seo-audit/scripts/seo_checker.py, andpage-cro/scripts/conversion_audit.pyall useurllib.request.urlopento download XML and HTML content from provided URLs. - While consistent with the tools' purpose (SEO and CRO auditing), this allows the skill to initiate outbound network connections to any host.
- [INDIRECT_PROMPT_INJECTION]: The skill architecture creates a surface for indirect prompt injection by processing untrusted data from external websites.
- Ingestion points:
sitemap_analyzer.py,seo_checker.py, andconversion_audit.pyread content from arbitrary URLs provided as arguments. - Boundary markers: The analytical prompts for these tools do not appear to use robust delimiters or instructions to ignore embedded commands within the ingested HTML/XML.
- Capability inventory: The presence of a command execution tool (
prompt_tester.py) in the same collection increases the potential risk if an agent is tricked into using it for exploitation. - Sanitization: No significant sanitization or filtering of the fetched content is performed before processing.
- [DYNAMIC_EXECUTION]: The
prompt_tester.pyscript dynamically assembles and executes shell commands. - The
run_runnerfunction usesrunner_cmd.format(prompt=prompt, input=case_input)to build a command string at runtime, which is then split and executed.
Audit Metadata