Skip to content

Commit

Permalink
Merge pull request #83 from eaescob/master
Browse files Browse the repository at this point in the history
Creation of 0.7.5.3
  • Loading branch information
eaescob committed Feb 1, 2013
2 parents d137c82 + 14abf2a commit 4479a43
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion include/ec_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 4 additions & 2 deletions src/ec_parser.c
Original file line number Diff line number Diff line change
Expand Up @@ -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':
Expand Down Expand Up @@ -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");

Expand Down

0 comments on commit 4479a43

Please sign in to comment.