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
dd53fad8
Unverified
Commit
dd53fad8
authored
5 years ago
by
Joas Schilling
Browse files
Options
Downloads
Patches
Plain Diff
Prevent creating users with existing files
Signed-off-by:
Joas Schilling
<
coding@schilljs.com
>
parent
19935a6a
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/private/User/Manager.php
+19
-7
19 additions, 7 deletions
lib/private/User/Manager.php
with
19 additions
and
7 deletions
lib/private/User/Manager.php
+
19
−
7
View file @
dd53fad8
...
...
@@ -294,10 +294,6 @@ class Manager extends PublicEmitter implements IUserManager {
* @return bool|IUser the created user or false
*/
public
function
createUser
(
$uid
,
$password
)
{
if
(
!
$this
->
verifyUid
(
$uid
))
{
return
false
;
}
$localBackends
=
[];
foreach
(
$this
->
backends
as
$backend
)
{
if
(
$backend
instanceof
Database
)
{
...
...
@@ -332,22 +328,30 @@ class Manager extends PublicEmitter implements IUserManager {
// Check the name for bad characters
// Allowed are: "a-z", "A-Z", "0-9" and "_.@-'"
if
(
preg_match
(
'/[^a-zA-Z0-9 _
\
.@\-\']/'
,
$uid
))
{
if
(
preg_match
(
'/[^a-zA-Z0-9 _.@\-\']/'
,
$uid
))
{
throw
new
\InvalidArgumentException
(
$l
->
t
(
'Only the following characters are allowed in a username:'
.
' "a-z", "A-Z", "0-9", and "_.@-\'"'
));
}
// No empty username
if
(
trim
(
$uid
)
===
''
)
{
throw
new
\InvalidArgumentException
(
$l
->
t
(
'A valid username must be provided'
));
}
// No whitespace at the beginning or at the end
if
(
trim
(
$uid
)
!==
$uid
)
{
throw
new
\InvalidArgumentException
(
$l
->
t
(
'Username contains whitespace at the beginning or at the end'
));
}
// Username only consists of 1 or 2 dots (directory traversal)
if
(
$uid
===
'.'
||
$uid
===
'..'
)
{
throw
new
\InvalidArgumentException
(
$l
->
t
(
'Username must not consist of dots only'
));
}
if
(
!
$this
->
verifyUid
(
$uid
))
{
throw
new
\InvalidArgumentException
(
$l
->
t
(
'Username is invalid because files already exist for this user'
));
}
// No empty password
if
(
trim
(
$password
)
===
''
)
{
throw
new
\InvalidArgumentException
(
$l
->
t
(
'A valid password must be provided'
));
...
...
@@ -623,10 +627,18 @@ class Manager extends PublicEmitter implements IUserManager {
private
function
verifyUid
(
string
$uid
):
bool
{
$appdata
=
'appdata_'
.
$this
->
config
->
getSystemValueString
(
'instanceid'
);
if
(
$uid
===
'.htaccess'
||
$uid
===
'files_external'
||
$uid
===
'.ocdata'
||
$uid
===
'owncloud.log'
||
$uid
===
'nextcloud.log'
||
$uid
===
$appdata
)
{
if
(
\in_array
(
$uid
,
[
'.htaccess'
,
'files_external'
,
'.ocdata'
,
'owncloud.log'
,
'nextcloud.log'
,
$appdata
],
true
))
{
return
false
;
}
return
true
;
$dataDirectory
=
$this
->
config
->
getSystemValueString
(
'datadirectory'
,
\OC
::
$SERVERROOT
.
'/data'
);
return
!
file_exists
(
rtrim
(
$dataDirectory
,
'/'
)
.
'/'
.
$uid
);
}
}
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