Skip to content

Commit 0dd9b46

Browse files
committed
Release v0.9.9
1 parent e9c5a83 commit 0dd9b46

File tree

8 files changed

+30
-7
lines changed

8 files changed

+30
-7
lines changed

NEWS.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11

22

3+
### SSLproxy 0.9.9 2025-11-09
4+
5+
- Fix fd leak, do not setup dst again in autossl, issue #88 reported by
6+
@victorjulien
7+
- Fix memory leak in config load, reported by valgrind
8+
- Disable r/w cbs and clear all cbs before all bufferevent_free() calls
9+
Also, disable the events first, then clear the callbacks, for conventional
10+
pattern
11+
- Check fd usage before content logging, issue #88 reported by @victorjulien
12+
This change is expected to prevent sslproxy to crash if it runs out of fds
13+
while content logging
14+
- Make sure the other conn end not closed before using it
15+
- Increase sizes of bufs used in ClientHello parsing as a defensive measure
16+
against modern TLS handshake sizes, suggested by @dpward
17+
- Use unused retvals from functions in autossl
18+
- Remove unused return value
19+
- Fix recursive expansion in main.mk, thanks to @dpward
20+
- Improve error handling and memory leak prevention in filter.c, for
21+
correctness, suggested and mostly implemented by Copilot
22+
- Simplify platform check in main.mk for UserAuth feature
23+
- Print version after unit tests in GitHub Actions
24+
25+
326
### SSLproxy 0.9.8 2025-05-05
427

528
- Force SSL/TLS configuration in SSL proxyspecs

src/sslproxy.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2828
.\" POSSIBILITY OF SUCH DAMAGE.
2929
.\"
30-
.TH "sslproxy" "1" "06 May 2025" "v0.9.8" "SSLproxy"
30+
.TH "sslproxy" "1" "09 Nov 2025" "v0.9.9" "SSLproxy"
3131
.SH NAME
3232
sslproxy \-\- transparent SSL/TLS proxy for decrypting and diverting network
3333
traffic to other programs for deep SSL inspection

src/sslproxy.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Sample configuration for sslproxy v0.9.8
1+
# Sample configuration for sslproxy v0.9.9
22
#
33
# Use the -f command line option to start sslproxy with a config file.
44
# See sslproxy.conf(5) and sslproxy(1) for documentation.

src/sslproxy.conf.5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2727
.\" POSSIBILITY OF SUCH DAMAGE.
2828
.\"
29-
.TH "sslproxy.conf" "5" "06 May 2025" "v0.9.8" "SSLproxy"
29+
.TH "sslproxy.conf" "5" "09 Nov 2025" "v0.9.9" "SSLproxy"
3030
.SH "NAME"
3131
.LP
3232
\fBsslproxy.conf\fR \- Configuration file for SSLproxy

tests/testproxy/sslproxy.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# TestProxy test configuration for sslproxy v0.9.8
1+
# TestProxy test configuration for sslproxy v0.9.9
22

33
# Global options
44
#User _sslproxy

tests/testproxy/sslproxy_no_tls11.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# TestProxy test configuration for sslproxy v0.9.8
1+
# TestProxy test configuration for sslproxy v0.9.9
22

33
# Global options
44
#User _sslproxy

tests/testproxy/sslproxy_no_tls13.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# TestProxy test configuration for sslproxy v0.9.8
1+
# TestProxy test configuration for sslproxy v0.9.9
22

33
# Global options
44
#User _sslproxy

tests/testproxy/sslproxy_openssl3.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# TestProxy test configuration for sslproxy v0.9.8
1+
# TestProxy test configuration for sslproxy v0.9.9
22

33
# Global options
44
#User _sslproxy

0 commit comments

Comments
 (0)