Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove URI encoding of user and pass params #55

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions privacyidea_radius.pm
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,6 @@ use Data::Dump;
use Try::Tiny;
use JSON;
use Time::HiRes qw( gettimeofday tv_interval );
use URI::Encode;
use Encode::Guess;

# use ...
Expand Down Expand Up @@ -436,10 +435,6 @@ sub authenticate {
} elsif ( $Config->{ADD_EMPTY_PASS} =~ /true/i ) {
$params{"pass"} = "";
}
# URL encode username and password
my $uri = URI::Encode->new( { encode_reserved => 0 } );
$params{"user"} = $uri->encode($params{"user"});
$params{"pass"} = $uri->encode($params{"pass"});
if ( exists( $RAD_REQUEST{'NAS-IP-Address'} ) ) {
$params{"client"} = $RAD_REQUEST{'NAS-IP-Address'};
&radiusd::radlog( Info, "Setting client IP to $params{'client'}." );
Expand Down