If this project saved you some time or made your day a little easier, a star would mean a lot — it helps others find it too.
A Java toolkit for working with ZUGFeRD / Factur-X hybrid invoices: detect the flavor of any hybrid PDF, extract the embedded XML and supporting attachments, and validate the carrier-side specification rules — including PDF/A-3 conformance via veraPDF.
XML-side business rules (cardinalities, EN 16931 rules, code lists ...) are out of scope for this project; use phive-rules-zugferd for those.
Per-version requirements analysis used to design this library lives under
docs/requirements/. See
docs/requirements/comparison.md for a cross-version overview
of every PDF carrier rule from ZUGFeRD 1.0 (2014) through Factur-X 1.09 / ZUGFeRD 2.5 (2026-06-10).
The detection table covers every published release since 2014:
| ZUGFeRD | Factur-X | XMP namespace URI | Embedded XML name |
|---|---|---|---|
| 1.0 | n/a | urn:ferd:pdfa:CrossIndustryDocument:invoice:1p0# |
ZUGFeRD-invoice.xml |
| 2.0.1 | n/a | urn:zugferd:pdfa:CrossIndustryDocument:invoice:2p0# |
zugferd-invoice.xml |
| 2.1 | 1.0.05 | urn:factur-x:pdfa:CrossIndustryDocument:invoice:1p0# |
factur-x.xml |
| 2.1 | 1.0.05 | urn:zugferd:pdfa:CrossIndustryDocument:invoice:2p0# (legacy) |
zugferd-invoice.xml |
| 2.2 | 1.0.06 | urn:factur-x:pdfa:CrossIndustryDocument:invoice:1p0# |
factur-x.xml / xrechnung.xml |
| 2.2 | 1.0.06 | urn:zugferd:pdfa:CrossIndustryDocument:invoice:1p0# (legacy) |
zugferd-invoice.xml |
| 2.3 | 1.0.07 | urn:factur-x:pdfa:CrossIndustryDocument:invoice:1p0# |
factur-x.xml / xrechnung.xml |
| 2.3.2 | 1.07.2 | urn:factur-x:pdfa:CrossIndustryDocument:invoice:1p0# |
factur-x.xml / xrechnung.xml |
| 2.3.3 | 1.07.3 | urn:factur-x:pdfa:CrossIndustryDocument:invoice:1p0# |
factur-x.xml / xrechnung.xml |
| 2.4 | 1.08 | urn:factur-x:pdfa:CrossIndustryDocument:invoice:1p0# |
factur-x.xml / xrechnung.xml |
| 2.5 | 1.09 | urn:factur-x:pdfa:CrossIndustryDocument:invoice:1p0# |
factur-x.xml / xrechnung.xml |
Kaltblut is German for the family of heavy draft horse breeds — the strongest and steadiest of the Zugpferde. The name is a nod to ZUGFeRD, which German speakers hear as Zugpferd ("draft horse"). Kaltblut picks the most workmanlike of them: built to pull heavy loads calmly and reliably, much like this toolkit aims to handle ZUGFeRD invoices.
As a bonus, kaltblütig in everyday German also means "cool-headed" — a useful trait for any library dealing with tax-relevant invoice processing
| Tier | Concern | Status |
|---|---|---|
| 1 | Detection & metadata: flavor, profile, XMP fields, embedded-file name, /AFRelationship |
implemented |
| 2 | Extraction: invoice XML, named attachments, full attachment list | implemented |
| 3 | Validation: BR-HYBRID-* business rules, PDF/A-3 (via veraPDF SPI) | implemented |
| 4 | Creation / embedding XML to produce hybrid PDFs | not in scope |
| — | XML business-rules validation (EN 16931, KoSIT XRechnung) | use phive-rules-zugferd |
This is a multi-module Maven project:
kaltblut-core— the library. Source abstraction, model, inspector, extractor, validator. Classes live undercom.helger.kaltblut.core.*. Emits tracing spans through the vendor-neutral ph-telemetry facade — no OpenTelemetry dependency (see Telemetry).kaltblut-testfiles— shared test fixtures (sample PDFs + classpath-resource locator).kaltblut-verapdf— PDF/A-3 validation adapter that wires veraPDF to theIPdfA3ValidatorSPISPI. Optional; pull it in only if you need PDF/A-3 conformance checks.kaltblut-cli— the command-line client (picocli). Builds a standalone fat JAR.
All public entry points take a source. Use one of the HybridSource factories:
import com.helger.kaltblut.core.source.HybridSource;
import com.helger.kaltblut.core.source.IHybridSource;
IHybridSource s1 = HybridSource.fromFile (new File ("invoice.pdf")); // lazy + cached
IHybridSource s2 = HybridSource.fromPath (Path.of ("invoice.pdf")); // lazy + cached
IHybridSource s3 = HybridSource.fromBytes (aPdfBytes); // wraps array
IHybridSource s4 = HybridSource.fromByteBuffer (aBuffer); // copies
IHybridSource s5 = HybridSource.fromUrl (new URL ("https://example.com/invoice.pdf")); // http/https only, with timeouts
IHybridSource s6 = HybridSource.fromInputStream (aIS); // reads now, closes
IHybridSource s7 = HybridSource.fromClasspath ("samples/invoice.pdf"); // resource pathIHybridSource is byte-array-centric: the contract is byte[] getBytes() throws IOException,
plus long getSize() and String getName() as diagnostic hints. PDFBox 3 needs random access
and every Kaltblut operation eventually needs the complete PDF in memory, so distinguishing
single-read from multi-read inputs added API surface without value. Implementations may read
lazily on first call and cache the result; callers must not mutate the returned array.
HybridSource.fromUrl only accepts http and https URLs and applies sensible connect / read
timeouts (defaults 10 s / 60 s); other schemes (file:, jar:, ftp:, ...) are refused to
prevent accidental SSRF / local-file-read when forwarding caller-supplied URLs.
Every Tier-1/2/3 entry point accepts an optional HybridLimits (defaulting to
HybridLimits.DEFAULTS) that caps:
- the input PDF size (default 64 MiB),
- per-attachment inflated size (default 32 MiB),
- aggregate attachment size (default 128 MiB),
- attachment count (default 100).
Use HybridLimits.UNLIMITED to disable, or build a custom instance with the immutable
withMaxPdfBytes(...) / withMaxAttachmentBytes(...) / ... witherers. Reading past a limit
throws IOException rather than letting the JVM OOM.
The model classes in com.helger.kaltblut.core.model are immutable value objects:
EZugferdFlavor— namespace-URI fingerprint of the spec generation.EZugferdProfile—MINIMUM,BASIC_WL,BASIC,COMFORT,EN_16931,EXTENDED,XRECHNUNG.EAFRelationship—Data,Source,Alternative,Supplement,Unspecified.EZugferdCountry—DE,FR,OTHER(drives country-specific BR-HYBRID rules).HybridMetadata— single snapshot of XMP fields +/AFdata.HybridAttachment— name, MIME type, AFRelationship, ModDate, bytes, invoice-XML flag.
import com.helger.kaltblut.core.inspect.HybridInspector;
import com.helger.kaltblut.core.model.EZugferdFlavor;
import com.helger.kaltblut.core.model.HybridMetadata;
IHybridSource aSource = HybridSource.fromFile (new File ("invoice.pdf"));
if (HybridInspector.isHybridInvoice (aSource))
{
EZugferdFlavor eFlavor = HybridInspector.detectFlavor (aSource);
HybridMetadata aMeta = HybridInspector.readMetadata (aSource);
System.out.println ("Flavor: " + aMeta.getFlavor ());
System.out.println ("Profile: " + aMeta.getProfile ());
System.out.println ("Embedded file: " + aMeta.getEmbeddedFileName ());
System.out.println ("AFRelationship: " + aMeta.getAFRelationship ());
}import com.helger.kaltblut.core.extract.HybridExtractor;
import com.helger.kaltblut.core.model.HybridAttachment;
byte [] aXmlBytes = HybridExtractor.extractInvoiceXml (aSource);
List <HybridAttachment> aAttachments = HybridExtractor.listAttachments (aSource);
byte [] aExcel = HybridExtractor.extractAttachment (aSource, "list_of_measurement.xlsx");Security note: the bytes returned by extractInvoiceXml / extractAttachment come from a
potentially untrusted PDF. If you parse the XML yourself, configure your XML processor to disable
external entities, DTDs, and XInclude (i.e. FEATURE_SECURE_PROCESSING=true plus
disallow-doctype-decl=true), or use a library — such as phive-rules-zugferd — that does so
by default. Otherwise a malicious invoice can XXE-read local files or trigger SSRF.
import com.helger.kaltblut.core.model.EZugferdCountry;
import com.helger.kaltblut.core.validate.HybridFinding;
import com.helger.kaltblut.core.validate.HybridValidator;
import com.helger.kaltblut.core.validate.HybridValidationLayer;
import com.helger.kaltblut.core.validate.HybridValidationResult;
HybridValidator aValidator = new HybridValidator ();
aValidator.getSettings ()
.setCountry (EZugferdCountry.DE)
.setCheckPdfA3 (true)
.setApplyDePdfADowngrade (true);
HybridValidationResult aResult = aValidator.validate (aSource);
// Per-layer reporting: one BR_HYBRID layer + (when enabled) one PDF_A3 layer, each
// carrying its own findings and wall-clock duration.
for (HybridValidationLayer aLayer : aResult.getAllLayers ())
{
System.out.println (aLayer.getDisplayName () + " - " + aLayer.getDuration ().toMillis () + "ms");
for (HybridFinding aF : aLayer.getAllFindings ())
System.out.println (" " + aF);
}
// Aggregate predicates still work across all layers.
if (!aResult.isValid ())
System.err.println ("Document considered invalid");PDF/A-3 validation runs via the IPdfA3ValidatorSPI SPI. Add kaltblut-verapdf to the classpath
to enable veraPDF; without it validate() records a single INFORMATION finding noting that
PDF/A-3 conformance was not checked.
Build the standalone fat JAR and run it:
mvn clean package
java -jar kaltblut-cli/target/kaltblut-cli-full.jar [subcommand] [options] <files...>Subcommands:
| Subcommand | Description |
|---|---|
inspect |
Print flavor, profile, XMP fields, embedded-file name, and /AFRelationship. |
extract |
Write the embedded invoice XML to disk. |
attachments |
List all embedded files (invoice XML + supporting documents). |
validate |
Run BR-HYBRID-* business rules and PDF/A-3 validation. Exit code 0 if no ERROR findings. |
Common options:
| Option | Subcommand | Description | Default |
|---|---|---|---|
-o, --output-dir |
extract |
Directory to write XML files to | . |
-s, --suffix |
extract |
Output filename suffix | -invoice |
-c, --country |
validate |
DE, FR, or OTHER — drives country-specific rules |
OTHER |
--no-pdfa |
validate |
Skip PDF/A-3 validation via the SPI | off |
--no-de-pdfa-downgrade |
validate |
Disable the BR-FX-DE-03 downgrade for DE↔DE invoices | off |
-h, --help |
all | Show help | |
-V, --version |
all | Show version |
Examples:
# Detect the flavor of one or more PDFs
java -jar kaltblut-cli-full.jar inspect invoice.pdf another-invoice.pdf
# Extract the invoice XML to /tmp/out/
java -jar kaltblut-cli-full.jar extract -o /tmp/out invoice.pdf
# List all embedded files in a PDF
java -jar kaltblut-cli-full.jar attachments invoice.pdf
# Validate a DE↔DE invoice (PDF/A-3 errors downgraded per BR-FX-DE-03)
java -jar kaltblut-cli-full.jar validate -c DE invoice.pdf
# Validate without PDF/A-3 (fast path; only the BR-HYBRID-* rules run)
java -jar kaltblut-cli-full.jar validate --no-pdfa invoice.pdfRequires Java 17+ and Maven.
mvn clean packageThe build produces (replacing x.y.z with the effective version):
kaltblut-core/target/kaltblut-core-x.y.z-SNAPSHOT.jar— core library JAR.kaltblut-verapdf/target/kaltblut-verapdf-x.y.z-SNAPSHOT.jar— veraPDF adapter JAR.kaltblut-cli/target/kaltblut-cli-x.y.z-SNAPSHOT.jar— CLI library JAR.kaltblut-cli/target/kaltblut-cli-full.jar— standalone executable fat JAR (all dependencies bundled).
<!-- Core library: detection + extraction + BR-HYBRID validation -->
<dependency>
<groupId>com.helger.kaltblut</groupId>
<artifactId>kaltblut-core</artifactId>
<version>x.y.z</version>
</dependency>
<!-- Optional: veraPDF-backed PDF/A-3 validation -->
<dependency>
<groupId>com.helger.kaltblut</groupId>
<artifactId>kaltblut-verapdf</artifactId>
<version>x.y.z</version>
</dependency>kaltblut-core transitively pulls the com.helger.telemetry:ph-telemetry facade only; no
OpenTelemetry ends up on your classpath unless you add a binding yourself (see
Telemetry).
Kaltblut is instrumented for distributed tracing via the vendor-neutral ph-telemetry facade. The library modules depend only on the facade, not on OpenTelemetry: when no tracer is registered every span is a cheap no-op, so there is zero runtime cost and zero extra dependency for callers that do not want telemetry.
The public entry points emit spans that nest into a single trace (a caller-side waterfall):
| Span | Emitted by | Kind |
|---|---|---|
kaltblut.inspect |
HybridInspector.readMetadata |
INTERNAL |
kaltblut.extract (operation attribute) |
HybridExtractor (all three funnels) |
INTERNAL |
kaltblut.validate + kaltblut.validate.brhybrid |
HybridValidator.validate |
INTERNAL |
kaltblut.source.read |
reading the raw PDF bytes | CLIENT |
kaltblut.pdf.open |
PDFBox parse (Loader.loadPDF) |
INTERNAL |
kaltblut.xmp.parse |
XMP metadata parse | INTERNAL |
kaltblut.attachments.extract |
embedded-file extraction | INTERNAL |
kaltblut.pdfa3.validate + .parse / .check |
kaltblut-verapdf PDF/A-3 run |
CLIENT |
Spans carry attributes such as kaltblut.source.size_bytes, kaltblut.flavor,
kaltblut.profile, kaltblut.attachment.count, kaltblut.pdfa.flavour,
kaltblut.pdfa.compliant, and kaltblut.findings.total.
To actually export spans, an application registers a ph-telemetry tracer SPI and installs an
OpenTelemetry SDK. The kaltblut-cli module does exactly this — add
com.helger.telemetry:ph-telemetry-otel plus the OpenTelemetry SDK/exporter to your own
deployment module, register your OtelTelemetryTracerSPI subclass via
META-INF/services/com.helger.telemetry.ITelemetryTracerSPI, and install the SDK once at startup
(before the first span, since the binding caches the resolved tracer).
The CLI keeps telemetry opt-in: it installs the SDK only when -Dotel.enabled=true (or the
OTEL_ENABLED=true environment variable) is set. All endpoint / exporter / sampling configuration
comes from the standard OpenTelemetry environment variables:
# Export CLI traces to an OTLP collector (e.g. grafana/otel-lgtm on localhost)
OTEL_ENABLED=true \
OTEL_SERVICE_NAME=kaltblut \
OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4317 \
java -jar kaltblut-cli-full.jar validate invoice.pdfTo plug in a different PDF/A-3 validator (or none at all), implement
com.helger.kaltblut.core.validate.IPdfA3ValidatorSPI and register the class via
META-INF/services/com.helger.kaltblut.core.validate.IPdfA3ValidatorSPI. The validator is
discovered via ServiceLoader; only the first implementation found is used.
Apache License, Version 2.0.
v0.9.4 - 2026-07-15
- Security hardening of the untrusted-PDF parsing paths:
- The XMP
/Metadatastream is now read through the bounded reader and capped atHybridLimits.getMaxPdfBytes(), closing a decompression-bomb vector that previously bypassed the PDF-size limit. - The embedded-files name tree is traversed with a maximum recursion depth, so a cyclic or
deeply nested tree raises a clean
IOExceptioninstead of aStackOverflowError. - Behaviour change: when veraPDF throws while validating an untrusted PDF, the PDF/A-3 layer
now emits an
ERROR(fail-closed) instead of aWARNING, so such a document is reported as invalid rather than valid; the finding no longer echoes the raw exception message. HybridAttachmentnow defensively copies the payload in its constructor, matching the@Immutablecontract already honoured bygetBytes().- Attacker-controlled strings (embedded-file names, XMP values) are stripped of control characters before being written to logs and to the CLI console, preventing log / terminal escape-sequence injection.
- The CLI
extractsubcommand writes the output XML withNOFOLLOW_LINKS, refusing to write through a pre-planted symlink in the output directory. - Clarified the
HybridSource.fromUrlJavadoc: the scheme check does not prevent host-level SSRF or re-validate HTTP redirects — host / IP allow-listing remains the caller's responsibility.
- The XMP
v0.9.3 - 2026-07-02
- Added distributed-tracing instrumentation via the vendor-neutral
ph-telemetry facade.
kaltblut-coreandkaltblut-verapdfemit spans around the usual hotspots (source read, PDFBox parse, XMP parse, attachment extraction, BR-HYBRID + PDF/A-3 validation) and degrade to no-ops when no tracer is registered — no OpenTelemetry dependency is added to the library. Thekaltblut-climodule ships an opt-in OpenTelemetry binding (-Dotel.enabled=true/OTEL_ENABLED=true). See Telemetry.
v0.9.2 - 2026-06-10
- Added support for ZUGFeRD v2.5
v0.9.1 - 2026-05-13
- Validation: the result of
HybridValidator.validateis now structured as a list ofHybridValidationLayers (BR_HYBRID+ optionalPDF_A3, identified byEHybridValidationLayerKind) instead of a flat finding list. Each layer carries its own findings and wall-clockDuration. Aggregate predicates onHybridValidationResultcontinue to work across all layers. - Breaking:
ValidationResultrenamed toHybridValidationResult, and the new per-layer container isHybridValidationLayer. - Breaking:
EHybridSeverity.FATALrenamed toERROR. Predicate methods follow:isFatal()→isError(),hasFatal()→hasError(),hasFatalRule()→hasErrorRule(). EHybridSeverityentries now carry the equivalent ph-commonsEErrorLevelviagetErrorLevel(), so consumers mapping findings into ph-commons error infrastructure no longer need a translation table.EZugferdCountrynow implementsIHasID<String>withgetID()and the staticgetFromIDOrNull(String)factory, matching the style of the other ph-commons-based enums.- CLI
validatesubcommand prints one line per layer with its kind, finding count, and duration, then the layer's findings indented underneath.
v0.9.0 - 2026-05-13
- Detection: recognises all five XMP extension-schema namespaces seen across ZUGFeRD 1.0, 2.0.1, 2.1, 2.2, 2.3, 2.3.2, 2.3.3 and 2.4.
- Extraction: invoice XML, named attachments, full attachment list including Modification Date and MIME type.
- Validation: BR-HYBRID-01 through BR-HYBRID-15 (and the BR-HYBRID-DE-/-FR- country
variants) plus PDF/A-3 conformance via the
IPdfA3ValidatorSPISPI implemented bykaltblut-verapdfusing veraPDF (-jakartaartifact line, JAXB 4.x only). - Command-line client with subcommands
inspect,extract,attachments,validate.