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
f64c6e49
Unverified
Commit
f64c6e49
authored
Mar 20, 2018
by
Carl Bergquist
Committed by
GitHub
Mar 20, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #11258 from mitjaziv/hide-credentials
add regex search/replace of username/password in urls
parents
720711d1
56695965
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
pkg/api/admin.go
+9
-0
No files found.
pkg/api/admin.go
View file @
f64c6e49
package
api
package
api
import
(
import
(
"regexp"
"strings"
"strings"
"github.com/grafana/grafana/pkg/bus"
"github.com/grafana/grafana/pkg/bus"
...
@@ -21,6 +22,14 @@ func AdminGetSettings(c *m.ReqContext) {
...
@@ -21,6 +22,14 @@ func AdminGetSettings(c *m.ReqContext) {
if
strings
.
Contains
(
keyName
,
"secret"
)
||
strings
.
Contains
(
keyName
,
"password"
)
||
(
strings
.
Contains
(
keyName
,
"provider_config"
))
{
if
strings
.
Contains
(
keyName
,
"secret"
)
||
strings
.
Contains
(
keyName
,
"password"
)
||
(
strings
.
Contains
(
keyName
,
"provider_config"
))
{
value
=
"************"
value
=
"************"
}
}
if
strings
.
Contains
(
keyName
,
"url"
)
{
var
rgx
=
regexp
.
MustCompile
(
`.*:\/\/([^:]*):([^@]*)@.*?$`
)
var
subs
=
rgx
.
FindAllSubmatch
([]
byte
(
value
),
-
1
)
if
subs
!=
nil
&&
len
(
subs
[
0
])
==
3
{
value
=
strings
.
Replace
(
value
,
string
(
subs
[
0
][
1
]),
"******"
,
1
)
value
=
strings
.
Replace
(
value
,
string
(
subs
[
0
][
2
]),
"******"
,
1
)
}
}
jsonSec
[
keyName
]
=
value
jsonSec
[
keyName
]
=
value
}
}
...
...
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