Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpnSense
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
OpnSense
Commits
5e688567
Commit
5e688567
authored
Jul 07, 2015
by
Ad Schellevis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(legacy) more isset() cleanups
parent
af0457f2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
auth.inc
src/etc/inc/auth.inc
+6
-2
No files found.
src/etc/inc/auth.inc
View file @
5e688567
...
...
@@ -1214,7 +1214,7 @@ function is_account_disabled($username) {
function
auth_get_authserver
(
$name
)
{
global
$config
;
if
(
is_array
(
$config
[
'system'
][
'authserver'
]))
{
if
(
is
set
(
$config
[
'system'
][
'authserver'
])
&&
is
_array
(
$config
[
'system'
][
'authserver'
]))
{
foreach
(
$config
[
'system'
][
'authserver'
]
as
$authcfg
)
{
if
(
$authcfg
[
'name'
]
==
$name
)
return
$authcfg
;
...
...
@@ -1319,7 +1319,11 @@ function session_auth() {
/* Validate incoming login request */
if
(
isset
(
$_POST
[
'login'
])
&&
!
empty
(
$_POST
[
'usernamefld'
])
&&
!
empty
(
$_POST
[
'passwordfld'
]))
{
$authcfg
=
auth_get_authserver
(
$config
[
'system'
][
'webgui'
][
'authmode'
]);
if
(
isset
(
$config
[
'system'
][
'webgui'
][
'authmode'
]))
{
$authcfg
=
auth_get_authserver
(
$config
[
'system'
][
'webgui'
][
'authmode'
]);
}
else
{
$authcfg
=
null
;
}
if
(
authenticate_user
(
$_POST
[
'usernamefld'
],
$_POST
[
'passwordfld'
],
$authcfg
)
||
authenticate_user
(
$_POST
[
'usernamefld'
],
$_POST
[
'passwordfld'
]))
{
// Generate a new id to avoid session fixation
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment