Back to skill

Security audit

jira-reader

Security checks across malware telemetry and agentic risk

Overview

This skill is a disclosed read-only Jira helper that uses a user-provided Jira token to fetch Jira data from Atlassian APIs.

Install only if you are comfortable giving this helper a Jira read token. Use a scoped Atlassian token with the minimum read permissions needed, keep JIRA_BASE_URL pointed at your Jira site, and avoid running broad JQL searches against projects you do not intend to expose to the agent.

SkillSpector

By NVIDIA
Vulnerability Patterns
  • Data ExfiltrationExternal Transmission, Env Variable Harvesting, File System Enumeration
  • Privilege EscalationExcessive Permissions, Sudo/Root Execution, Credential Access
  • Prompt InjectionInstruction Override, Hidden Instructions, Exfiltration Commands
  • Supply ChainUnpinned Dependencies, External Script Fetching, Obfuscated Code
  • Excessive AgencyUnrestricted Tool Access, Autonomous Decision Making, Scope Creep
Findings (2)

External Transmission

Medium
Category
Data Exfiltration
Content
async function jiraUrl(path) {
  const cloudId = config.cloudId || await discoverCloudId();
  return `https://api.atlassian.com/ex/jira/${encodeURIComponent(cloudId)}${path}`;
}

async function discoverCloudId() {
Confidence
50% confidence
Finding
https://api.atlassian.com/

Credential Access

High
Category
Privilege Escalation
Content
import { readFileSync } from 'node:fs';
const VERSION = '0.4.0';
loadEnvFile(process.env.JIRA_ENV_FILE || '.env');

class JiraRequestError extends Error { constructor(status, message) { super(message); this.status = status; } }
Confidence
60% confidence
Finding
.env'

VirusTotal

64/64 vendors flagged this skill as clean.

View on VirusTotal

Static analysis

Detected: suspicious.env_credential_access

Environment variable access combined with network send.

Critical
Code
suspicious.env_credential_access
Location
scripts/jira-reader.mjs:5