Fixed quadratic complexity in OID/RELATIVE-OID decoders (CVE-2026-59885) Limited BER/CER/DER long-form tag IDs to 20 octets (CVE-2026-59884) Fixed excessive resource use in Real.__float__() (CVE-2026-59886) Resolves: RHEL-211095
28 lines
653 B
YAML
28 lines
653 B
YAML
---
|
|
- hosts: localhost
|
|
tags:
|
|
- classic
|
|
pre_tasks:
|
|
- import_role:
|
|
name: standard-test-source
|
|
vars:
|
|
flatten: false
|
|
|
|
roles:
|
|
- role: standard-test-basic
|
|
required_packages:
|
|
- python3-pyasn1
|
|
- python3-pyasn1-modules
|
|
tests:
|
|
- unittests-pyasn1:
|
|
# Must match the unpacked tarball directory name from this SRPM (see sources / spec Version).
|
|
dir: "source/pyasn1-0.6.4"
|
|
run: >-
|
|
rm -rf pyasn1 &&
|
|
python3 -m tests
|
|
- unittests-pyasn1-modules:
|
|
dir: "source/pyasn1-modules-0.4.2"
|
|
run: >-
|
|
rm -rf pyasn1_modules &&
|
|
python3 -m tests
|