Commit 20589274 authored by Szilárd Pfeiffer's avatar Szilárd Pfeiffer
Browse files

chore(release): Bump version number to 1.5.0 and update changelog

parent 6ece932b
Loading
Loading
Loading
Loading
+24 −0
Original line number Diff line number Diff line
@@ -2,6 +2,30 @@
Changelog
=========

------------------
1.5.0 - 2026-07-31
------------------

Features
========

-  IKE (``ike``)

   -  Public Keys (``pubkeys``)

      -  add checker for IKEv1 aggressive-mode and IKEv2 EAP-mode server public keys (#183)

   -  Public Key Requests (``pubkeyreq``)

      -  add checker for the certification authority hashes accepted by the IKE server (#183)

Notable fixes
=============

-  IKE (``ike``)

   -  use a cryptographically secure random generator for probe secrets (#183)

------------------
1.4.0 - 2026-07-17
------------------
+6 −0
Original line number Diff line number Diff line
@@ -78,6 +78,12 @@ cryptolyze ike versions example.com
# IKE protocol extension detection
cryptolyze ike extensions example.com

# IKE server public key extraction
cryptolyze ike pubkeys example.com

# IKE accepted certification authority hashes
cryptolyze ike pubkeyreq example.com

# HTTP security headers
cryptolyze http headers example.com

+8 −3
Original line number Diff line number Diff line
Name:           cryptolyzer
Version:        1.4.0
Version:        1.5.0
Release:        1%{?dist}
Summary:        Multi-protocol cryptographic configuration analyzer

@@ -17,7 +17,7 @@ BuildRequires: python3-attrs
BuildRequires:  python3-beautifulsoup4
BuildRequires:  python3-certvalidator
BuildRequires:  python3-colorama
BuildRequires:  python3-cryptoparser >= 1.4.0
BuildRequires:  python3-cryptoparser >= 1.5.0
BuildRequires:  python3-dateutil
%if 0%{?suse_version}
BuildRequires:  python3-dnspython
@@ -45,7 +45,7 @@ Requires: python3-attrs
Requires:       python3-beautifulsoup4
Requires:       python3-certvalidator
Requires:       python3-colorama
Requires:       python3-cryptoparser >= 1.4.0
Requires:       python3-cryptoparser >= 1.5.0
Requires:       python3-dateutil
%if 0%{?suse_version}
Requires:       python3-dnspython
@@ -90,6 +90,11 @@ export SETUPTOOLS_SCM_PRETEND_VERSION=%{version}
%{_bindir}/cryptolyze

%changelog
* Fri Jul 31 2026 Szilárd Pfeiffer <coroner@pfeifferszilard.hu> - 1.5.0-1
- add IKE public keys checker for IKEv1 aggressive-mode and IKEv2 EAP-mode servers (#183)
- add IKE public key request checker for enumerating accepted certification authority hashes (#183)
- use a cryptographically secure random generator for IKE probe secrets (#183)

* Fri Jul 17 2026 Szilárd Pfeiffer <coroner@pfeifferszilard.hu> - 1.4.0-1
- add key exchange completion to the SSH server (#184)
- add certificate request support to the TLS server
+8 −0
Original line number Diff line number Diff line
cryptolyzer (1.5.0) unstable; urgency=low

  * add IKE public keys checker for IKEv1 aggressive-mode and IKEv2 EAP-mode servers (#183)
  * add IKE public key request checker for enumerating accepted certification authority hashes (#183)
  * use a cryptographically secure random generator for IKE probe secrets (#183)

 -- Szilárd Pfeiffer <coroner@pfeifferszilard.hu>  Fri, 31 Jul 2026 00:00:00 +0200

cryptolyzer (1.4.0) unstable; urgency=low

  * add key exchange completion to the SSH server (#184)
+1 −1
Original line number Diff line number Diff line
#!/usr/bin/make -f
export SETUPTOOLS_SCM_PRETEND_VERSION := 1.4.0
export SETUPTOOLS_SCM_PRETEND_VERSION := 1.5.0
export PYBUILD_NAME := cryptolyzer

%:
Loading