Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
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
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
0a4a6f59
Commit
0a4a6f59
authored
May 13, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3918 from joeandaverde/unsanitized
System calls to gitlab-shell were using unsanitized user input
parents
d3ca12a1
ba21546a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
lib/gitlab/backend/shell.rb
lib/gitlab/backend/shell.rb
+7
-7
No files found.
lib/gitlab/backend/shell.rb
View file @
0a4a6f59
...
@@ -10,7 +10,7 @@ module Gitlab
...
@@ -10,7 +10,7 @@ module Gitlab
# add_repository("gitlab/gitlab-ci")
# add_repository("gitlab/gitlab-ci")
#
#
def
add_repository
(
name
)
def
add_repository
(
name
)
system
(
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects add-project
#{
name
}
.git"
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"add-project"
,
"
#{
name
}
.git"
end
end
# Import repository
# Import repository
...
@@ -21,7 +21,7 @@ module Gitlab
...
@@ -21,7 +21,7 @@ module Gitlab
# import_repository("gitlab/gitlab-ci", "https://github.com/randx/six.git")
# import_repository("gitlab/gitlab-ci", "https://github.com/randx/six.git")
#
#
def
import_repository
(
name
,
url
)
def
import_repository
(
name
,
url
)
system
(
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects import-project
#{
name
}
.git
#{
url
}
"
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"import-project"
,
"
#{
name
}
.git"
,
url
end
end
# Move repository
# Move repository
...
@@ -33,7 +33,7 @@ module Gitlab
...
@@ -33,7 +33,7 @@ module Gitlab
# mv_repository("gitlab/gitlab-ci", "randx/gitlab-ci-new.git")
# mv_repository("gitlab/gitlab-ci", "randx/gitlab-ci-new.git")
#
#
def
mv_repository
(
path
,
new_path
)
def
mv_repository
(
path
,
new_path
)
system
(
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects mv-project
#{
path
}
.git
#{
new_path
}
.git"
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"mv-project"
,
"
#{
path
}
.git"
,
"
#{
new_path
}
.git"
end
end
# Fork repository to new namespace
# Fork repository to new namespace
...
@@ -45,7 +45,7 @@ module Gitlab
...
@@ -45,7 +45,7 @@ module Gitlab
# fork_repository("gitlab/gitlab-ci", "randx")
# fork_repository("gitlab/gitlab-ci", "randx")
#
#
def
fork_repository
(
path
,
fork_namespace
)
def
fork_repository
(
path
,
fork_namespace
)
system
(
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects fork-project
#{
path
}
.git
#{
fork_namespace
}
"
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"fork-project"
,
"
#{
path
}
.git"
,
fork_namespace
end
end
# Remove repository from file system
# Remove repository from file system
...
@@ -56,7 +56,7 @@ module Gitlab
...
@@ -56,7 +56,7 @@ module Gitlab
# remove_repository("gitlab/gitlab-ci")
# remove_repository("gitlab/gitlab-ci")
#
#
def
remove_repository
(
name
)
def
remove_repository
(
name
)
system
(
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects rm-project
#{
name
}
.git"
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"rm-project"
,
"
#{
name
}
.git"
end
end
# Add new key to gitlab-shell
# Add new key to gitlab-shell
...
@@ -65,7 +65,7 @@ module Gitlab
...
@@ -65,7 +65,7 @@ module Gitlab
# add_key("key-42", "sha-rsa ...")
# add_key("key-42", "sha-rsa ...")
#
#
def
add_key
(
key_id
,
key_content
)
def
add_key
(
key_id
,
key_content
)
system
(
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-keys add-key
#{
key_id
}
\"
#{
key_content
}
\"
"
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-keys"
,
"add-key"
,
key_id
,
key_content
end
end
# Remove ssh key from gitlab shell
# Remove ssh key from gitlab shell
...
@@ -74,7 +74,7 @@ module Gitlab
...
@@ -74,7 +74,7 @@ module Gitlab
# remove_key("key-342", "sha-rsa ...")
# remove_key("key-342", "sha-rsa ...")
#
#
def
remove_key
(
key_id
,
key_content
)
def
remove_key
(
key_id
,
key_content
)
system
(
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-keys rm-key
#{
key_id
}
\"
#{
key_content
}
\"
"
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-keys"
,
"rm-key"
,
key_id
,
key_content
end
end
# Add empty directory for storing repositories
# Add empty directory for storing repositories
...
...
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