Browse Source

restricted secure command from password logging

bugfixes
harshadyeola 10 years ago
parent
commit
4cb8f3616e
  1. 4
      ee/cli/plugins/secure.py

4
ee/cli/plugins/secure.py

@ -68,10 +68,10 @@ class EESecureController(CementBaseController):
password=self.app.pargs.user_pass))
Log.info(self, "Successfully changed HTTP authentication"
" username to : {username}"
.format(username=self.app.pargs.user_input))
.format(username=self.app.pargs.user_input), log=False)
Log.info(self, "Successfully changed HTTP authentication"
" password to : {password}"
.format(password=self.app.pargs.user_pass))
.format(password=self.app.pargs.user_pass), log=False)
@expose(hide=True)
def secure_port(self):

Loading…
Cancel
Save