diff --git a/CHANGELOG b/CHANGELOG index a599b4148..f1c42d288 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -5,7 +5,13 @@ Legenda: !! bug fixed ========================================= -0.7.5.2-Assimilation 20130229 +0.7.5.3-Assimilation 20130201 + !! Fixed ncurses host scan crash + !! Fixed ppp connection crash + !! Fixed only MiTM mode selecting text interface + + Changed to version 0.7.5.3 to help distributions. + +0.7.5.2-Assimilation 20130129 !! applied patch to fix CVE-2012-0722 !! fixed username detection in TN3270 dissector + Added new private-key and certificate-file options for SSL MiTM diff --git a/include/ec_version.h b/include/ec_version.h index 4dde5e8cf..34e1a1c28 100644 --- a/include/ec_version.h +++ b/include/ec_version.h @@ -3,7 +3,7 @@ #ifndef EC_VERS_H #define EC_VERS_H -#define EC_VERSION "0.7.5.2" +#define EC_VERSION "0.7.5.3" #define EC_VERSION_MAJOR 0 #define EC_VERSION_MINOR 7 #define EC_VERSION_REVISION 5 diff --git a/src/ec_parser.c b/src/ec_parser.c index ac3ae9ce8..2d405c34a 100644 --- a/src/ec_parser.c +++ b/src/ec_parser.c @@ -225,7 +225,7 @@ void parse_options(int argc, char **argv) case 'o': GBL_OPTIONS->only_mitm = 1; - select_text_interface(); + //select_text_interface(); break; case 'b': @@ -495,12 +495,14 @@ void parse_options(int argc, char **argv) FATAL_ERROR("Please select an User Interface"); /* force text interface for only mitm attack */ + /* Do not select text interface for only MiTM mode + if (GBL_OPTIONS->only_mitm) { if (GBL_OPTIONS->mitm) select_text_interface(); else FATAL_ERROR("Only mitm requires at least one mitm method"); - } + } */ DEBUG_MSG("parse_options: options combination looks good");