in reply to Re: HTTP::Daemon Security Question
in thread HTTP::Daemon Security Question
Just because you use localhost as the server address, dosn't mean it won't accept connections from the internet.I think you're wrong about that. I just did a quick check and when using localhost as server address, netstat shows
which means it will only accept connections coming in on the localhost IP. Packets going to port 80 from the external IP won't reach this server.[user@rack tmp]$ sudo netstat -tnlp | grep :80 tcp 0 0 127.0.0.1:80 0.0.0.0:* + LISTEN 6634/perl
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: HTTP::Daemon Security Question
by fullermd (Vicar) on Jan 06, 2009 at 19:52 UTC | |
by bkiahg (Pilgrim) on Jan 06, 2009 at 20:01 UTC |