Overview
Thejira createissue command creates a new issue in a specified Jira project. This command is particularly powerful for social engineering attacks, as it allows creation of convincing issues with user mentions, embedded links, and custom messages. Created issues can serve as phishing vectors, credential harvesting platforms, or reconnaissance tools to track user engagement.
Syntax
Required Parameters
The base URL of the target Jira instance (e.g.,
https://company.atlassian.net)Project key where the issue will be created (e.g.,
PROJ, IT, SECURITY)Type of issue to create. Common types include:
Task, Bug, Story, Epic, Support. Use jira listprojects to see available issue types for each projectOptional Parameters
Authentication cookie (
cloud.session.token or tenant.session.token). If omitted, will attempt anonymous issue creation (if permitted)The issue title/summary. Customize this to make the issue appear legitimate and encourage engagement
Description text for the issue body (e.g., “I need you to take a look at this”)
User ID to mention in the issue description. Use
jira listusers to obtain valid user IDs. Mentioning users sends them notificationsURL to embed in the issue description. Can point to credential harvesting pages, tracking URLs, or malicious resources
Display text for the embedded link. Customize to make links more convincing (e.g., “Click here”, “Documentation”, “Fix Instructions”)
Save command output to a specified file
Examples
Basic Issue Creation
Create a simple task in a project:Social Engineering with Link
Create an issue with an embedded phishing link:Targeted Phishing with User Mention
Create an issue mentioning a specific user for targeted attack:IT Support Impersonation
Mimic a legitimate IT support request:Example from README
The original example from the AtlasReaper README:Use Cases
- Red Team
- Blue Team
Offensive Security Applications
- Credential Harvesting: Create issues with links to fake login pages
- Phishing Campaigns: Leverage trust in internal systems for convincing phishing
- Targeted Attacks: Mention high-value users to ensure they receive notifications
- Payload Distribution: Include links to malicious files or executables
- Reconnaissance: Track who views/interacts with created issues via embedded tracking
- Persistence: Created issues remain accessible as long-term attack infrastructure
- Social Engineering: Craft convincing scenarios (urgent security updates, policy changes)
- Help Desk Impersonation: Create support tickets to build credibility
Output
Upon successful issue creation, the command returns full details about the created issue including:Output Information
- Issue Title: The summary text provided
- Issue Key: Unique identifier (PROJECT-###)
- Issue Id: Numeric ID for the issue
- Created/Updated: Timestamps
- Status: Current workflow status
- Creator: Email, display name, and timezone of the creating user
- Assignee: Assigned user (if applicable)
- Issue Contents: The description with embedded links and mentions
Detection Considerations
Jira Audit Log Entries
This command generates the following audit log events:issue_created- Records the issue creationissue_comment_created- If mentions are included- Includes: User ID, project key, issue key, timestamp, IP address
Network Indicators
- HTTP POST requests to
/rest/api/3/issue - GET request to
/rest/api/3/issue/createmeta?projectKeys={project}(metadata retrieval) - Subsequent GET request to retrieve full issue details
- Pattern of create + view operations
OPSEC Considerations
Project Requirements
- Projects must exist and be accessible by the authenticated user
- Issue types must be valid for the selected project (use
jira listprojectsto verify) - Some projects may restrict who can create issues
- Anonymous issue creation is typically disabled for most projects
Cookie Considerations
- Session cookies can be extracted using tools like SharpChrome
- Cookies expire after a period of inactivity
- Using anonymous access (where permitted) can avoid attribution but may be restricted
Related Commands
- jira listprojects - List projects and their available issue types
- jira addcomment - Add follow-up comments to created issues
- jira attach - Attach files to the created issue
- jira listusers - Enumerate users for targeted @mentions
- jira listissues - View created issues and their details
- jira searchissues - Search for similar issues to mimic