Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2025-68703

CVE-2025-68703: Jervis Library Weak Encryption Vulnerability

CVE-2025-68703 is a weak encryption vulnerability in Jervis library for Jenkins where the same password generates identical encryption keys. This post covers the technical details, affected versions, and mitigation steps.

Updated: January 22, 2026

CVE-2025-68703 Overview

CVE-2025-68703 is a weak cryptographic key derivation vulnerability affecting Jervis, a library for Job DSL plugin scripts and shared Jenkins pipeline libraries. Prior to version 2.2, the encryption implementation derives the salt directly from sha256Sum(passphrase), which means that two encryption operations using the same password will produce identical derived keys. This cryptographic weakness significantly undermines the security of encrypted data within Jenkins pipelines and could allow attackers to perform cryptanalysis attacks against encrypted secrets.

Critical Impact

Deterministic key derivation allows attackers to identify when the same passphrase is used across multiple encryption operations, potentially enabling rainbow table attacks, key recovery, and exposure of encrypted secrets in Jenkins CI/CD environments.

Affected Products

  • Jervis library versions prior to 2.2
  • Jenkins environments using vulnerable Jervis Job DSL plugin scripts
  • Jenkins pipelines leveraging affected shared libraries

Discovery Timeline

  • 2026-01-13 - CVE CVE-2025-68703 published to NVD
  • 2026-01-13 - Last updated in NVD database

Technical Details for CVE-2025-68703

Vulnerability Analysis

This vulnerability falls under CWE-326 (Inadequate Encryption Strength) and stems from a fundamental cryptographic design flaw in how Jervis handles encryption key derivation. The library's encryption mechanism deterministically computes the salt by applying SHA-256 to the user-provided passphrase. In proper cryptographic implementations, salts should be randomly generated and unique for each encryption operation to prevent pre-computation attacks and ensure that identical plaintexts encrypted with the same key produce different ciphertexts.

When the salt is derived deterministically from the passphrase, it becomes constant for any given password. This eliminates the cryptographic diversity that salts are meant to provide, making the encryption vulnerable to several attack scenarios including rainbow table attacks, known-plaintext analysis, and frequency analysis when the same password protects multiple secrets.

Root Cause

The root cause lies in the cryptographic implementation where sha256Sum(passphrase) is used to derive the salt value. This approach conflates the salt with the key material, violating the cryptographic principle that salts must be random and unique. The deterministic nature means attackers who observe multiple ciphertexts can identify when identical passphrases were used and leverage this information for cryptanalysis.

Attack Vector

The attack vector is network-based, requiring no user interaction or special privileges. An attacker with access to encrypted data within Jenkins pipelines or Job DSL configurations could:

  1. Collect multiple encrypted values protected by the same passphrase
  2. Identify encryption patterns due to the deterministic salt derivation
  3. Perform offline attacks including dictionary attacks optimized by the deterministic key derivation
  4. Potentially recover the passphrase or derive equivalent keys through cryptanalysis

The vulnerability is particularly dangerous in CI/CD environments where secrets management is critical and multiple encrypted values may share the same passphrase. Technical details can be found in the GitHub Security Advisory GHSA-36h5-vrq6-pp34.

Detection Methods for CVE-2025-68703

Indicators of Compromise

  • Presence of Jervis library versions prior to 2.2 in Jenkins plugin directories
  • Jenkins pipeline scripts importing vulnerable Jervis encryption utilities
  • Job DSL configurations utilizing the affected cryptographic functions
  • Unusual access patterns to encrypted secrets or configuration files

Detection Strategies

  • Audit Jenkins environments for Jervis library version using dependency scanning tools
  • Review pipeline code for usage of Jervis encryption methods with static code analysis
  • Monitor for unauthorized access to Jenkins credential stores and encrypted configuration files
  • Implement software composition analysis (SCA) to identify vulnerable library versions

Monitoring Recommendations

  • Configure alerts for Jervis library usage in Jenkins builds and deployments
  • Monitor Jenkins audit logs for bulk access to encrypted secrets
  • Track changes to shared library configurations that reference Jervis encryption utilities
  • Implement continuous monitoring for vulnerable dependency versions across CI/CD infrastructure

How to Mitigate CVE-2025-68703

Immediate Actions Required

  • Upgrade Jervis library to version 2.2 or later immediately across all Jenkins instances
  • Rotate all secrets that were encrypted using vulnerable Jervis versions
  • Audit all Jenkins pipelines and Job DSL scripts for affected encryption usage
  • Review and re-encrypt any credentials that may have been protected with the vulnerable implementation

Patch Information

The vulnerability is fixed in Jervis version 2.2. The fix introduces proper random salt generation for encryption operations, ensuring cryptographic uniqueness. The specific commit addressing this vulnerability can be reviewed at the GitHub Commit. Organizations should update their Jenkins shared libraries and plugin dependencies to incorporate the patched version.

Workarounds

  • If immediate upgrade is not possible, avoid using Jervis encryption functions until patched
  • Implement external secrets management solutions (HashiCorp Vault, AWS Secrets Manager) as an alternative
  • Isolate Jenkins environments using vulnerable Jervis versions from sensitive operations
  • Apply network segmentation to limit access to Jenkins instances with unpatched libraries

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeOther

  • Vendor/TechJenkins

  • SeverityHIGH

  • CVSS Score8.7

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:N/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-326
  • Technical References
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-36h5-vrq6-pp34
  • Related CVEs
  • CVE-2025-27625: Jenkins Open Redirect Vulnerability

  • CVE-2026-33004: Jenkins LoadNinja Information Disclosure

  • CVE-2026-33002: Jenkins Auth Bypass Vulnerability

  • CVE-2026-33001: Jenkins Path Traversal Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English