Explorar o código

Merge pull request #173 from oleg-nenashev/bug/Issue_54_EnvVars_IN_EventLog

Fixes #54. Do not dump WinSW environment variables to the Event log
Oleg Nenashev %!s(int64=8) %!d(string=hai) anos
pai
achega
098046c8e1
Modificáronse 1 ficheiros con 4 adicións e 1 borrados
  1. 4 1
      src/Core/ServiceWrapper/Main.cs

+ 4 - 1
src/Core/ServiceWrapper/Main.cs

@@ -210,10 +210,13 @@ namespace winsw
         protected override void OnStart(string[] _)
         {
             _envs = _descriptor.EnvironmentVariables;
+            // TODO: Disabled according to security concerns in https://github.com/kohsuke/winsw/issues/54
+            // Could be restored, but unlikely it's required in event logs at all
+            /**
             foreach (string key in _envs.Keys)
             {
                 LogEvent("envar " + key + '=' + _envs[key]);
-            }
+            }*/
 
             HandleFileCopies();