/* goodG2B() - use goodsource and badsink */
        private static void GoodG2B()
        {
            string data = CWE427_Uncontrolled_Search_Path_Element__Listen_tcp_61b.GoodG2BSource();

            /* POTENTIAL FLAW: Set a new environment variable with a path that is possibly insecure */
            Environment.SetEnvironmentVariable("PATH", data);
        }
        public override void Bad()
        {
            string data = CWE427_Uncontrolled_Search_Path_Element__Listen_tcp_61b.BadSource();

            /* POTENTIAL FLAW: Set a new environment variable with a path that is possibly insecure */
            Environment.SetEnvironmentVariable("PATH", data);
        }