jfb-form-action
Pass
Audited by Gen Agent Trust Hub on Sep 9, 2026
Risk Level: SAFEINDIRECT_PROMPT_INJECTION
Full Analysis
- [INDIRECT_PROMPT_INJECTION]: The skill establishes a workflow for ingesting user-submitted form data via the
$requestobject in the PHPdo_actionmethod. This data is intended to be passed to external APIs or CRMs, creating a vulnerability surface where maliciously crafted form inputs could target downstream systems. - Ingestion points: Untrusted data enters the skill's context through the
$requestparameter of thedo_action( array $request, Action_Handler $handler )method inSKILL.md. - Boundary markers: The implementation examples do not use specific boundary delimiters for user-provided data, but the documentation provides structural guidance for field mapping.
- Capability inventory: The PHP class implementation includes network operation capabilities through the
call_remote_apihelper method, which is intended to send form data to external endpoints. - Sanitization: The skill explicitly recommends security hygiene in its "Critical rules" section, advising the use of
is_email(),absint(), andsanitize_text_field()to validate and clean data before it is processed or transmitted.
Audit Metadata