diff --git a/CHANGELOG b/CHANGELOG index 538a29cfd..afde70c24 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -5,6 +5,32 @@ Legend: !! bug fixed ========================================= +0.8.3-Bertillon 20190701 + !! Fix binary comparsion and assignment in etterfilter + !! Fixed packetbuffer racecond. in BRIDGE mode (e.g. Message too long) + !! Non-aligned filters are no longer supported (recompilation with etterfilter required) + !! Fixed sslstrip plugin startup issue due to regex compilation error + !! Fixed lots of build warnings + !! Proper separation of library and executable code + !! Fixed heap-buffer-overflow in write_output in etterfilter + !! ip_addr sanity check when etterlog processes info logfile + !! Lots of buffer under-/overflow conditions fixed + !! CVE-2017-6430 (Fix invalid read on crafted file in etterfilter) + !! fix dns_spoof plugin when used in bridge mode + + SSL redirects are now customizable at runtime + + GeoIP detection / support using CMake + + Rework of GTK3 UI - modern GNOME3 look + + New Kerberos 5 downgrade plugin + + GTK3 is the new default GTK_BUILD_TYPE + + OSPF dissector supports more authentication methods in hash-cracker friendly format + + Rework of Oracle O5LOGON dissector + + Multi-threaded name resolution + + Updated etter.finger.mac + - GTK2 phase out initialized + - Usage of deprecated inet_aton replaced with current successor functions + + + 0.8.2-Ferri 20150314 !! Fixed some openssl deprecated functions usage !! Fixed log file ownership diff --git a/README b/README index 84942246e..8abcdcca4 100644 --- a/README +++ b/README @@ -10,7 +10,7 @@ A suite for man in the middle attacks - Copyright 2001-2017 The Ettercap Dev Team + Copyright 2001-2019 The Ettercap Dev Team ============================================================================== ============================================================================== diff --git a/include/ec_version.h b/include/ec_version.h index 22b2d6f0b..2258ad0f7 100644 --- a/include/ec_version.h +++ b/include/ec_version.h @@ -1,14 +1,14 @@ #ifndef ETTERCAP_VERS_H #define ETTERCAP_VERS_H -#define EC_VERSION "0.8.2" +#define EC_VERSION "0.8.3" #define EC_VERSION_MAJOR 0 #define EC_VERSION_MINOR 8 -#define EC_VERSION_REVISION 2 +#define EC_VERSION_REVISION 3 #ifndef PROGRAM #define PROGRAM "ettercap" #endif -#define EC_COPYRIGHT "2001-2017" +#define EC_COPYRIGHT "2001-2019" #define EC_AUTHORS "Ettercap Development Team" #endif diff --git a/misc/geolite-update.sh b/misc/geolite-update.sh index 7bbe17aec..f1e82d378 100644 --- a/misc/geolite-update.sh +++ b/misc/geolite-update.sh @@ -2,7 +2,7 @@ # set -xe # geolite-update.sh -- update GeoIP lite databases. -# (C) 2017 Ettercap Development Team. +# (C) 2017-2019 Ettercap Development Team. # Ettercap can use MaxMind's GeoIP databases to look up the country for an IP address. # This simple shell script helps in downloading and installing the *free* GeoLite diff --git a/src/interfaces/gtk3/ec_gtk3.c b/src/interfaces/gtk3/ec_gtk3.c index e74937a05..062b5dbd6 100644 --- a/src/interfaces/gtk3/ec_gtk3.c +++ b/src/interfaces/gtk3/ec_gtk3.c @@ -1151,7 +1151,7 @@ static void gtkui_build_widgets(GApplication* app, gpointer data) /* create header bar and menu buttons */ header = gtk_header_bar_new(); gtk_header_bar_set_title(GTK_HEADER_BAR(header), title); - gtk_header_bar_set_subtitle(GTK_HEADER_BAR(header), EC_VERSION " (EB)"); + gtk_header_bar_set_subtitle(GTK_HEADER_BAR(header), EC_VERSION); gtk_header_bar_set_show_close_button(GTK_HEADER_BAR(header), TRUE); gtk_window_set_titlebar(GTK_WINDOW(window), header);