Auth0 Nuxt

PassAudited by VirusTotal on May 6, 2026.

Overview

Type: OpenClaw Skill Name: auth0-nuxt Version: 1.0.1 The auth0-nuxt skill bundle provides legitimate and well-structured documentation and code patterns for integrating the official @auth0/auth0-nuxt SDK into Nuxt 3/4 applications. It emphasizes security best practices, such as server-side session validation, the use of encrypted cookies, and proper environment variable configuration. The included reference files (examples.md, route-protection.md, and session-stores.md) offer standard implementation patterns for common authentication tasks without any evidence of malicious intent, data exfiltration, or prompt injection.

Findings (0)

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.

What this means

If these secrets are exposed, an attacker could compromise authentication flows or sessions for the Nuxt application.

Why it was flagged

The skill instructs users to configure Auth0 client and session secrets. This is expected for server-side Auth0 authentication, but these credentials grant sensitive authentication authority.

Skill content
NUXT_AUTH0_CLIENT_SECRET=your-client-secret
NUXT_AUTH0_SESSION_SECRET=<from-openssl>
Recommendation

Use real secrets only in private environment files or secret managers, never commit them, and scope/rotate Auth0 credentials according to Auth0 guidance.

What this means

Improperly protected Redis, MongoDB, or PostgreSQL session stores could expose user identity data, tokens, or active sessions.

Why it was flagged

The skill provides patterns for persistent session storage containing authentication state and potentially PII. This is purpose-aligned, but it introduces sensitive persistent data handling.

Skill content
Use custom session stores when:
- Session data exceeds cookie size limits (4KB per chunk)
- Running in distributed/load-balanced environments
- Storing sensitive PII that shouldn't be in cookies
Recommendation

Restrict database access, use TLS where applicable, configure TTL/expiration, avoid storing unnecessary token data, and verify logout/session deletion behavior.

What this means

Installing dependencies changes the application’s supply chain and should be reviewed like any other production package.

Why it was flagged

The skill tells the user to install the Auth0 Nuxt SDK from npm. This is central to the skill’s purpose and is user-directed, but it is still a dependency added to the application.

Skill content
npm install @auth0/auth0-nuxt
Recommendation

Verify the package name and publisher, pin versions for production, and review lockfile changes before deploying.