Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Nextcloud
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Nextcloud
Commits
74b5e22a
Commit
74b5e22a
authored
12 years ago
by
Frank Karlitschek
Browse files
Options
Downloads
Patches
Plain Diff
some more csrf fixes
parent
d96e962f
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
core/templates/login.php
+1
-0
1 addition, 0 deletions
core/templates/login.php
index.php
+7
-7
7 additions, 7 deletions
index.php
lib/util.php
+3
-0
3 additions, 0 deletions
lib/util.php
with
11 additions
and
7 deletions
core/templates/login.php
+
1
−
0
View file @
74b5e22a
...
...
@@ -12,6 +12,7 @@
<p
class=
"infield"
>
<label
for=
"password"
class=
"infield"
>
<?php
echo
$l
->
t
(
'Password'
);
?>
</label>
<input
type=
"password"
name=
"password"
id=
"password"
value=
""
required
<?php
echo
!
empty
(
$_POST
[
'user'
])
?
'autofocus'
:
''
;
?>
/>
<input
type=
"hidden"
name=
"sectoken"
id=
"sectoken"
value=
"
<?php
echo
(
$_
[
'sectoken'
]);
?>
"
/>
</p>
<input
type=
"checkbox"
name=
"remember_login"
value=
"1"
id=
"remember_login"
/><label
for=
"remember_login"
>
<?php
echo
$l
->
t
(
'remember'
);
?>
</label>
<input
type=
"submit"
id=
"submit"
class=
"login"
value=
"
<?php
echo
$l
->
t
(
'Log in'
);
?>
"
/>
...
...
This diff is collapsed.
Click to expand it.
index.php
+
7
−
7
View file @
74b5e22a
...
...
@@ -59,10 +59,9 @@ elseif(OC_User::isLoggedIn()) {
else
{
OC_Util
::
redirectToDefaultPage
();
}
}
// For all others cases, we display the guest page :
else
{
}
else
{
OC_App
::
loadApps
();
$error
=
false
;
...
...
@@ -80,10 +79,9 @@ else {
else
{
OC_User
::
unsetMagicInCookie
();
}
}
// Someone wants to log in :
elseif
(
isset
(
$_POST
[
"user"
])
&&
isset
(
$_POST
[
'password'
]))
{
}
elseif
(
isset
(
$_POST
[
"user"
])
and
isset
(
$_POST
[
'password'
])
and
isset
(
$_SESSION
[
'sectoken'
])
and
isset
(
$_POST
[
'sectoken'
])
and
(
$_SESSION
[
'sectoken'
]
==
$_POST
[
'sectoken'
])
)
{
if
(
OC_User
::
login
(
$_POST
[
"user"
],
$_POST
[
"password"
]))
{
if
(
!
empty
(
$_POST
[
"remember_login"
])){
if
(
defined
(
"DEBUG"
)
&&
DEBUG
)
{
...
...
@@ -100,9 +98,9 @@ else {
}
else
{
$error
=
true
;
}
}
// The user is already authenticated using Apaches AuthType Basic... very usable in combination with LDAP
elseif
(
isset
(
$_SERVER
[
"PHP_AUTH_USER"
])
&&
isset
(
$_SERVER
[
"PHP_AUTH_PW"
])){
}
elseif
(
isset
(
$_SERVER
[
"PHP_AUTH_USER"
])
&&
isset
(
$_SERVER
[
"PHP_AUTH_PW"
])){
if
(
OC_User
::
login
(
$_SERVER
[
"PHP_AUTH_USER"
],
$_SERVER
[
"PHP_AUTH_PW"
]))
{
//OC_Log::write('core',"Logged in with HTTP Authentication",OC_Log::DEBUG);
OC_User
::
unsetMagicInCookie
();
...
...
@@ -111,5 +109,7 @@ else {
$error
=
true
;
}
}
OC_Template
::
printGuestPage
(
''
,
'login'
,
array
(
'error'
=>
$error
,
'redirect'
=>
isset
(
$_REQUEST
[
'redirect_url'
])
?
$_REQUEST
[
'redirect_url'
]
:
''
));
$sectoken
=
rand
(
1000000
,
9999999
);
$_SESSION
[
'sectoken'
]
=
$sectoken
;
OC_Template
::
printGuestPage
(
''
,
'login'
,
array
(
'error'
=>
$error
,
'sectoken'
=>
$sectoken
,
'redirect'
=>
isset
(
$_REQUEST
[
'redirect_url'
])
?
$_REQUEST
[
'redirect_url'
]
:
''
));
}
This diff is collapsed.
Click to expand it.
lib/util.php
+
3
−
0
View file @
74b5e22a
...
...
@@ -253,6 +253,9 @@ class OC_Util {
}
else
{
$parameters
[
"username"
]
=
''
;
}
$sectoken
=
rand
(
1000000
,
9999999
);
$_SESSION
[
'sectoken'
]
=
$sectoken
;
$parameters
[
"sectoken"
]
=
$sectoken
;
OC_Template
::
printGuestPage
(
""
,
"login"
,
$parameters
);
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment