HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

[BUG+FIX] - Can't use Authentication URL with get paramets

Many other systems need additional params in url (for example TYPO3).

We created a plugin for TYPO3 for Single Sign On using jsConnect.

We modified: class.jsconnect.plugin.php

This line:
$Result = $Url.'?'.http_build_query($Query);

We changed to:
if (strpos($Url, '?') === false ) {
$Result = $Url.'?'.http_build_query($Query);
} else {
$Result = $Url.'&'.http_build_query($Query);
}

Please insert this patch in next version.

Comments

Sign In or Register to comment.