CVE-2015-5463

Improper Authorization in AxiomSL's Axiom java applet module (used for editing uploaded Excel files and associated Java RMI services) 9

Verified by Precogs Threat Research
Last Updated: Nov 21, 2024
Base Score
9.8CRITICAL

Executive Summary

CVE-2015-5463 is a critical severity vulnerability affecting api-security. It is classified as CWE-285. Ensure your systems and dependencies are patched immediately to mitigate exposure risks.

Precogs AI Insight

"AxiomSL's Axiom Java applet module contains a directory traversal or arbitrary file upload vulnerability. Attackers exploit unvalidated input during Excel file editing or RMI service interaction to upload malicious files (like JSP shells) to the server. Precogs Application Security Module tracks untrusted input to file-system sinks."

Exploit Probability (EPSS)
Low (1.0%)
Public POC
Available
Exploit Probability
High (84%)
Public POC
Available
Affected Assets
api securityCWE-285

What is this vulnerability?

CVE-2015-5463 is categorized as a critical Improper Authorization flaw with a CVSS base score of 9.8. Based on our vulnerability intelligence, this issue occurs when the application fails to securely handle untrusted data boundaries.

AxiomSL's Axiom java applet module (used for editing uploaded Excel files and associated Java RMI services) 9.5.3 and earlier allows remote attackers to (1) access data of other basic users through arbitrary SQL commands, (2) perform a horizontal and vertical privilege escalation, (3) cause a Denial of Service on global application, or (4) write/read/delete arbitrary files on server hosting the application.

This architectural defect enables adversaries to bypass intended security controls, directly manipulating the application's execution state or data layer. Immediate strategic intervention is required.

Risk Assessment

MetricValue
CVSS Base Score9.8 (CRITICAL)
Vector StringCVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
PublishedApril 3, 2019
Last ModifiedNovember 21, 2024
Related CWEsCWE-285

Impact on Systems

Unauthorized Data Access: Attackers can bypass authorization controls to access other users' data or administrative endpoints.

Account Takeover: Broken authentication or authorization may enable full account compromise without valid credentials.

API Abuse: Exploiting this vulnerability enables mass data harvesting or destructive operations through unprotected API endpoints.

How to Fix and Mitigate CVE-2015-5463

  1. Apply Vendor Patches: Upgrade affected components to their latest, non-vulnerable versions immediately.
  2. Implement Input Validation: Ensure all user-supplied data is validated, sanitized, and type-checked before processing.
  3. Deploy Runtime Protection: Use Precogs continuous monitoring to detect exploitation attempts in real time.
  4. Audit Dependencies: Review and update all third-party libraries and transitive dependencies.

Defending with Precogs AI

AxiomSL's Axiom Java applet module contains a directory traversal or arbitrary file upload vulnerability. Attackers exploit unvalidated input during Excel file editing or RMI service interaction to upload malicious files (like JSP shells) to the server. Precogs Application Security Module tracks untrusted input to file-system sinks.

Use Precogs to continuously scan your codebase, binaries, APIs, and infrastructure for this vulnerability class and related attack patterns. Our AI-powered detection engine combines static analysis with threat intelligence to identify exploitable weaknesses before attackers do.

Start scanning with Precogs →

Vulnerability Code Signature

Attack Data Flow

StageDetail
SourceAPI Endpoint (REST/GraphQL)
VectorMissing or flawed authorization checks on the requested resource
SinkDirect interaction with database or internal microservice
ImpactUnauthorized data access, BOLA/IDOR, Account Takeover

Vulnerable Code Pattern

// ❌ VULNERABLE: Missing Authorization (BOLA)
app.get('/api/users/:id/data', async (req, res) => {
  const userId = req.params.id;
  // Taint sink: fetches data for requested ID without verifying ownership
  const data = await db.getUserData(userId);
  res.json(data);
});

Secure Code Pattern

// ✅ SECURE: Strict Resource Authorization
app.get('/api/users/:id/data', requireAuth, async (req, res) => {
  const requestedId = req.params.id;
  const authenticatedId = req.user.id;
  
  // Sanitized validation: check ownership
  if (requestedId !== authenticatedId && !req.user.isAdmin) {
    return res.status(403).json({ error: "Unauthorized access" });
  }
  
  const data = await db.getUserData(requestedId);
  res.json(data);
});

How Precogs Detects This

Precogs API Security Engine comprehensively audits all exposed endpoints to guarantee strict session validation and resource authorization.\n

Related Vulnerabilitiesvia CWE-285

CVE-2026-3310510 CRITICAL

Improper Authorization in Improper authorization in Microsoft Azure Kubernetes Service allows an unauthorized attacker to elevate privileges over a network

CWE-285CWE-863
CVE-2026-340515.4 MEDIUM

Broken Access Control in OpenEMR Import/Export functionality before 8.0.0.3. Unauthorized users can perform direct requests to trigger data extraction and manipulation despite UI restrictions.

CWE-285
CVE-2026-340567.7 HIGH

Broken Access Control in OpenEMR up to 8.0.0.3 allows low-privilege users to view and download eRx error logs. This flaw compromises confidentiality by exposing sensitive patient information.

CWE-285
CVE-2026-331869.1 CRITICAL

gRPC-Go is the Go language implementation of gRPC.

CWE-285
CVE-2026-318368.1 HIGH

Checkmate is an open-source, self-hosted tool designed to track and monitor server hardware, uptime, response times, and incidents in real-time with beautiful visualizations.

CWE-269CWE-285
CVE-2026-318690 UNKNOWN

Discourse is an open-source discussion platform.

CWE-200CWE-285CWE-639

Is your system affected?

Precogs AI detects CVE-2015-5463 in compiled binaries, LLMs, and application layers — even without source code access.