From dfb783d7ba187187453b44f316a849b789c4f7e6 Mon Sep 17 00:00:00 2001 From: Soner Tari Date: Sun, 18 Feb 2024 15:38:46 +0300 Subject: [PATCH] Release v0.9.5 Bump version to 0.9.5 Update copyright year to 2024 Update NEWS --- LICENSE | 2 +- NEWS.md | 21 +++++++++++++++++++++ README.md | 2 +- src/filter.c | 2 +- src/filter.h | 2 +- src/main.c | 4 ++-- src/opts.c | 2 +- src/opts.h | 2 +- src/privsep.c | 2 +- src/protoautossl.c | 2 +- src/protoautossl.h | 2 +- src/protohttp.c | 2 +- src/protohttp.h | 2 +- src/protopassthrough.c | 2 +- src/protopassthrough.h | 2 +- src/protopop3.c | 2 +- src/protopop3.h | 2 +- src/protosmtp.c | 2 +- src/protosmtp.h | 2 +- src/protossl.c | 2 +- src/protossl.h | 2 +- src/prototcp.c | 2 +- src/prototcp.h | 2 +- src/pxyconn.c | 2 +- src/pxyconn.h | 2 +- src/pxythr.c | 2 +- src/pxythr.h | 2 +- src/pxythrmgr.c | 2 +- src/pxythrmgr.h | 2 +- src/sslproxy.1 | 4 ++-- src/sslproxy.conf | 2 +- src/sslproxy.conf.5 | 4 ++-- tests/check/filter.t.c | 2 +- tests/check/filterstruct.t.c | 2 +- tests/check/opts.t.c | 2 +- tests/check/proto.t.c | 2 +- tests/check/util.t.c | 2 +- tests/testproxy/lp/main.c | 2 +- tests/testproxy/lp/opts.c | 2 +- tests/testproxy/lp/prototcp.c | 2 +- tests/testproxy/lp/prototcp.h | 2 +- tests/testproxy/lp/pxyconn.c | 2 +- tests/testproxy/lp/pxyconn.h | 2 +- tests/testproxy/lp/pxythr.c | 2 +- tests/testproxy/lp/pxythr.h | 2 +- tests/testproxy/lp/pxythrmgr.c | 2 +- tests/testproxy/sslproxy.conf | 2 +- tests/testproxy/sslproxy_no_tls11.conf | 2 +- tests/testproxy/sslproxy_no_tls13.conf | 2 +- tests/testproxy/sslproxy_openssl3.conf | 2 +- 50 files changed, 73 insertions(+), 52 deletions(-) diff --git a/LICENSE b/LICENSE index 44e9ba4..14092a7 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ BSD 2-Clause License -Copyright (c) 2017-2022, Soner Tari. +Copyright (c) 2017-2024, Soner Tari. Copyright (c) 2009-2019, Daniel Roethlisberger and contributors. All rights reserved. diff --git a/NEWS.md b/NEWS.md index b2387f1..a353c46 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,26 @@ +### SSLproxy 0.9.5 2024-02-18 + +- Fix possible double free of host and serv variables, thanks to @disaykin +- Fix possible integer overflow, thanks to @disaykin +- Close fds only once, thanks to @disaykin +- Fix memory leak, thanks to @disaykin +- Handle ftell error, thanks to @disaykin +- Fix mismatched call arguments, thanks to @disaykin +- Fix memory leak in case of cert key mismatch, thanks to @disaykin +- Fix file descriptor leak, thanks to @disaykin +- Handle partial write, thanks to @disaykin +- Handle return value of gmtime(), thanks to @disaykin +- Fix double free bugs, thanks to @disaykin + - Bugs found by Svace static analyzer +- Fix possible segfault in proto smtp in split mode +- Fix retval of privsep_server_opensock_verify(), thanks to @Qbog +- Fix header-size calculation in IPv6 packet mirroring, thanks to @matoro +- Fix e2e tests with openssl 3 +- Replace deprecated fail_unless() with ck_assert_msg() in unit tests + + ### SSLproxy 0.9.4 2022-12-26 - Fix byte order for ports in mirror trafic, thanks to piolug93. diff --git a/README.md b/README.md index b8f1ea8..2401f55 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # SSLproxy - transparent SSL/TLS proxy for decrypting and diverting network traffic to other programs for deep SSL inspection [![Build Status](https://travis-ci.com/sonertari/SSLproxy.svg?branch=master)](https://app.travis-ci.com/github/sonertari/SSLproxy) -Copyright (C) 2017-2022, [Soner Tari](mailto:sonertari@gmail.com). +Copyright (C) 2017-2024, [Soner Tari](mailto:sonertari@gmail.com). https://github.com/sonertari/SSLproxy Copyright (C) 2009-2019, [Daniel Roethlisberger](//daniel.roe.ch/). diff --git a/src/filter.c b/src/filter.c index 2477c54..e0a3b2b 100644 --- a/src/filter.c +++ b/src/filter.c @@ -1,7 +1,7 @@ /*- * SSLproxy * - * Copyright (c) 2017-2022, Soner Tari . + * Copyright (c) 2017-2024, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/filter.h b/src/filter.h index d577e1c..e065e96 100644 --- a/src/filter.h +++ b/src/filter.h @@ -1,7 +1,7 @@ /*- * SSLproxy * - * Copyright (c) 2017-2022, Soner Tari . + * Copyright (c) 2017-2024, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/main.c b/src/main.c index 98ec74f..62b0559 100644 --- a/src/main.c +++ b/src/main.c @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2022, Soner Tari . + * Copyright (c) 2017-2024, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -99,7 +99,7 @@ main_version(void) fprintf(stderr, "---------------------------------------" "---------------------------------------\n"); } - fprintf(stderr, "Copyright (c) 2017-2022, Soner Tari \n"); + fprintf(stderr, "Copyright (c) 2017-2024, Soner Tari \n"); fprintf(stderr, "https://github.com/sonertari/SSLproxy\n"); fprintf(stderr, "Copyright (c) 2009-2019, " "Daniel Roethlisberger \n"); diff --git a/src/opts.c b/src/opts.c index d711d3b..0d123a5 100644 --- a/src/opts.c +++ b/src/opts.c @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2022, Soner Tari . + * Copyright (c) 2017-2024, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/opts.h b/src/opts.h index 5a30a8a..e5d713e 100644 --- a/src/opts.h +++ b/src/opts.h @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2022, Soner Tari . + * Copyright (c) 2017-2024, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/privsep.c b/src/privsep.c index abccfbb..d617f6b 100644 --- a/src/privsep.c +++ b/src/privsep.c @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2022, Soner Tari . + * Copyright (c) 2017-2024, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/protoautossl.c b/src/protoautossl.c index 5f19804..e96fe48 100644 --- a/src/protoautossl.c +++ b/src/protoautossl.c @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2022, Soner Tari . + * Copyright (c) 2017-2024, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/protoautossl.h b/src/protoautossl.h index b589d6d..0696e9e 100644 --- a/src/protoautossl.h +++ b/src/protoautossl.h @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2022, Soner Tari . + * Copyright (c) 2017-2024, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/protohttp.c b/src/protohttp.c index c504c6c..0a51c03 100644 --- a/src/protohttp.c +++ b/src/protohttp.c @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2022, Soner Tari . + * Copyright (c) 2017-2024, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/protohttp.h b/src/protohttp.h index 52ff29b..20e27ae 100644 --- a/src/protohttp.h +++ b/src/protohttp.h @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2022, Soner Tari . + * Copyright (c) 2017-2024, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/protopassthrough.c b/src/protopassthrough.c index da039bc..ad0d822 100644 --- a/src/protopassthrough.c +++ b/src/protopassthrough.c @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2022, Soner Tari . + * Copyright (c) 2017-2024, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/protopassthrough.h b/src/protopassthrough.h index c3311ee..e5ded0d 100644 --- a/src/protopassthrough.h +++ b/src/protopassthrough.h @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2022, Soner Tari . + * Copyright (c) 2017-2024, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/protopop3.c b/src/protopop3.c index 15fdd93..c3f1e9e 100644 --- a/src/protopop3.c +++ b/src/protopop3.c @@ -1,7 +1,7 @@ /*- * SSLproxy - transparent SSL/TLS proxy * - * Copyright (c) 2017-2022, Soner Tari . + * Copyright (c) 2017-2024, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/protopop3.h b/src/protopop3.h index 22fd5f6..924c354 100644 --- a/src/protopop3.h +++ b/src/protopop3.h @@ -1,7 +1,7 @@ /*- * SSLproxy - transparent SSL/TLS proxy * - * Copyright (c) 2017-2022, Soner Tari . + * Copyright (c) 2017-2024, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/protosmtp.c b/src/protosmtp.c index 181bf15..0c34189 100644 --- a/src/protosmtp.c +++ b/src/protosmtp.c @@ -1,7 +1,7 @@ /*- * SSLproxy - transparent SSL/TLS proxy * - * Copyright (c) 2017-2022, Soner Tari . + * Copyright (c) 2017-2024, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/protosmtp.h b/src/protosmtp.h index d653d39..1607e30 100644 --- a/src/protosmtp.h +++ b/src/protosmtp.h @@ -1,7 +1,7 @@ /*- * SSLproxy - transparent SSL/TLS proxy * - * Copyright (c) 2017-2022, Soner Tari . + * Copyright (c) 2017-2024, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/protossl.c b/src/protossl.c index 76a0044..6baed9d 100644 --- a/src/protossl.c +++ b/src/protossl.c @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2022, Soner Tari . + * Copyright (c) 2017-2024, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/protossl.h b/src/protossl.h index 1289bc4..a6bb3bb 100644 --- a/src/protossl.h +++ b/src/protossl.h @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2022, Soner Tari . + * Copyright (c) 2017-2024, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/prototcp.c b/src/prototcp.c index 8206c2c..ec0f8e9 100644 --- a/src/prototcp.c +++ b/src/prototcp.c @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2022, Soner Tari . + * Copyright (c) 2017-2024, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/prototcp.h b/src/prototcp.h index ff08024..5cc64f7 100644 --- a/src/prototcp.h +++ b/src/prototcp.h @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2022, Soner Tari . + * Copyright (c) 2017-2024, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/pxyconn.c b/src/pxyconn.c index c652975..f445951 100644 --- a/src/pxyconn.c +++ b/src/pxyconn.c @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2022, Soner Tari . + * Copyright (c) 2017-2024, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/pxyconn.h b/src/pxyconn.h index 64652de..4354864 100644 --- a/src/pxyconn.h +++ b/src/pxyconn.h @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2022, Soner Tari . + * Copyright (c) 2017-2024, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/pxythr.c b/src/pxythr.c index 00b447a..a9bcc71 100644 --- a/src/pxythr.c +++ b/src/pxythr.c @@ -2,7 +2,7 @@ * SSLsplit - transparent SSL/TLS interception * https://www.roe.ch/SSLsplit * - * Copyright (c) 2017-2022, Soner Tari . + * Copyright (c) 2017-2024, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/pxythr.h b/src/pxythr.h index 71cc465..bf85531 100644 --- a/src/pxythr.h +++ b/src/pxythr.h @@ -2,7 +2,7 @@ * SSLsplit - transparent SSL/TLS interception * https://www.roe.ch/SSLsplit * - * Copyright (c) 2017-2022, Soner Tari . + * Copyright (c) 2017-2024, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/pxythrmgr.c b/src/pxythrmgr.c index a977735..51467bc 100644 --- a/src/pxythrmgr.c +++ b/src/pxythrmgr.c @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2022, Soner Tari . + * Copyright (c) 2017-2024, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/pxythrmgr.h b/src/pxythrmgr.h index a143b35..f528e5d 100644 --- a/src/pxythrmgr.h +++ b/src/pxythrmgr.h @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2022, Soner Tari . + * Copyright (c) 2017-2024, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/sslproxy.1 b/src/sslproxy.1 index 2d369d8..28e4a29 100644 --- a/src/sslproxy.1 +++ b/src/sslproxy.1 @@ -4,7 +4,7 @@ .\" https://github.com/sonertari/SSLproxy .\" .\" Copyright (c) 2009-2019, Daniel Roethlisberger . -.\" Copyright (c) 2017-2022, Soner Tari . +.\" Copyright (c) 2017-2024, Soner Tari . .\" All rights reserved. .\" .\" Redistribution and use in source and binary forms, with or without @@ -27,7 +27,7 @@ .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE .\" POSSIBILITY OF SUCH DAMAGE. .\" -.TH "sslproxy" "1" "26 Dec 2022" "v0.9.4" "SSLproxy" +.TH "sslproxy" "1" "18 Feb 2024" "v0.9.5" "SSLproxy" .SH NAME sslproxy \-\- transparent SSL/TLS proxy for decrypting and diverting network traffic to other programs for deep SSL inspection diff --git a/src/sslproxy.conf b/src/sslproxy.conf index f802cd0..54c37d0 100644 --- a/src/sslproxy.conf +++ b/src/sslproxy.conf @@ -1,4 +1,4 @@ -# Sample configuration for sslproxy v0.9.4 +# Sample configuration for sslproxy v0.9.5 # # Use the -f command line option to start sslproxy with a config file. # See sslproxy.conf(5) and sslproxy(1) for documentation. diff --git a/src/sslproxy.conf.5 b/src/sslproxy.conf.5 index b2e7a05..c4b9a59 100644 --- a/src/sslproxy.conf.5 +++ b/src/sslproxy.conf.5 @@ -3,7 +3,7 @@ .\" https://github.com/sonertari/SSLproxy .\" .\" Copyright (c) 2009-2019, Daniel Roethlisberger . -.\" Copyright (c) 2017-2022, Soner Tari . +.\" Copyright (c) 2017-2024, Soner Tari . .\" All rights reserved. .\" .\" Redistribution and use in source and binary forms, with or without @@ -26,7 +26,7 @@ .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE .\" POSSIBILITY OF SUCH DAMAGE. .\" -.TH "sslproxy.conf" "5" "26 Dec 2022" "v0.9.4" "SSLproxy" +.TH "sslproxy.conf" "5" "18 Feb 2024" "v0.9.5" "SSLproxy" .SH "NAME" .LP \fBsslproxy.conf\fR \- Configuration file for SSLproxy diff --git a/tests/check/filter.t.c b/tests/check/filter.t.c index 81b9450..a8e5ba3 100644 --- a/tests/check/filter.t.c +++ b/tests/check/filter.t.c @@ -1,7 +1,7 @@ /*- * SSLproxy * - * Copyright (c) 2017-2022, Soner Tari . + * Copyright (c) 2017-2024, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/check/filterstruct.t.c b/tests/check/filterstruct.t.c index 23dde4b..7068588 100644 --- a/tests/check/filterstruct.t.c +++ b/tests/check/filterstruct.t.c @@ -1,7 +1,7 @@ /*- * SSLproxy * - * Copyright (c) 2017-2022, Soner Tari . + * Copyright (c) 2017-2024, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/check/opts.t.c b/tests/check/opts.t.c index 30c5176..963149e 100644 --- a/tests/check/opts.t.c +++ b/tests/check/opts.t.c @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2022, Soner Tari . + * Copyright (c) 2017-2024, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/check/proto.t.c b/tests/check/proto.t.c index 5b6a229..5b38df6 100644 --- a/tests/check/proto.t.c +++ b/tests/check/proto.t.c @@ -2,7 +2,7 @@ * SSLsplit - transparent SSL/TLS interception * https://www.roe.ch/SSLsplit * - * Copyright (c) 2017-2022, Soner Tari . + * Copyright (c) 2017-2024, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/check/util.t.c b/tests/check/util.t.c index 0d1298d..d0093a2 100644 --- a/tests/check/util.t.c +++ b/tests/check/util.t.c @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2022, Soner Tari . + * Copyright (c) 2017-2024, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/testproxy/lp/main.c b/tests/testproxy/lp/main.c index f13b9f9..6932e97 100644 --- a/tests/testproxy/lp/main.c +++ b/tests/testproxy/lp/main.c @@ -88,7 +88,7 @@ main_version(void) fprintf(stderr, "---------------------------------------" "---------------------------------------\n"); } - fprintf(stderr, "Copyright (c) 2017-2022, Soner Tari \n"); + fprintf(stderr, "Copyright (c) 2017-2024, Soner Tari \n"); fprintf(stderr, "https://github.com/sonertari/SSLproxy\n"); fprintf(stderr, "Copyright (c) 2009-2019, " "Daniel Roethlisberger \n"); diff --git a/tests/testproxy/lp/opts.c b/tests/testproxy/lp/opts.c index 6596a17..de70c93 100644 --- a/tests/testproxy/lp/opts.c +++ b/tests/testproxy/lp/opts.c @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2022, Soner Tari . + * Copyright (c) 2017-2024, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/testproxy/lp/prototcp.c b/tests/testproxy/lp/prototcp.c index 38e851c..140a41d 100644 --- a/tests/testproxy/lp/prototcp.c +++ b/tests/testproxy/lp/prototcp.c @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2022, Soner Tari . + * Copyright (c) 2017-2024, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/testproxy/lp/prototcp.h b/tests/testproxy/lp/prototcp.h index 1e9d9ed..c4f1c2d 100644 --- a/tests/testproxy/lp/prototcp.h +++ b/tests/testproxy/lp/prototcp.h @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2022, Soner Tari . + * Copyright (c) 2017-2024, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/testproxy/lp/pxyconn.c b/tests/testproxy/lp/pxyconn.c index 3a379f7..5c5c6b1 100644 --- a/tests/testproxy/lp/pxyconn.c +++ b/tests/testproxy/lp/pxyconn.c @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2022, Soner Tari . + * Copyright (c) 2017-2024, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/testproxy/lp/pxyconn.h b/tests/testproxy/lp/pxyconn.h index df192c3..3edf856 100644 --- a/tests/testproxy/lp/pxyconn.h +++ b/tests/testproxy/lp/pxyconn.h @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2022, Soner Tari . + * Copyright (c) 2017-2024, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/testproxy/lp/pxythr.c b/tests/testproxy/lp/pxythr.c index 50277a8..7c65b8a 100644 --- a/tests/testproxy/lp/pxythr.c +++ b/tests/testproxy/lp/pxythr.c @@ -2,7 +2,7 @@ * SSLsplit - transparent SSL/TLS interception * https://www.roe.ch/SSLsplit * - * Copyright (c) 2017-2022, Soner Tari . + * Copyright (c) 2017-2024, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/testproxy/lp/pxythr.h b/tests/testproxy/lp/pxythr.h index 685b319..37faeec 100644 --- a/tests/testproxy/lp/pxythr.h +++ b/tests/testproxy/lp/pxythr.h @@ -2,7 +2,7 @@ * SSLsplit - transparent SSL/TLS interception * https://www.roe.ch/SSLsplit * - * Copyright (c) 2017-2022, Soner Tari . + * Copyright (c) 2017-2024, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/testproxy/lp/pxythrmgr.c b/tests/testproxy/lp/pxythrmgr.c index 10fe208..7f54bcd 100644 --- a/tests/testproxy/lp/pxythrmgr.c +++ b/tests/testproxy/lp/pxythrmgr.c @@ -3,7 +3,7 @@ * https://www.roe.ch/SSLsplit * * Copyright (c) 2009-2019, Daniel Roethlisberger . - * Copyright (c) 2017-2022, Soner Tari . + * Copyright (c) 2017-2024, Soner Tari . * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/testproxy/sslproxy.conf b/tests/testproxy/sslproxy.conf index c58eba0..486f177 100644 --- a/tests/testproxy/sslproxy.conf +++ b/tests/testproxy/sslproxy.conf @@ -1,4 +1,4 @@ -# TestProxy test configuration for sslproxy v0.9.4 +# TestProxy test configuration for sslproxy v0.9.5 # Global options #User _sslproxy diff --git a/tests/testproxy/sslproxy_no_tls11.conf b/tests/testproxy/sslproxy_no_tls11.conf index 01b0c96..dbe99cc 100644 --- a/tests/testproxy/sslproxy_no_tls11.conf +++ b/tests/testproxy/sslproxy_no_tls11.conf @@ -1,4 +1,4 @@ -# TestProxy test configuration for sslproxy v0.9.4 +# TestProxy test configuration for sslproxy v0.9.5 # Global options #User _sslproxy diff --git a/tests/testproxy/sslproxy_no_tls13.conf b/tests/testproxy/sslproxy_no_tls13.conf index 064efcc..d71c2ce 100644 --- a/tests/testproxy/sslproxy_no_tls13.conf +++ b/tests/testproxy/sslproxy_no_tls13.conf @@ -1,4 +1,4 @@ -# TestProxy test configuration for sslproxy v0.9.4 +# TestProxy test configuration for sslproxy v0.9.5 # Global options #User _sslproxy diff --git a/tests/testproxy/sslproxy_openssl3.conf b/tests/testproxy/sslproxy_openssl3.conf index c1d1190..aa7b904 100644 --- a/tests/testproxy/sslproxy_openssl3.conf +++ b/tests/testproxy/sslproxy_openssl3.conf @@ -1,4 +1,4 @@ -# TestProxy test configuration for sslproxy v0.9.4 +# TestProxy test configuration for sslproxy v0.9.5 # Global options #User _sslproxy