Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Report generated on: February 07, 2026 at 03:20 UTC

Introduction

Our Commitment to Security

Welcome to the UniDoc Security Hub. At UniDoc, the security of our products is a top priority. We are committed to being transparent with our customers about the security of our UniPDF, UniOffice, and UniHTML libraries. This hub is a key part of that commitment, demonstrating our proactive approach to identifying and addressing security vulnerabilities.

DevSecOps Lifecycle

graph TD
    A[Developer Commits Code] --> B(CI Pipeline Starts);
    subgraph B [Continuous Integration]
        C(Build & Unit Test) --> D{Security Scans};
        subgraph D
            E[SAST Analysis];
            F[Go Package Scan];
            G[Supply Chain Scan];
        end
    end
    D --> H{Vulnerability Found?};
    H -- Yes --> I[Triage & Prioritize];
    I --> J(Remediate Vulnerability);
    J --> A;
    H -- No --> K(Release Secure Product);

Vulnerability Management

graph TD
    A[Discover] --> B(Prioritize);
    B --> C{Remediate};
    C --> D[Verify];
    D --> A;