diff options
author | Sheldon Hearn <sheldonh@FreeBSD.org> | 1999-09-20 18:28:18 +0000 |
---|---|---|
committer | Sheldon Hearn <sheldonh@FreeBSD.org> | 1999-09-20 18:28:18 +0000 |
commit | 85298d3fde7e42f2d31ada4c0d76eadb9b7f2ac9 (patch) | |
tree | 4cb85a8d03fd4f50a7dd83ed3fda9f4686508431 /www/p5-Apache-Radius/files | |
parent | 3caefb27c80b8ed09401fe6eb71f05babb37f5d8 (diff) |
Notes
Diffstat (limited to 'www/p5-Apache-Radius/files')
-rw-r--r-- | www/p5-Apache-Radius/files/patch-aa | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/www/p5-Apache-Radius/files/patch-aa b/www/p5-Apache-Radius/files/patch-aa new file mode 100644 index 000000000000..307c4fd128ba --- /dev/null +++ b/www/p5-Apache-Radius/files/patch-aa @@ -0,0 +1,11 @@ +--- AuthenRadius.pm.orig Sun Aug 1 00:14:23 1999 ++++ AuthenRadius.pm Mon Sep 20 20:05:38 1999 +@@ -37,7 +37,7 @@ + my $timeout = $r->dir_config("Auth_Radius_timeout") || 5; + + # Sanity for usernames and passwords. +- if (length $user > 64 or $user =~ /[^A-Za-z0-9]/) { ++ if (length $user > 64 or $user =~ /[^A-Za-z0-9@._-]/) { + $r->log_reason("Apache::AuthenRadius username too long or" + ."contains illegal characters", $r->uri); + $r->note_basic_auth_failure; |