diff --git a/CHANGELOG b/CHANGELOG index 2545e9e30..538a29cfd 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -5,6 +5,39 @@ Legend: !! bug fixed ========================================= +0.8.2-Ferri 20150314 + !! Fixed some openssl deprecated functions usage + !! Fixed log file ownership + !! Fixed mixed output print + !! Fixed drop_privs function usage + !! Fixed nopromisc option usage + !! Fixed missing break in parser code + !! Improved redirect commands + !! Fix truncated VLAN packet headers + !! Fix ettercap.rc file (windows only) + !! Various cmake fixes + !! A ton of BSD bug fixes + !! Simplify macosx cmake files + !! Fix incorrect sequence number after TCP injection + !! Fix pcap length, and aligment problems with libpcap + !! Bug fixes and gtk code refactor (gtk box wrapper) + !! Fix some ipv6 send issues + !! Fixed sleep time on Windows (high CPU usage) + !! Fixed many CVE vulnerabilities (some of them already fixed in 0.8.1) + - CVE-2014-6395 (Length Parameter Inconsistency) + - CVE-2014-6396 (Arbitrary write) + - CVE-2014-9376 (Negative index/underflow) + - CVE-2014-9377 (Heap overflow) + - CVE-2014-9378 (Unchecked return value) + - CVE-2014-9379 (Incorrect cast) + - CVE-2014-9380 (Buffer over-read) + - CVE-2014-9381 (Signedness error) + + Updated etter.finger.mac + + Add TXT and ANY query support on dns_spoof + + New macosx travis-ci build! + + Enable again PDF generation + - Remove gprof support + 0.8.1-Lombroso 20141016 !! Fixed incorrect checksum computation on 64-bit systems !! Fixed DNS resolution problems diff --git a/CMakeLists.txt b/CMakeLists.txt index dcef6b08e..84632104b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 2.8) project(ettercap C) -set(VERSION "0.8.1") +set(VERSION "0.8.2") set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/Modules") set(CMAKE_SCRIPT_PATH "${CMAKE_SOURCE_DIR}/cmake/Scripts") diff --git a/include/ec_version.h b/include/ec_version.h index 953022a1d..2e66c23a0 100644 --- a/include/ec_version.h +++ b/include/ec_version.h @@ -1,12 +1,12 @@ #ifndef ETTERCAP_VERS_H #define ETTERCAP_VERS_H -#define EC_VERSION "0.8.1" +#define EC_VERSION "0.8.2" #define EC_VERSION_MAJOR 0 #define EC_VERSION_MINOR 8 -#define EC_VERSION_REVISION 1 +#define EC_VERSION_REVISION 2 #define EC_PROGRAM "ettercap" -#define EC_COPYRIGHT "2001-2014" +#define EC_COPYRIGHT "2001-2015" #define EC_AUTHORS "Ettercap Development Team" #endif