1

According to this post, Jeffrey Tippet (Microsoft employee) writes:

WEP can run in two modes: shared and open. Despite the names, shared is actually less secure than open. Because of this, our telemetry shows that that only 0.1% (and declining) of Windows 7 users connect to these highly-insecure shared WEP networks.

In order to simplify Windows, make it easier for people to pick more secure defaults, and to enable us to focus on improving the wireless networking that the other 99.9% of our customers use, we removed shared WEP from Windows 8. Windows 8 continues to support open WEP. We recommend that you configure your AP to use open WEP, as it's more secure and more broadly-supported.

However, there isn't an explanation as to why shared is less secure than open. Why is this the case?

Vilican
  • 2,703
  • 8
  • 21
  • 35
  • 1
    I'm a bit surprised anyone still uses WEP. WEP is horribly insecure no matter which version you pick and has been since the late 90s. I don't think I've seen an AP using WEP for years. – Steve Sether Jun 30 '15 at 17:58

3 Answers3

2

Shared would send a plaintext query to authenticate clients which would be encrypted and returned. This left the key vulnerable to a known-plaintext attack.

Open would allow anyone to authenticate, but wouldn't pass plaintext around, making the key harder to guess.

Here and here are links to more details.

ztk
  • 2,247
  • 13
  • 22
1

Shared authentication uses a challenge/response protocol to connect, and this makes it very susceptible to a dictionary attack offline. Using WEP in shared mode, You just need to enter a secret shared key to connect, and this is where the attack can be easily perpetrated. Hope that helps!

Stealth_kong
  • 314
  • 1
  • 6
1

To answer your question, it's not necessarily. For example, if there are no clients, Open is less secure.

In general, shared is less secure because you can deauthenticate a client, which forces it to associate again. You then capture the shared key authentication handshake. In open mode, this handshake doesn't happen.

Andy Chow
  • 56
  • 1