diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-10-09 16:41:36 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-10-09 16:41:36 +0000 |
commit | 6945d722e682c0a1e5986f8844ad4428c7f97aea (patch) | |
tree | 357c2fe58daafb8d36dfd4d98d1c921eba4ad60c /package/libs/cyassl/Makefile | |
parent | ff1b1635401fab42d6b1df1992f95bcb779c8bfb (diff) | |
download | upstream-6945d722e682c0a1e5986f8844ad4428c7f97aea.tar.gz upstream-6945d722e682c0a1e5986f8844ad4428c7f97aea.tar.bz2 upstream-6945d722e682c0a1e5986f8844ad4428c7f97aea.zip |
cyassl: add a patch to better check legacy SSLv2 client hello records
If junk data is received during SSL_accept(), cyassl will treat it as legacy SSLv2
record without performing further plausibility checks. Change the legacy code path
to return UNKNOWN_HANDSHAKE_TYPE if the value of the third byte isn't 0x01 the
hello message type.
SVN-Revision: 33675
Diffstat (limited to 'package/libs/cyassl/Makefile')
-rw-r--r-- | package/libs/cyassl/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/libs/cyassl/Makefile b/package/libs/cyassl/Makefile index 442186aac7..063e572166 100644 --- a/package/libs/cyassl/Makefile +++ b/package/libs/cyassl/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2010 OpenWrt.org +# Copyright (C) 2006-2012 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=cyassl PKG_VERSION:=1.6.5 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).zip PKG_SOURCE_URL:=http://www.yassl.com/ |