Jira OpenClaw

Security checks across malware telemetry and agentic risk

Overview

This appears to be a real Jira connector, but it can give OpenClaw broad and recurring ability to change Jira tickets, so it needs review before use.

Install only if you intentionally want OpenClaw to access and possibly modify Jira. Use a dedicated least-privilege Jira token, verify pastewatch redaction, add endpoint/action allowlists, require approval for write operations, and be especially careful before enabling the scheduled cron workflows.

VirusTotal

66/66 vendors flagged this skill as clean.

View on VirusTotal

Risk analysis

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.

#
ASI02: Tool Misuse and Exploitation
High
What this means

An agent could modify Jira issues, links, statuses, or fields using the user's Jira permissions if prompted incorrectly or if a workflow is too broad.

Why it was flagged

The helper accepts an arbitrary HTTP method, endpoint, and request body, so an agent using it is not limited to safe Jira reads; the same document shows POST/PUT examples for transitions, field updates, and issue links.

Skill content
METHOD="${1:?Usage: jira.sh <METHOD> <endpoint> [body]}" ... curl -s --http1.1 -X "$METHOD" ... -d "$BODY" "$URL"
Recommendation

Use an endpoint allowlist such as chainwatch, require explicit approval for POST/PUT/DELETE actions, prefer dry-run previews, and log all Jira changes.

#
ASI03: Identity and Privilege Abuse
Medium
What this means

The agent may inherit broad Jira account permissions, which could affect sensitive business tickets if the token is over-privileged.

Why it was flagged

The skill instructs users to store a Jira API token/PAT and use it for Basic auth, but does not specify least-privilege scopes, a dedicated service account, or project/action limits.

Skill content
JIRA_TOKEN=<your-api-token-or-pat> ... JIRA_EMAIL=your@email.com ... curl ... -u "${JIRA_EMAIL}:${JIRA_TOKEN}"
Recommendation

Use a dedicated low-privilege Jira account or narrowly scoped token, avoid admin tokens, rotate credentials, and restrict the projects/actions the agent can access.

#
ASI10: Rogue Agents
Medium
What this means

Jira tickets could continue changing on a schedule after setup, which may surprise users or teams if the JQL filters are wrong or the automation is no longer desired.

Why it was flagged

The documented workflows create recurring autonomous agent jobs that can mutate Jira data, including linking tasks and changing due dates.

Skill content
Schedule as OpenClaw cron: `isolated` session, `agentTurn`, Mon-Fri at start of day ... Checks end-of-day for unresolved tickets due today, bumps +1 day
Recommendation

Make cron setup explicitly opt-in, narrow the JQL filters, add notifications or approval before each write, and provide a clear way to pause or remove the jobs.

#
ASI09: Human-Agent Trust Exploitation
Low
What this means

If pastewatch is not correctly installed and running, a user may over-trust the secret-safety claim and accidentally expose Jira credentials to the agent context.

Why it was flagged

The safety claim depends on an external pastewatch MCP setup; the skill is instruction-only and does not itself enforce that redaction is active.

Skill content
Secrets never reach the LLM — pastewatch redacts credentials in transit.
Recommendation

Verify pastewatch is installed, running, and redacting before using the token; do not ask the agent to print or inspect the secret file.

#
ASI04: Agentic Supply Chain Vulnerabilities
Low
What this means

The skill may not work as described, or may run without the intended redaction/guardrail tooling, unless the user manually verifies the environment.

Why it was flagged

The registry does not enforce the external tools and helper script described in SKILL.md, so dependency setup and provenance are left to the user.

Skill content
Required binaries (all must exist): none ... No install spec — this is an instruction-only skill.
Recommendation

Declare required tools in metadata, document trusted installation sources, and verify pastewatch/curl/python3 before enabling Jira access.