0

Scenario: I'm currently at a hotel and want to connect my Chromecast to the hotel's public Wi-Fi; however, it cannot automatically connect to it because it requires pressing an "Accept" button. I then use my laptop to connect to the public Wi-Fi and turn on the laptop's hotspot and then connect the Chromecast to the hotspot.

How likely is it that my laptop can be hacked merely using it as a hotspot?

  • Not relevant to your question, but it may be possible to register the Chromecast on the hotel network by temporarily configuring your computer to appear as the Chromecast on the network by changing the MAC address. – multithr3at3d Jul 29 '22 at 16:41
  • 2
    Does this answer your question? [Is public Wi-Fi a threat nowadays?](https://security.stackexchange.com/questions/174850/is-public-wi-fi-a-threat-nowadays) – vidarlo Dec 27 '22 at 13:34

2 Answers2

-1

To assess the risk, you have to understand the complications of using public Wi-Fi. The attack which might be happening is a Man-in-the-middle attack. So traffic you send and traffic you receive might be intercepted and changed or just read by someone else on the network.

Knowing this, whether or not your Laptop will be "hacked" depends on what you do with the received traffic. Do you have ports open to everyone in the same network or install software via this connection? Then the risk is higher, compared to just using a web service where no credentials are needed.

PasWei
  • 754
  • 3
  • 14
-3

It is possible for an attacker to potentially compromise your device if you connect to an unsecured public Wi-Fi network.

If you connect to a public Wi-Fi network, your device is essentially on the same network as all the other devices that are also connected to that network.

As has been said by the previous answer your traffic can be listened to, intercepted and modified even when you are on a HTTP or HTTPS-secured site ssl-stripping-attack.

The risk factor becomes more plausible depending on what you are doing:

Are you running a vulnerable service listening on an open port?

Are you browsing using an unpatched browser version?

And there is the possibility of a zero day exploit that can compromise your browser/PC.

Simply using a public or hotel wifi without using a VPN makes your PC more readily available to a bad actor in the same network.

SSL Stripping

SSL Stripping is an attack that aims to demote the security of an HTTPS secured website by intercepting and altering the communication between a client and a server. The attack aims to exploit vulnerabilities in SSL/TLS connections, which are used to encrypt and secure communication over the internet.

This could be achieved by downgrading a more secures TLS to an insecure ssl Connection. So an attacker in close proximity in the same network can relay traffic between a user and web server using his own generated certificate and key for decryption.ssl stripping allows the attacker to create a bridge or proxy between the client and server thereby sniffing sensitive info without the users knowledge man-in-the-middle-attack.

Virtual Private Network (VPN)

Virtual Private Network is a network that allows you to create a secured and encrypted connection to another network over the internet. A VPN helps to protect against mitm by encrypting internet traffic of a user over a secured tunnel/channel, which makes it extremely d1ifficult for an attacker to decrypt the data and read the data (which to a second party is gibberish).

A VPN can also help in authenticating to the VPN server using a Digital certificate this help to verify you are connecting to the intended server rather than an insecure server set up by an attacker.

geek
  • 9
  • 2
  • 1
    welcome- this answer could be improved by expanding on some of the details, eg. in what ways can traffic be modified if HTTPS is in use? why does introducting a vpn help in this circumstance? – brynk Dec 26 '22 at 17:29
  • 1
    Welcome to the community. As @brynk already pointed out please add supporting information, thank you. Also, you're talking about remote exploitation in a local network, please edit your answer accordingly. – Sir Muffington Dec 26 '22 at 22:08
  • I already added an addition with reference and case scenario to the question answer but someone it get edited or removed. I can seem to understand – geek Dec 27 '22 at 10:15
  • No one removed anything. All I did was to correct grammar and formatting. Click the "edited yesterday" link to see the edit history. – schroeder Dec 28 '22 at 14:51