Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
0b50582b
Commit
0b50582b
authored
Dec 17, 2018
by
Jacob Richard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding CIDR capability to auth_proxy whitelist
parent
7653d8a1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
7 deletions
+21
-7
pkg/middleware/auth_proxy.go
+21
-7
No files found.
pkg/middleware/auth_proxy.go
View file @
0b50582b
...
...
@@ -198,17 +198,31 @@ func checkAuthenticationProxy(remoteAddr string, proxyHeaderValue string) error
}
proxies
:=
strings
.
Split
(
setting
.
AuthProxyWhitelist
,
","
)
sourceIP
,
_
,
err
:=
net
.
SplitHostPort
(
remoteAddr
)
if
err
!=
nil
{
return
err
var
proxyObjs
[]
*
net
.
IPNet
for
_
,
proxy
:=
range
proxies
{
proxyObjs
=
append
(
proxyObjs
,
coerceProxyAddress
(
proxy
))
}
// Compare allowed IP addresses to actual address
for
_
,
proxyIP
:=
range
proxies
{
if
sourceIP
==
strings
.
TrimSpace
(
proxyIP
)
{
sourceIP
,
_
,
_
:=
net
.
SplitHostPort
(
remoteAddr
)
sourceObj
:=
net
.
ParseIP
(
sourceIP
)
for
_
,
proxyObj
:=
range
proxyObjs
{
if
proxyObj
.
Contains
(
sourceObj
)
{
return
nil
}
}
return
fmt
.
Errorf
(
"Request for user (%s) from %s is not from the authentication proxy"
,
proxyHeaderValue
,
sourceIP
)
}
func
coerceProxyAddress
(
proxyAddr
string
)
*
net
.
IPNet
{
proxyAddr
=
strings
.
TrimSpace
(
proxyAddr
)
if
!
strings
.
Contains
(
proxyAddr
,
"/"
)
{
proxyAddr
=
strings
.
Join
([]
string
{
proxyAddr
,
"32"
},
"/"
)
}
_
,
network
,
err
:=
net
.
ParseCIDR
(
proxyAddr
)
if
err
!=
nil
{
fmt
.
Println
(
err
)
}
return
network
}
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