Difference between revisions of "Talk:Server.pl"

From Organic Design wiki
(Add links to socket code examples)
m
Line 17: Line 17:
 
**[http://www.cs.usyd.edu.au/~sholden/pythonperl.html Some PERL socket info here]
 
**[http://www.cs.usyd.edu.au/~sholden/pythonperl.html Some PERL socket info here]
 
**[http://www.adp-gmbh.ch/perl/proxy.html PERL proxy-server code - good socket example]
 
**[http://www.adp-gmbh.ch/perl/proxy.html PERL proxy-server code - good socket example]
**[http://www.peter.com.au/perl/ Good socket and other examples]
+
**[http://www.peter.com.au/perl/ Peter's Perl Examples - Good socket and other examples]

Revision as of 09:08, 16 February 2006

Here are some directives Apache uses when it deals with IE clients:

SetEnvIf User-Agent ".*MSIE.*" \

nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0

Might give a clue to it's little quirks.

--Rob 09:44, 16 Feb 2006 (NZDT)

Currently HTTP authentication is just base64 encoded username:password which is basically just plain text, so the password can easily be discovered.

  1. Bugs & Notes