mirror of
https://repo.or.cz/socat.git
synced 2024-12-22 15:32:35 +00:00
version 2.0.0-b8 - CVE-2015-1379, 1.7.3.0 fixes, v2 fixes
This commit is contained in:
parent
2dfd7ffcfb
commit
2dee720b89
7 changed files with 10 additions and 7 deletions
4
CHANGES
4
CHANGES
|
@ -1,6 +1,8 @@
|
|||
|
||||
####################### V 2.0.0-b8:
|
||||
|
||||
security:
|
||||
(CVE Id pending)
|
||||
CVE-2015-1379
|
||||
Fixed problems with signal handling caused by use of not async signal
|
||||
safe functions in signal handlers that could freeze socat, allowing
|
||||
denial of service attacks.
|
||||
|
|
2
README
2
README
|
@ -75,7 +75,7 @@ install
|
|||
|
||||
Get the tarball and extract it:
|
||||
gtar xzf socat.tar.gz
|
||||
cd socat-1.7.1.0
|
||||
cd socat-2.0.0-b8
|
||||
./configure
|
||||
make
|
||||
su
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
"2.0.0-b7+1724+sigfix"
|
||||
"2.0.0-b8"
|
||||
|
|
|
@ -3624,7 +3624,7 @@ standard specifications available on the Internet for free.
|
|||
label(VERSION)
|
||||
manpagesection(VERSION)
|
||||
|
||||
This man page describes version 2.0.0-b3 of socat().
|
||||
This man page describes version 2.0.0-b8 of socat().
|
||||
|
||||
|
||||
label(BUGS)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
|
||||
%define majorver 2.0
|
||||
%define minorver 0-b7
|
||||
%define minorver 0-b8
|
||||
|
||||
Summary: socat - multipurpose relay
|
||||
Name: socat
|
||||
|
|
4
test.sh
4
test.sh
|
@ -12496,7 +12496,9 @@ N=$((N+1))
|
|||
|
||||
|
||||
# test if the various SSL methods can be used with OpenSSL
|
||||
for method in SSL3 SSL23 TLS1 TLS1.1 TLS1.2 DTLS1; do
|
||||
# DTLS1 hangs on Fedora-20
|
||||
for method in SSL3 SSL23 TLS1 TLS1.1 TLS1.2; do
|
||||
#for method in SSL3 SSL23 TLS1 TLS1.1 TLS1.2 DTLS1; do
|
||||
|
||||
NAME=OPENSSL_METHOD_$method
|
||||
case "$TESTS" in
|
||||
|
|
1
xio.h
1
xio.h
|
@ -570,7 +570,6 @@ union integral {
|
|||
} ;
|
||||
|
||||
/* some aliases */
|
||||
#define u_off u_long /* please report when this causes problems */
|
||||
|
||||
#if HAVE_BASIC_OFF_T==3
|
||||
# define u_off u_int
|
||||
|
|
Loading…
Reference in a new issue