Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-shell
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-shell
Commits
5287df54
Commit
5287df54
authored
Aug 28, 2014
by
uran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Security issue: imported URLs are stored along with password.
parent
91753e93
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
2 deletions
+20
-2
lib/gitlab_projects.rb
lib/gitlab_projects.rb
+20
-2
No files found.
lib/gitlab_projects.rb
View file @
5287df54
...
...
@@ -94,6 +94,20 @@ class GitlabProjects
FileUtils
.
rm_rf
(
full_path
)
end
def
mask_password_in_url
(
url
)
result
=
URI
(
url
)
result
.
password
=
"*****"
unless
result
.
password
.
nil?
result
rescue
url
end
def
remove_origin_in_repo
cmd
=
%W(git --git-dir=
#{
full_path
}
remote remove origin)
pid
=
Process
.
spawn
(
*
cmd
)
Process
.
wait
(
pid
)
end
# Import project via git clone --bare
# URL must be publicly cloneable
def
import_project
...
...
@@ -101,10 +115,11 @@ class GitlabProjects
return
false
if
File
.
exists?
(
full_path
)
@source
=
ARGV
.
shift
masked_source
=
mask_password_in_url
(
@source
)
# timeout for clone
timeout
=
(
ARGV
.
shift
||
120
).
to_i
$logger
.
info
"Importing project
#{
@project_name
}
from <
#{
@
source
}
> to <
#{
full_path
}
>."
$logger
.
info
"Importing project
#{
@project_name
}
from <
#{
masked_
source
}
> to <
#{
full_path
}
>."
cmd
=
%W(git clone --bare --
#{
@source
}
#{
full_path
}
)
pid
=
Process
.
spawn
(
*
cmd
)
...
...
@@ -114,7 +129,7 @@ class GitlabProjects
Process
.
wait
(
pid
)
end
rescue
Timeout
::
Error
$logger
.
error
"Importing project
#{
@project_name
}
from <
#{
@
source
}
> failed due to timeout."
$logger
.
error
"Importing project
#{
@project_name
}
from <
#{
masked_
source
}
> failed due to timeout."
Process
.
kill
(
'KILL'
,
pid
)
Process
.
wait
...
...
@@ -122,6 +137,9 @@ class GitlabProjects
false
else
self
.
class
.
create_hooks
(
full_path
)
# The project was imported successfully.
# Remove the origin URL since it may contain password.
remove_origin_in_repo
end
end
...
...
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