Skip to content

Commit

Permalink
Release v0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sonertari committed May 2, 2022
1 parent b78a367 commit e456f56
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 11 deletions.
12 changes: 12 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@


### SSLproxy 0.9.3 2022-05-02

- Implement a generic upgrade mechanism with autossl, without STARTTLS.
- Refactor and improve autossl and split mode.
- Fix watermarking for underlying buffers in autossl.
- Fix macOS header selection, update XNU headers for macOS, and re-enable osx
on Travis CI.
- Fix the natengine option passed in proxyspecs on command line.
- Fix enabling of pcap and mirror logging.
- Fix build errors with OpenSSL 3.x.


### SSLproxy 0.9.2 2021-11-14

- Update with the license change of the Aho Corasick library to the LGPL.
Expand Down
2 changes: 1 addition & 1 deletion src/sslproxy.1
Original file line number Diff line number Diff line change
Expand Up @@ -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" "13 November 2021" "v0.9.2" "SSLproxy"
.TH "sslproxy" "1" "02 May 2022" "v0.9.3" "SSLproxy"
.SH NAME
sslproxy \-\- transparent SSL/TLS proxy for decrypting and diverting network
traffic to other programs for deep SSL inspection
Expand Down
12 changes: 6 additions & 6 deletions src/sslproxy.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sample configuration for sslproxy v0.9.2
# Sample configuration for sslproxy v0.9.3
#
# Use the -f command line option to start sslproxy with a config file.
# See sslproxy.conf(5) and sslproxy(1) for documentation.
Expand Down Expand Up @@ -266,12 +266,12 @@ PassUsers admin
# Set divert or split mode of operation
# Not equivalent to the command line -n option.
# Applied to the proxyspecs defined after it, and structured proxyspecs can override it.
# Note that if the arg is not yes|no, this is assumed to be a Divert filter rule.
# Note that if the arg is not yes|no, it is assumed to be a Divert filter rule.
# (default: yes)
#Divert yes

# Passthrough sites
# The PassSite option is a special form of Pass filter rule
# The PassSite option is a special form of the Pass filter rule
# PassSite rules can be written as Pass filter rules, see filter rule examples
# PassSite rules will be deprecated in favor of filter rules in the future
# site[*] [(clientaddr|user|*) [description desc]]
Expand All @@ -288,7 +288,7 @@ PassUsers admin
#Include /etc/sslproxy/proxyspecs.conf

# Define macro to be used in filtering rules. Macro names must start with a $
# char. The macro name must be followed by words separated with spaces.
# sign. The macro name must be followed by words separated with spaces.
# Recursive macro definitions are not allowed.
#Define $macro value1 value2

Expand Down Expand Up @@ -383,7 +383,7 @@ ProxySpec smtps 127.0.0.1 8465 up:9199
ProxySpec http 127.0.0.1 8081

# Structured proxy specifications
# Global config is cloned into all proxyspecs first
# The global config is cloned into all proxyspecs first
# Each proxyspec can override its cloned global config
ProxySpec {
Proto https
Expand Down Expand Up @@ -450,7 +450,7 @@ ProxySpec {

Define $admins soner admin
Pass from user $admins desc android to cn .fbcdn.net*
# Structured version of one line filtering rule above
# Structured version of the one line filtering rule above
FilterRule {
Action Pass
User $admins
Expand Down
2 changes: 1 addition & 1 deletion src/sslproxy.conf.5
Original file line number Diff line number Diff line change
Expand Up @@ -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" "13 November 2021" "v0.9.2" "SSLproxy"
.TH "sslproxy.conf" "5" "02 May 2022" "v0.9.3" "SSLproxy"
.SH "NAME"
.LP
\fBsslproxy.conf\fR \- Configuration file for SSLproxy
Expand Down
2 changes: 1 addition & 1 deletion tests/testproxy/sslproxy.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# TestProxy test configuration for sslproxy v0.9.2
# TestProxy test configuration for sslproxy v0.9.3

# Global options
#User _sslproxy
Expand Down
2 changes: 1 addition & 1 deletion tests/testproxy/sslproxy_no_tls11.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# TestProxy test configuration for sslproxy v0.9.2
# TestProxy test configuration for sslproxy v0.9.3

# Global options
#User _sslproxy
Expand Down
2 changes: 1 addition & 1 deletion tests/testproxy/sslproxy_no_tls13.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# TestProxy test configuration for sslproxy v0.9.2
# TestProxy test configuration for sslproxy v0.9.3

# Global options
#User _sslproxy
Expand Down

0 comments on commit e456f56

Please sign in to comment.