Password written in clear text in heat-api.log with DEBUG mode
Bug #1664792 reported by
Tristan Cacqueray
This bug affects 2 people
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
OpenStack Heat |
Fix Released
|
Medium
|
Rico Lin | ||
Mitaka |
In Progress
|
Undecided
|
Crag Wolfe | ||
Newton |
In Progress
|
Undecided
|
Crag Wolfe | ||
Ocata |
In Progress
|
Undecided
|
Crag Wolfe | ||
Pike |
Fix Released
|
Medium
|
Rico Lin |
Bug Description
Reported by Hans Feldt, Ericsson
Affected code:
heat/common/
31 class JSONResponseSer
32
33 def to_json(self, data):
34 def sanitizer(obj):
35 if isinstance(obj, datetime.datetime):
36 return obj.isoformat()
37 return six.text_type(obj)
38
39 response = jsonutils.
40 LOG.debug("JSON response : %s" % response) # <- HERE
description: | updated |
Changed in heat: | |
importance: | Undecided → Medium |
Changed in heat: | |
status: | New → Confirmed |
Changed in heat: | |
milestone: | none → pike-1 |
To post a comment you must log in.
While this is not a security vulnerability, masking sensitive data in log is a good to have security hardening measure.