CVE-2025-14088
BaseFortify
Publication date: 2025-12-05
Last updated on: 2026-04-29
Assigner: VulDB
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| beijing_kaite_weiye_science_and_technology_co_ltd | jepaas | 7.2.8 |
| beijing_kaite_weiye_science_and_technology_co_ltd | jepaas | * |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-285 | The product does not perform or incorrectly performs an authorization check when an actor attempts to access a resource or perform an action. |
| CWE-266 | A product incorrectly assigns a privilege to a particular actor, creating an unintended sphere of control for that actor. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability in ketr JEPaaS up to version 7.2.8 involves improper authorization caused by manipulation of the Authorization argument in the /je/load file. This flaw allows an attacker to bypass proper authorization checks remotely.
How can this vulnerability impact me? :
The vulnerability can allow unauthorized remote attackers to gain access or perform actions they should not be permitted to, potentially leading to data exposure, modification, or other unauthorized activities within the affected system.
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
The provided resources do not explicitly discuss the impact of this vulnerability on compliance with common standards and regulations such as GDPR or HIPAA. However, since the vulnerability allows unauthorized access to sensitive user data including mobile phone numbers and verification codes, it potentially compromises confidentiality and could lead to violations of data protection regulations that require safeguarding personal information. No direct statements about compliance impact or regulatory consequences are given. [1, 2, 3]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by monitoring for suspicious POST requests to the endpoint /je/load with manipulated Authorization headers. Specifically, look for POST requests to /je/load?_dc=1763085403140 containing headers with Authorization tokens and form data parameters such as funcCode=JE_CORE_RANDOMNUM and funcId=IFXrAAzS9y2dRRxfGPF. Network traffic inspection tools like Wireshark or command-line tools like curl or tcpdump can be used to capture and analyze such requests. For example, using curl to simulate or detect suspicious requests: curl -X POST 'https://your.jepaas.instance/je/load?_dc=1763085403140' -H 'Authorization: <token>' -d 'funcCode=JE_CORE_RANDOMNUM&funcId=IFXrAAzS9y2dRRxfGPF'. Additionally, monitoring logs for unauthorized access attempts or unusual privilege escalations related to the /je/load endpoint can help detect exploitation attempts. [1]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include restricting access to the /je/load endpoint to trusted users only, monitoring and blocking suspicious Authorization header manipulations, and applying network-level controls such as firewall rules to limit exposure. Since no official patches or vendor mitigations are available, consider replacing or upgrading the affected JEPaaS platform versions (up to 7.2.8) to a secure version if available. Additionally, closely monitor for exploitation attempts and consider implementing additional authentication and authorization checks at the application or network level to reduce risk. [2]