Skip to content

Commit

Permalink
Merge pull request #873 from koeppea/0.8.3-changes
Browse files Browse the repository at this point in the history
Update CHANGELOG for upcoming release
  • Loading branch information
koeppea committed Jun 27, 2019
2 parents 5a447b9 + e893d25 commit 1f3e827
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 6 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -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

==============================================================================
==============================================================================
Expand Down
6 changes: 3 additions & 3 deletions include/ec_version.h
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion misc/geolite-update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/interfaces/gtk3/ec_gtk3.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 1f3e827

Please sign in to comment.