Re: sites on localhost

2022-05-21 Thread der.hans via PLUG-discuss
Am 20. May, 2022 schwätzte Michael Butash via PLUG-discuss so: moin moin, This is something I posted here a while back, how sites like banks and other financials were making scripted local queries to check for open "services" or ports as referrals to localhost and ports known to be

Re: sites on localhost

2022-05-21 Thread Anthony Kosednar via PLUG-discuss
ocal queries to check for open "services" or ports as referrals to localhost and ports known to be malicious ala some worm or botnet if they should trust you or not.  Quick way for them to determine what stupid customers of theirs got got already, and lower your credit score while a

Re: sites on localhost

2022-05-20 Thread Michael Butash via PLUG-discuss
This is something I posted here a while back, how sites like banks and other financials were making scripted local queries to check for open "services" or ports as referrals to localhost and ports known to be malicious ala some worm or botnet if they should trust you or not. Quick wa

sites on localhost

2022-05-20 Thread der.hans via PLUG-discuss
moin moin, once in a while I run into a site trying to make JavaScript or XHR connections to localhost. What are they doing? Are they setting up backdoor tunnels on localhost? Are they trying to run a daemon out of the browser? Are they trying to escape the sandbox and exfiltrate data? ciao

Re: localhost

2021-10-10 Thread George Toft via PLUG-discuss
Butash via PLUG-discuss <mailto:plug-discuss@lists.phxlinux.org>> wrote: Are you running a local web server on port tcp/80/443, otherwise why connection to localhost?  You need a server like apache, nginx, or whatever web server listening on 80/443 for a browser to find

Re: localhost

2021-10-10 Thread greg zegan via PLUG-discuss
Hello,  That is what I was thinking as well.  Why try and connect to it if there is nothing listening to that location?You can ping it with either the hostname "localhost" or the 127.0.0.1 just to make sure your network card and software is working and in fact that is part the troub

Re: localhost

2021-10-09 Thread Michael via PLUG-discuss
thanks guys. I don't apach or something like that running on my system. I am learning so much! On Sat, Oct 9, 2021 at 7:17 PM Michael Butash via PLUG-discuss < plug-discuss@lists.phxlinux.org> wrote: > Are you running a local web server on port tcp/80/443, otherwise why > connection

Re: localhost

2021-10-09 Thread Michael Butash via PLUG-discuss
Are you running a local web server on port tcp/80/443, otherwise why connection to localhost? You need a server like apache, nginx, or whatever web server listening on 80/443 for a browser to find a webpage on localhost, which is your system. Otherwise the browser won't find a socket to connect

Re: localhost

2021-10-09 Thread George Toft via PLUG-discuss
n to interpretation. On Sat, Oct 9, 2021 at 11:59 AM Snyder, Alexander J via PLUG-discuss mailto:plug-discuss@lists.phxlinux.org>> wrote: The IP address range *127.0.**0.0 – 127.255.**255.255* is reserved for loopback, i.e. a Host's self-address, also known as localhost

Re: localhost

2021-10-09 Thread Michael via PLUG-discuss
> >> >> The IP address range *127.0.* *0.0 – 127.255.* *255.255* is reserved for >> loopback, i.e. a Host's self-address, also known as localhost address. This >> loopback IP address is managed entirely by and within the operating system. >> >> Thanks, >> Alexa

Re: localhost

2021-10-09 Thread James Mcphee via PLUG-discuss
J via PLUG-discuss < plug-discuss@lists.phxlinux.org> wrote: > > The IP address range *127.0.* *0.0 – 127.255.* *255.255* is reserved for > loopback, i.e. a Host's self-address, also known as localhost address. This > loopback IP address is managed entirely by and within the

Re: localhost

2021-10-09 Thread Snyder, Alexander J via PLUG-discuss
The IP address range *127.0.* *0.0 – 127.255.* *255.255* is reserved for loopback, i.e. a Host's self-address, also known as localhost address. This loopback IP address is managed entirely by and within the operating system. Thanks, Alexander. Sent from my Samsung S20+ 5G On Sat, Oct 9, 2021

Re: localhost

2021-10-09 Thread greg zegan via PLUG-discuss
localhost | | | | localhost The local loopback mechanism may be used to run a network service on a host without requiring a physical network... | | | you need to specify the port number On Saturday, October 9, 2021, 02:29:07 PM EDT, Michael via PLUG-discuss wrote

localhost

2021-10-09 Thread Michael via PLUG-discuss
Are the addresses for localhost 127.0.0.1 and 127.0.1.1 ? That was a rhetorical question. What isn't rhetorical is why, when I enter either of those addresses into a browser , do I get a 'problem with address' page? Are there -- :-)~MIKE