123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- #!/usr/bin/env perl
- BEGIN {
- # add current source dir to the include-path
- # we need this for make distcheck
- (my $srcdir = $0) =~ s,/[^/]+$,/,;
- unshift @INC, $srcdir;
- }
- use strict;
- use IO::Socket;
- use Test::More tests => 17;
- use LightyTest;
- my $tf = LightyTest->new();
- my $t;
- ok($tf->start_proc == 0, "Starting lighttpd") or die();
- $t->{REQUEST} = ( <<EOF
- GET /server-status HTTP/1.0
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 401 } ];
- ok($tf->handle_http($t) == 0, 'Missing Auth-token');
- $t->{REQUEST} = ( <<EOF
- GET /server-status HTTP/1.0
- Authorization: Basic \x80mFuOmphb
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 401 } ];
- ok($tf->handle_http($t) == 0, 'Basic-Auth: Invalid base64 Auth-token');
- $t->{REQUEST} = ( <<EOF
- GET /server-status HTTP/1.0
- Authorization: Basic amFuOmphb
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 401 } ];
- ok($tf->handle_http($t) == 0, 'Basic-Auth: Wrong Auth-token');
- $t->{REQUEST} = ( <<EOF
- GET /server-config HTTP/1.0
- Authorization: Basic amFuOmphbg==
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200 } ];
- ok($tf->handle_http($t) == 0, 'Basic-Auth: Valid Auth-token - plain');
- $t->{REQUEST} = ( <<EOF
- GET /server-config HTTP/1.0
- Host: auth-htpasswd.example.org
- Authorization: Basic ZGVzOmRlcw==
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200 } ];
- ok($tf->handle_http($t) == 0, 'Basic-Auth: Valid Auth-token - htpasswd (des)');
- $t->{REQUEST} = ( <<EOF
- GET /server-config HTTP/1.0
- Host: auth-htpasswd.example.org
- Authorization: basic ZGVzOmRlcw==
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200 } ];
- ok($tf->handle_http($t) == 0, 'Basic-Auth: Valid Auth-token - htpasswd (des) (lowercase)');
- $t->{REQUEST} = ( <<EOF
- GET /server-config HTTP/1.0
- Host: auth-htpasswd.example.org
- Authorization: Basic c2hhOnNoYQ==
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200 } ];
- ok($tf->handle_http($t) == 0, 'Basic-Auth: Valid Auth-token - htpasswd (sha)');
- $t->{REQUEST} = ( <<EOF
- GET /server-config HTTP/1.0
- Host: auth-htpasswd.example.org
- Authorization: Basic c2hhOnNoYg==
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 401 } ];
- ok($tf->handle_http($t) == 0, 'Basic-Auth: Valid Auth-token - htpasswd (sha, wrong password)');
- SKIP: {
- skip "no md5 for crypt under cygwin", 1 if $^O eq 'cygwin';
- $t->{REQUEST} = ( <<EOF
- GET /server-config HTTP/1.0
- Host: auth-htpasswd.example.org
- Authorization: Basic bWQ1Om1kNQ==
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200 } ];
- ok($tf->handle_http($t) == 0, 'Basic-Auth: Valid Auth-token - htpasswd (md5)');
- }
- $t->{REQUEST} = ( <<EOF
- GET /server-config HTTP/1.0
- Authorization: Basic bWQ1Om1kNA==
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 401 } ];
- ok($tf->handle_http($t) == 0, 'Basic-Auth: Valid Auth-token');
- ## this should not crash
- $t->{REQUEST} = ( <<EOF
- GET /server-status HTTP/1.0
- User-Agent: Wget/1.9.1
- Authorization: Digest username="jan", realm="jan", nonce="9a5428ccc05b086a08d918e73b01fc6f",
- uri="/server-status", response="ea5f7d9a30b8b762f9610ccb87dea74f"
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 401 } ];
- ok($tf->handle_http($t) == 0, 'Digest-Auth: missing qop, no crash');
- ## this should not crash
- $t->{REQUEST} = ( <<EOF
- GET /server-status HTTP/1.0
- User-Agent: Wget/1.9.1
- Authorization: Digest username="jan", realm="jan",
- nonce="b1d12348b4620437c43dd61c50ae4639",
- uri="/MJ-BONG.xm.mpc", qop=auth, noncecount=00000001",
- cnonce="036FCA5B86F7E7C4965C7F9B8FE714B7",
- response="29B32C2953C763C6D033C8A49983B87E"
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 400 } ];
- ok($tf->handle_http($t) == 0, 'Digest-Auth: missing nc (noncecount instead), no crash');
- $t->{REQUEST} = ( <<EOF
- GET /server-status HTTP/1.0
- Authorization: Basic =
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 401 } ];
- ok($tf->handle_http($t) == 0, 'Basic-Auth: Invalid Base64');
- $t->{REQUEST} = ( <<EOF
- GET /server-status HTTP/1.0
- User-Agent: Wget/1.9.1
- Authorization: Digest username="jan", realm="jan",
- nonce="b1d12348b4620437c43dd61c50ae4639", algorithm="md5-sess",
- uri="/MJ-BONG.xm.mpc", qop=auth, noncecount=00000001",
- cnonce="036FCA5B86F7E7C4965C7F9B8FE714B7",
- nc="asd",
- response="29B32C2953C763C6D033C8A49983B87E"
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 401 } ];
- ok($tf->handle_http($t) == 0, 'Digest-Auth: md5-sess + missing cnonce');
- $t->{REQUEST} = ( <<EOF
- GET /server-status HTTP/1.0
- User-Agent: Wget/1.9.1
- Authorization: Digest username="jan", realm="jan",
- nonce="b1d12348b4620437c43dd61c50ae4639", algorithm="md5-sess",
- uri="/MJ-BONG.xm.mpc", qop=auth, noncecount=00000001",
- cnonce="036FCA5B86F7E7C4965C7F9B8FE714B7",
- nc="asd",
- response="29B32C2953C763C6D033C8A49983B87E"
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 401 } ];
- ok($tf->handle_http($t) == 0, 'Digest-Auth: trailing WS');
- ok($tf->stop_proc == 0, "Stopping lighttpd");
|