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
b1d04cf9
Commit
b1d04cf9
authored
Sep 05, 2018
by
Stan Hu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Block loopback addresses in UrlBlocker
Closes
https://gitlab.com/gitlab-org/gitlab-ce/issues/51128
parent
ab22dae9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
33 additions
and
1 deletion
+33
-1
changelogs/unreleased/sh-block-other-localhost.yml
changelogs/unreleased/sh-block-other-localhost.yml
+5
-0
lib/gitlab/url_blocker.rb
lib/gitlab/url_blocker.rb
+7
-0
spec/lib/gitlab/url_blocker_spec.rb
spec/lib/gitlab/url_blocker_spec.rb
+21
-1
No files found.
changelogs/unreleased/sh-block-other-localhost.yml
0 → 100644
View file @
b1d04cf9
---
title
:
Block loopback addresses in UrlBlocker
merge_request
:
author
:
type
:
security
lib/gitlab/url_blocker.rb
View file @
b1d04cf9
...
...
@@ -30,6 +30,7 @@ module Gitlab
end
validate_localhost!
(
addrs_info
)
unless
allow_localhost
validate_loopback!
(
addrs_info
)
unless
allow_localhost
validate_local_network!
(
addrs_info
)
unless
allow_local_network
validate_link_local!
(
addrs_info
)
unless
allow_local_network
...
...
@@ -84,6 +85,12 @@ module Gitlab
raise
BlockedUrlError
,
"Requests to localhost are not allowed"
end
def
validate_loopback!
(
addrs_info
)
return
unless
addrs_info
.
any?
{
|
addr
|
addr
.
ipv4_loopback?
||
addr
.
ipv6_loopback?
}
raise
BlockedUrlError
,
"Requests to loopback addresses are not allowed"
end
def
validate_local_network!
(
addrs_info
)
return
unless
addrs_info
.
any?
{
|
addr
|
addr
.
ipv4_private?
||
addr
.
ipv6_sitelocal?
}
...
...
spec/lib/gitlab/url_blocker_spec.rb
View file @
b1d04cf9
...
...
@@ -29,6 +29,16 @@ describe Gitlab::UrlBlocker do
expect
(
described_class
.
blocked_url?
(
'https://gitlab.com/foo/foo.git'
,
protocols:
[
'http'
])).
to
be
true
end
it
'returns true for localhost IPs'
do
expect
(
described_class
.
blocked_url?
(
'https://0.0.0.0/foo/foo.git'
)).
to
be
true
expect
(
described_class
.
blocked_url?
(
'https://[::1]/foo/foo.git'
)).
to
be
true
expect
(
described_class
.
blocked_url?
(
'https://127.0.0.1/foo/foo.git'
)).
to
be
true
end
it
'returns true for loopback IP'
do
expect
(
described_class
.
blocked_url?
(
'https://127.0.0.2/foo/foo.git'
)).
to
be
true
end
it
'returns true for alternative version of 127.0.0.1 (0177.1)'
do
expect
(
described_class
.
blocked_url?
(
'https://0177.1:65535/foo/foo.git'
)).
to
be
true
end
...
...
@@ -84,6 +94,16 @@ describe Gitlab::UrlBlocker do
end
end
it
'allows localhost endpoints'
do
expect
(
described_class
).
not_to
be_blocked_url
(
'http://0.0.0.0'
,
allow_localhost:
true
)
expect
(
described_class
).
not_to
be_blocked_url
(
'http://localhost'
,
allow_localhost:
true
)
expect
(
described_class
).
not_to
be_blocked_url
(
'http://127.0.0.1'
,
allow_localhost:
true
)
end
it
'allows loopback endpoints'
do
expect
(
described_class
).
not_to
be_blocked_url
(
'http://127.0.0.2'
,
allow_localhost:
true
)
end
it
'allows IPv4 link-local endpoints'
do
expect
(
described_class
).
not_to
be_blocked_url
(
'http://169.254.169.254'
)
expect
(
described_class
).
not_to
be_blocked_url
(
'http://169.254.168.100'
)
...
...
@@ -122,7 +142,7 @@ describe Gitlab::UrlBlocker do
end
def
stub_domain_resolv
(
domain
,
ip
)
allow
(
Addrinfo
).
to
receive
(
:getaddrinfo
).
with
(
domain
,
any_args
).
and_return
([
double
(
ip_address:
ip
,
ipv4_private?:
true
,
ipv6_link_local?:
false
)])
allow
(
Addrinfo
).
to
receive
(
:getaddrinfo
).
with
(
domain
,
any_args
).
and_return
([
double
(
ip_address:
ip
,
ipv4_private?:
true
,
ipv6_link_local?:
false
,
ipv4_loopback?:
false
,
ipv6_loopback?:
false
)])
end
def
unstub_domain_resolv
...
...
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