/* goodG2B() - use goodsource and badsink */
        private static void GoodG2B()
        {
            string password;

            /* FIX: Use a hardcoded password as the password (it was not sent over the network) */
            /* INCIDENTAL FLAW: CWE-259 Hard Coded Password */
            password = "******";
            string[] passwordArray = new string[5];
            passwordArray[2] = password;
            CWE319_Cleartext_Tx_Sensitive_Info__listen_tcp_SqlConnection_66b.GoodG2BSink(passwordArray);
        }
        /* goodB2G() - use badsource and goodsink */
        private static void GoodB2G()
        {
            string password;

            password = ""; /* init password */
            /* Read data using a listening tcp connection */
            {
                TcpListener listener = null;
                try
                {
                    /* read input from socket */
                    listener = new TcpListener(IPAddress.Parse("10.10.1.10"), 39543);
                    listener.Start();
                    using (TcpClient tcpConn = listener.AcceptTcpClient())
                    {
                        using (StreamReader sr = new StreamReader(Console.OpenStandardInput()))
                        {
                            /* POTENTIAL FLAW: Read password using a listening tcp connection */
                            password = sr.ReadLine();
                        }
                    }
                }
                catch (IOException exceptIO)
                {
                    IO.Logger.Log(NLog.LogLevel.Warn, "Error with stream reading", exceptIO);
                }
                finally
                {
                    try
                    {
                        if (listener != null)
                        {
                            listener.Stop();
                        }
                    }
                    catch (IOException exceptIO)
                    {
                        IO.Logger.Log(NLog.LogLevel.Warn, "Error closing TcpListener", exceptIO);
                    }
                }
            }
            string[] passwordArray = new string[5];
            passwordArray[2] = password;
            CWE319_Cleartext_Tx_Sensitive_Info__listen_tcp_SqlConnection_66b.GoodB2GSink(passwordArray);
        }