rails-dev
Pass
Audited by Gen Agent Trust Hub on Jul 19, 2026
Risk Level: SAFE
Full Analysis
- [SAFE]: The skill provides defensive coding guidelines and security-conscious architectural patterns for Ruby on Rails applications.
- [SAFE]: Authentication guidelines in
references/auth.mdcorrectly recommend using signed cookies withhttponlyandsame_site: :laxflags to mitigate session hijacking and CSRF attacks. - [SAFE]: The skill explicitly addresses Insecure Direct Object Reference (IDOR) vulnerabilities by instructing developers to scope database lookups to the current user (e.g.,
Current.user.accessible_cards.find(params[:id])) rather than using unscoped global lookups. - [SAFE]: Webhook handling instructions in
references/webhooks.mdmandate HMAC signature verification using constant-time comparison to prevent timing attacks and unauthorized data injection. - [SAFE]: Guidelines for redirection in
references/auth.mdinclude a validation mechanism to prevent Open Redirect vulnerabilities. - [SAFE]: The skill discourages the use of unnecessary third-party gems, which reduces the potential supply chain attack surface of the resulting application.
- [SAFE]: No malicious patterns, obfuscation, unauthorized network operations, or credential exfiltration attempts were detected across the analyzed files.
Audit Metadata