void PrintCachedGPPPassword()
        {
            try
            {
                Beaprint.MainPrint("Cached GPP Passwords");
                Dictionary <string, Dictionary <string, string> > gpp_passwords = GPP.GetCachedGPPPassword();

                Dictionary <string, string> gppColors = new Dictionary <string, string>()
                {
                    { "cpassword.*", Beaprint.ansi_color_bad },
                };

                foreach (KeyValuePair <string, Dictionary <string, string> > entry in gpp_passwords)
                {
                    Beaprint.BadPrint("    Found " + entry.Key);
                    Beaprint.DictPrint(entry.Value, gppColors, true);
                }
            }
            catch (Exception ex)
            {
                Beaprint.PrintException(ex.Message);
            }
        }