Skip to content
← Registry
Trust Report

openclaw-sec

AI Agent Security Suite - Real-time protection against prompt injection, command injection, SSRF, path traversal, secrets exposure, and content policy violations

65
SUSPICIOUS
Format: openclawScanner: v0.8.0Duration: 41msScanned: 6d ago · May 5, 2:14 AMSource →
Embed this badge
AgentVerus SUSPICIOUS 65AgentVerus SUSPICIOUS 65AgentVerus SUSPICIOUS 65
[![AgentVerus](https://agentverus.ai/api/v1/skill/43056cfd-1ae2-4316-8a3a-6540d4d69f77/badge)](https://agentverus.ai/skill/43056cfd-1ae2-4316-8a3a-6540d4d69f77)
Community Discussion

Community Comments

Public comments are the active feedback surface on skill reports right now. Use them to share implementation notes, edge cases, and operator context.

0 comments

Sign in to comment on this skill

No comments yet. Be the first to share your thoughts.

Continue the workflow

Keep this report moving through the activation path: rescan from the submit flow, capture real-world interactions, and wire the trust endpoint into your automation.

https://agentverus.ai/api/v1/skill/43056cfd-1ae2-4316-8a3a-6540d4d69f77/trust
Personalized next commands

Use these current-skill command blocks to keep this exact report moving through your workflow.

Record an interaction
curl -X POST https://agentverus.ai/api/v1/interactions \
  -H "Authorization: Bearer at_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{"agentPlatform":"openclaw","skillId":"43056cfd-1ae2-4316-8a3a-6540d4d69f77","interactedAt":"2026-03-15T12:00:00Z","outcome":"success"}'
Fetch trust JSON
curl https://agentverus.ai/api/v1/skill/43056cfd-1ae2-4316-8a3a-6540d4d69f77/trust

Category Scores

59
Permissions
75
Injection
43
Dependencies
62
Behavioral
65
Content
100
Code Safety

Findings (20)

highCapability contract mismatch: inferred credential access is not declared-15

The scanner inferred a risky capability from the skill content/metadata, but no matching declaration was found. Add a declaration with a clear justification, or remove the behavior.

Content pattern: access keys + secret

Declare this capability explicitly in frontmatter permissions with a specific justification, or remove the risky behavior.

permissionsASST-05
highCapability contract mismatch: inferred command execution is not declared-12

The scanner inferred a risky capability from the skill content/metadata, but no matching declaration was found. Add a declaration with a clear justification, or remove the behavior.

Content pattern: shell

Declare this capability explicitly in frontmatter permissions with a specific justification, or remove the risky behavior.

permissionsASST-03
highSuspicious base64-encoded content-25

Base64-encoded string decodes to content containing suspicious keywords.

Encoded: ZXZhbChtYWxpY2lvdXNfY29kZSk=... → Decoded: eval(malicious_code)...

Remove base64-encoded content or replace with plaintext. Obfuscation raises security concerns.

injectionASST-10
highDirect IP address reference-20

The skill references a direct IP address which is classified as high risk.

http://169.254.169.254/latest/meta-data/

Replace direct IP addresses with proper domain names. IP-based URLs bypass DNS-based security controls.

dependenciesASST-04
mediumCapability contract mismatch: inferred network access is not declared-6

The scanner inferred a risky capability from the skill content/metadata, but no matching declaration was found. Add a declaration with a clear justification, or remove the behavior.

Content pattern: https://hooks.slack.com/services/...

Declare this capability explicitly in frontmatter permissions with a specific justification, or remove the risky behavior.

permissionsASST-04
mediumCapability contract mismatch: inferred local service access is not declared-8

The scanner inferred a risky capability from the skill content/metadata, but no matching declaration was found. Add a declaration with a clear justification, or remove the behavior.

Content pattern: http://localhost:6379

Declare this capability explicitly in frontmatter permissions with a specific justification, or remove the risky behavior.

permissionsASST-03
mediumThird-party AI provider dependency-8

The skill relies on third-party AI providers or APIs, expanding the remote dependency surface for prompts, inputs, or generated artifacts.

OpenAI API

Review which external services or providers the skill depends on, what data crosses that boundary, and whether the dependency is necessary for the intended workflow.

dependenciesASST-04
mediumExternal documentation dependency-8

The skill relies on external documentation, specs, or README content as part of its workflow, which introduces an additional remote dependency and trust boundary.

README.md

Review which external services or providers the skill depends on, what data crosses that boundary, and whether the dependency is necessary for the intended workflow.

dependenciesASST-04
mediumHigh-risk workflow lacks explicit safety boundaries-15

The skill performs or enables higher-risk operations but does not define explicit safety boundaries describing what it must not do.

No safety boundary patterns found alongside high-risk capability language

Add a 'Safety Boundaries' section listing what the skill must NOT do (e.g., no file deletion, no network access beyond needed APIs).

contentASST-09
mediumMany external URLs referenced (9)-8

The skill references 9 external URLs and also discusses auth/API/payment workflows, which increases the chance that sensitive operations depend on many remote endpoints.

URLs: https://example.com, http://169.254.169.254/metadata, https://hooks.example.com/security, https://hooks.slack.com/services/, https://discord.com/api/webhooks/...

Minimize external dependencies to reduce supply chain risk.

dependenciesASST-04
mediumFederated auth flow detected-10

Found federated auth flow pattern: "OAuth"

- GitHub tokens & OAuth

Treat OAuth, 2FA, and token-refresh guidance as authentication-sensitive workflows. Explain scope, storage, and refresh behavior clearly so agents do not handle more credential material than necessary.

behavioralASST-05
mediumLocal service URL reference-8

The skill references a localhost or private-network service URL which is classified as medium risk.

http://localhost:6379/admin

Review localhost/private-network service references carefully. Local service URLs can expose internal apps, admin panels, or developer tooling to agent-driven workflows.

dependenciesASST-04
mediumLocal service access detected (inside code block)-5

Found local service access pattern: "http://localhost:6379"

✗ "http://localhost:6379/admin"

Treat localhost and loopback services as privileged local attack surfaces. Require explicit approval, constrain reachable ports, and avoid combining local access with session reuse or tunneling.

behavioralASST-03
mediumSkill path discovery detected (inside code block)-5

Found skill path discovery pattern: "{baseDir}"

cd {baseDir}/hooks

Treat dynamic skill path resolution and installation-path discovery as local filesystem reconnaissance. Scope which paths may be read or executed from, and avoid broad path probing unless the user explicitly requested it.

behavioralASST-03
mediumUI state enumeration detected (inside code block)-5

Found ui state enumeration pattern: "Check result"

// Check result

Treat DOM/accessibility snapshots and clickable-element inventories as sensitive page-state extraction. Be explicit about when UI enumeration is allowed, especially on authenticated or local-only apps.

behavioralASST-02
mediumExternal AI provider delegation detected-10

Found external ai provider delegation pattern: "OpenAI API"

- OpenAI API keys (`sk-...`)

Treat external AI-provider calls as data egress. Make it explicit what prompts, files, or images are sent to third-party providers and require approval before forwarding sensitive content.

behavioralASST-02
lowDirect IP address reference (threat documentation)

The skill references a direct IP address which is classified as low risk.

http://169.254.169.254/metadata

Replace direct IP addresses with proper domain names. IP-based URLs bypass DNS-based security controls.

dependenciesASST-04
lowUnknown external reference (threat documentation)

The skill references an unknown external domain which is classified as low risk.

https://hooks.example.com/security

Verify that this external dependency is trustworthy and necessary.

dependenciesASST-04
lowUnknown external reference-5

The skill references an unknown external domain which is classified as low risk.

http://user:pass@internal-db:5432

Verify that this external dependency is trustworthy and necessary.

dependenciesASST-04
lowLocal file access detected (inside code block)-3

Found local file access pattern: "file://"

openclaw-sec check-url "file:///etc/passwd"

Treat local file browsing as privileged access. Restrict it to explicit user-approved paths and avoid combining it with unrestricted browser/session reuse.

behavioralASST-03