Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
dfc33c89
Commit
dfc33c89
authored
Jul 04, 2016
by
Dylan William Hardison
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 1284277 - allow inbound_proxy to be set to '*'
r=dkl
parent
3f75ddd6
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
110 additions
and
21 deletions
+110
-21
Advanced.pm
Bugzilla/Config/Advanced.pm
+12
-1
Util.pm
Bugzilla/Util.pm
+14
-19
013remote_ip.t
t/013remote_ip.t
+81
-0
advanced.html.tmpl
template/en/default/admin/params/advanced.html.tmpl
+3
-1
No files found.
Bugzilla/Config/Advanced.pm
View file @
dfc33c89
...
@@ -26,7 +26,7 @@ use constant get_param_list => (
...
@@ -26,7 +26,7 @@ use constant get_param_list => (
name
=>
'inbound_proxies'
,
name
=>
'inbound_proxies'
,
type
=>
't'
,
type
=>
't'
,
default
=>
''
,
default
=>
''
,
checker
=>
\&
check_i
p
checker
=>
\&
check_i
nbound_proxies
},
},
{
{
...
@@ -44,4 +44,15 @@ use constant get_param_list => (
...
@@ -44,4 +44,15 @@ use constant get_param_list => (
},
},
);
);
sub
check_inbound_proxies
{
my
$inbound_proxies
=
shift
;
return
""
if
$inbound_proxies
eq
"*"
;
my
@proxies
=
split
(
/[\s,]+/
,
$inbound_proxies
);
foreach
my
$proxy
(
@proxies
)
{
validate_ip
(
$proxy
)
||
return
"$proxy is not a valid IPv4 or IPv6 address"
;
}
return
""
;
}
1
;
1
;
Bugzilla/Util.pm
View file @
dfc33c89
...
@@ -34,7 +34,7 @@ use Date::Parse;
...
@@ -34,7 +34,7 @@ use Date::Parse;
use
Date::
Format
;
use
Date::
Format
;
use
Digest
;
use
Digest
;
use
Email::
Address
;
use
Email::
Address
;
use
List::
Util
qw(first
)
;
use
List::
MoreUtils
qw(none
)
;
use
Scalar::
Util
qw(tainted blessed)
;
use
Scalar::
Util
qw(tainted blessed)
;
use
Text::
Wrap
;
use
Text::
Wrap
;
use
Encode
qw(encode decode resolve_alias)
;
use
Encode
qw(encode decode resolve_alias)
;
...
@@ -284,28 +284,23 @@ sub correct_urlbase {
...
@@ -284,28 +284,23 @@ sub correct_urlbase {
}
}
}
}
# Returns the real remote address of the client,
sub
remote_ip
{
sub
remote_ip
{
my
$ip
=
$ENV
{
'REMOTE_ADDR'
}
||
'127.0.0.1'
;
my
$remote_ip
=
$ENV
{
'REMOTE_ADDR'
}
||
'127.0.0.1'
;
my
@proxies
=
split
(
/[\s,]+/
,
Bugzilla
->
params
->
{
'inbound_proxies'
});
my
@proxies
=
split
(
/[\s,]+/
,
Bugzilla
->
params
->
{
inbound_proxies
});
my
@x_forwarded_for
=
split
(
/[\s,]+/
,
$ENV
{
HTTP_X_FORWARDED_FOR
}
//
''
);
# If the IP address is one of our trusted proxies, then we look at
# the X-Forwarded-For header to determine the real remote IP address.
return
$remote_ip
unless
@x_forwarded_for
;
if
(
$ENV
{
'HTTP_X_FORWARDED_FOR'
}
&&
first
{
$_
eq
$ip
}
@proxies
)
{
return
$x_forwarded_for
[
0
]
if
$proxies
[
0
]
eq
'*'
;
my
@ips
=
split
(
/[\s,]+/
,
$ENV
{
'HTTP_X_FORWARDED_FOR'
});
return
$remote_ip
if
none
{
$_
eq
$remote_ip
}
@proxies
;
# This header can contain several IP addresses. We want the
# IP address of the machine which connected to our proxies as
foreach
my
$ip
(
reverse
@x_forwarded_for
)
{
# all other IP addresses may be fake or internal ones.
if
(
none
{
$_
eq
$ip
}
@proxies
)
{
# Note that this may block a whole external proxy, but we have
# no way to determine if this proxy is malicious or trustable.
foreach
my
$remote_ip
(
reverse
@ips
)
{
if
(
!
first
{
$_
eq
$remote_ip
}
@proxies
)
{
# Keep the original IP address if the remote IP is invalid.
# Keep the original IP address if the remote IP is invalid.
$ip
=
validate_ip
(
$remote_ip
)
||
$ip
;
return
validate_ip
(
$ip
)
||
$remote_ip
;
last
;
}
}
}
}
}
return
$ip
;
return
$
remote_
ip
;
}
}
sub
validate_ip
{
sub
validate_ip
{
...
...
t/013remote_ip.t
0 → 100644
View file @
dfc33c89
#!/usr/bin/perl
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# This Source Code Form is "Incompatible With Secondary Licenses", as
# defined by the Mozilla Public License, v. 2.0.
use
strict
;
use
lib
qw(. lib t)
;
use
Test::
More
qw(no_plan)
;
use
Bugzilla
;
use
Bugzilla::
Util
qw(remote_ip)
;
my
$params
=
Bugzilla
->
params
;
{
local
$params
->
{
inbound_proxies
}
=
'10.0.0.1,10.0.0.2'
;
local
$ENV
{
REMOTE_ADDR
}
=
'10.0.0.2'
;
local
$ENV
{
HTTP_X_FORWARDED_FOR
}
=
'10.42.42.42'
;
is
(
remote_ip
(),
'10.42.42.42'
,
"from proxy 2"
);
}
{
local
$params
->
{
inbound_proxies
}
=
'10.0.0.1,10.0.0.2'
;
local
$ENV
{
REMOTE_ADDR
}
=
'10.0.0.1'
;
local
$ENV
{
HTTP_X_FORWARDED_FOR
}
=
'10.42.42.42'
;
is
(
remote_ip
(),
'10.42.42.42'
,
"from proxy 1"
);
}
{
local
$params
->
{
inbound_proxies
}
=
'10.0.0.1,10.0.0.2'
;
local
$ENV
{
REMOTE_ADDR
}
=
'10.0.0.3'
;
local
$ENV
{
HTTP_X_FORWARDED_FOR
}
=
'10.42.42.42'
;
is
(
remote_ip
(),
'10.0.0.3'
,
"not a proxy"
);
}
{
local
$params
->
{
inbound_proxies
}
=
'*'
;
local
$ENV
{
REMOTE_ADDR
}
=
'10.0.0.3'
;
local
$ENV
{
HTTP_X_FORWARDED_FOR
}
=
'10.42.42.42,1.4.9.2'
;
is
(
remote_ip
(),
'10.42.42.42'
,
"always proxy"
);
}
{
local
$params
->
{
inbound_proxies
}
=
''
;
local
$ENV
{
REMOTE_ADDR
}
=
'10.9.8.7'
;
local
$ENV
{
HTTP_X_FORWARDED_FOR
}
=
'10.42.42.42,1.4.9.2'
;
is
(
remote_ip
(),
'10.9.8.7'
,
"never proxy"
);
}
{
local
$params
->
{
inbound_proxies
}
=
'10.0.0.1,2600:cafe::cafe:ffff:bf42:4998'
;
local
$ENV
{
REMOTE_ADDR
}
=
'2600:cafe::cafe:ffff:bf42:4998'
;
local
$ENV
{
HTTP_X_FORWARDED_FOR
}
=
'2600:cafe::cafe:ffff:bf42:BEEF'
;
is
(
remote_ip
(),
'2600:cafe::cafe:ffff:bf42:BEEF'
,
"from proxy ipv6"
);
}
{
local
$params
->
{
inbound_proxies
}
=
'10.0.0.1,2600:cafe::cafe:ffff:bf42:4998'
;
local
$ENV
{
REMOTE_ADDR
}
=
'2600:cafe::cafe:ffff:bf42:DEAD'
;
local
$ENV
{
HTTP_X_FORWARDED_FOR
}
=
'2600:cafe::cafe:ffff:bf42:BEEF'
;
is
(
remote_ip
(),
'2600:cafe::cafe:ffff:bf42:DEAD'
,
"invalid proxy ipv6"
);
}
{
local
$params
->
{
inbound_proxies
}
=
'*'
;
local
$ENV
{
REMOTE_ADDR
}
=
'2600:cafe::cafe:ffff:bf42:DEAD'
;
local
$ENV
{
HTTP_X_FORWARDED_FOR
}
=
''
;
is
(
remote_ip
(),
'2600:cafe::cafe:ffff:bf42:DEAD'
,
"always proxy ipv6"
);
}
template/en/default/admin/params/advanced.html.tmpl
View file @
dfc33c89
...
@@ -54,7 +54,9 @@
...
@@ -54,7 +54,9 @@
_ " user is the IP address of the proxy. If you enter a comma-separated"
_ " user is the IP address of the proxy. If you enter a comma-separated"
_ " list of IPs in this parameter, then Bugzilla will trust any"
_ " list of IPs in this parameter, then Bugzilla will trust any"
_ " <code>X-Forwarded-For</code> header sent from those IPs,"
_ " <code>X-Forwarded-For</code> header sent from those IPs,"
_ " and use the value of that header as the end user's IP address.",
_ " and use the value of that header as the end user's IP address."
_ " If set to a *, $terms.Bugzilla will trust the first value in the "
_ " X-Forwarded-For header.",
proxy_url =>
proxy_url =>
"Bugzilla may have to access the web to get notifications about"
"Bugzilla may have to access the web to get notifications about"
...
...
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