Earlier quoted context omitted.
>> There are legitimate reasons for port scanning Such as?
You run a network, and want to run a security audit. You need to know what devices are operating on it, and what services they are offering. I don't get upset if someone opens and closes a socket to my VPS to see if something's there. My VPS is exposed to the internet. If a socket opens, it should be secure anyways. There's the chance nginx has an unknown zero day, but if I wanted to avoid that, I'd firewall it. Thin…
Why Is This Website Port Scanning Me?
151–160 of 448 posts
Re: Why Is This Website Port Scanning Me?
#152Earlier quoted context omitted.
So if a local service allows WS connections, can data be scrapped off such a service?
Yes, the primary (or only) reason to even implement a WS server connection is exactly to allow data to be scrapped off using a web-browser. E.g. Asterisk nowadays allows enabling SIP protocol access over websocket so that you can run a javascript VoIP client from inside a browser [1] (and WebRTC for the media layer). [1] https://wiki.asterisk.org/wiki/display/AST/Asterisk+Builtin+...
Re: Why Is This Website Port Scanning Me?
#153Is there a way to block this at the browser level? Ex: block access to localhost for all domains (except from localhost itself)?
Ublock allows you to block websocket requests. eg. *$websocket will block all websocket connections. You probably want to operate on a whitelist on a site by site basis. Blocking localhost or 127.0.0.1 isn't reliable because sites can use dns rebinding attacks to bypass your filters.
Re: Why Is This Website Port Scanning Me?
#154Every time I hear about some shiny new feature being added to a browser, I think... 1) Will I ever actually use this 2) How is this gonna screw me over WebSockets, WebBluetooth, WebAssembly, Web-You-Can-Access-my-Accelerometer-and-Battery, haven't ever wanted to use those. Ever. For anything. For any reason. (Edit 3: Oh yeah, I forgot! WebRTC!) Edit: Fantastic. You can't disable it in Firefox. So what, does Firefox n…
The web is now a no-install app delivery platform, it makes sense for these things to exist.
Re: Why Is This Website Port Scanning Me?
#155Earlier quoted context omitted.
>> There are legitimate reasons for port scanning Such as?
You run a network, and want to run a security audit. You need to know what devices are operating on it, and what services they are offering. I don't get upset if someone opens and closes a socket to my VPS to see if something's there. My VPS is exposed to the internet. If a socket opens, it should be secure anyways. There's the chance nginx has an unknown zero day, but if I wanted to avoid that, I'd firewall it. Thin…
There's really no legitimate reason for eBay, or any other website, to portscan your computer. There's nothing there needed for browsing their website.
Re: Why Is This Website Port Scanning Me?
#156Earlier quoted context omitted.
>> There are legitimate reasons for port scanning Such as?
IRC servers detect open proxies that way.
Re: Why Is This Website Port Scanning Me?
#157Re: Why Is This Website Port Scanning Me?
#158How would you feel is someone was walking on busy car parking and checking if doors of the cars are open? It' what port scanning is, checking if the car has open door.
Re: Why Is This Website Port Scanning Me?
#159Re: Why Is This Website Port Scanning Me?
#160Earlier quoted context omitted.
Yes, the primary (or only) reason to even implement a WS server connection is exactly to allow data to be scrapped off using a web-browser. E.g. Asterisk nowadays allows enabling SIP protocol access over websocket so that you can run a javascript VoIP client from inside a browser [1] (and WebRTC for the media layer). [1] https://wiki.asterisk.org/wiki/display/AST/Asterisk+Builtin+...
Sure but such servers would always implement authentication when deployed to the web but a lot of such services could run locally unauthenticated to serve local apps. For example services to power electron apps. This tells me data from such services can be stolen very easily.
[1] https://stackoverflow.com/questions/41674063/is-it-possible-...