0

When non HTTP/S data is sent over Wifi, can that data be seen by other machines that happen to also be connected to that same access point?

Does the privacy of the HTTP data depend on the encryption mode of the network?

makerofthings7
  • 50,090
  • 54
  • 250
  • 536

2 Answers2

1

Edit: Reading this post: Are WPA2 connections with a shared key secure? I realise that I know too little about the topic.
Original post remains below.

Does Wifi encryption create a private tunnel between the adapter and the accesspoint?

No. Not even with 802.1X Authentication. -> See https://en.wikipedia.org/wiki/IEEE_802.1X#Shared_media

When non HTTP/S data is sent over Wifi, can that data be seen by other machines that happen to also be connected to that same access point?

Yes. If you're logged in to the same WiFi (and connected to the same base station on the same channel if there are multiple ones), then you can usually listen to all other participants. It's basically as if you were connected into the same wired-LAN-hub: Everyone hears everything.

Unless you're too far away from some node in which case that node is hidden to you and you won't be able to hear it: https://en.wikipedia.org/wiki/Hidden_node_problem

Does the privacy of the HTTP data depend on the encryption mode of the network?

No. Not if somebody is properly logged in to the same WiFi.

StackzOfZtuff
  • 17,783
  • 1
  • 50
  • 86
-1

No, the privacy of clear text data does not depend on the encryption mode of the network, assuming that other (legitimate) machines are connected to the same access point.

By default machines will not show (clear text data) traffic of other machines, however it is possible to do so using tools that poison the ARP table, this is called (you guessed it right) ARP Poisoning or ARP Spoofing. Using this technique it is possible to obtain clear text data sent and received from the access point.

Wifi does not create a private tunnel between the adapter and the access point, as in a wired environment the NIC does not have a private tunnel to a switch.

Jeroen
  • 5,783
  • 2
  • 18
  • 26