diff options
author | Martin Willi <martin@strongswan.org> | 2010-01-07 15:56:11 +0100 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2010-01-07 15:56:11 +0100 |
commit | 34948b99710af7a011794ac2a7e99185fc332168 (patch) | |
tree | ffea2b75b2a46c15266fa0adab94fb590dadba82 /src | |
parent | f34702ff3fa3461597b3bb44a7cc734592f13fb4 (diff) | |
download | strongswan-34948b99710af7a011794ac2a7e99185fc332168.tar.bz2 strongswan-34948b99710af7a011794ac2a7e99185fc332168.tar.xz |
EAP-MSCHAPv2 is indeed mutual, but is prone to MITM dictionary attacks
Diffstat (limited to 'src')
-rw-r--r-- | src/charon/plugins/eap_mschapv2/eap_mschapv2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/charon/plugins/eap_mschapv2/eap_mschapv2.c b/src/charon/plugins/eap_mschapv2/eap_mschapv2.c index 71e313ae0..f0222840d 100644 --- a/src/charon/plugins/eap_mschapv2/eap_mschapv2.c +++ b/src/charon/plugins/eap_mschapv2/eap_mschapv2.c @@ -1152,7 +1152,7 @@ static status_t get_msk(private_eap_mschapv2_t *this, chunk_t *msk) */ static bool is_mutual(private_eap_mschapv2_t *this) { - return TRUE; + return FALSE; } /** |