Exemple #1
0
        private static Analysis HandleFetch(Options options)
        {
            Action <Analysis> progress = prg =>
            {
                if (prg.Endpoints == null)
                {
                    using (AwesomeConsole.BeginSequentialWrite())
                        AwesomeConsole.WriteLine("Progress {0}", prg.Status);

                    return;
                }

                float max = prg.Endpoints.Count * 100;
                float pct = prg.Endpoints.Sum(s => (float)(s.Progress == -1 ? 0 : s.Progress)) / max;

                string current = prg.Endpoints.SkipWhile(s => s.Progress == 100).Select(s => s.StatusDetailsMessage).FirstOrDefault();
                List <Tuple <int, string> > states = prg.Endpoints.Select(s => new Tuple <int, string>(s.Progress, s.StatusMessage)).ToList();

                using (AwesomeConsole.BeginSequentialWrite())
                {
                    AwesomeConsole.Write("Progress {0:P}", pct);
                    AwesomeConsole.Write(" (servers: ");
                    for (int i = 0; i < states.Count; i++)
                    {
                        Tuple <int, string> state = states[i];

                        if (state.Item1 == 100)
                        {
                            AwesomeConsole.Write("{0}", ConsoleColor.DarkGreen, state.Item2);
                        }
                        else
                        {
                            AwesomeConsole.Write("{0}", ConsoleColor.Yellow, state.Item2);
                        }

                        if (i > 0)
                        {
                            AwesomeConsole.Write(" | ");
                        }
                    }
                    AwesomeConsole.Write(") (current: ");
                    AwesomeConsole.Write("{0}", ConsoleColor.Cyan, current);
                    AwesomeConsole.WriteLine(")");
                }
            };

            if (!options.Progress)
            {
                progress = null;
            }

            AnalyzeOptions analyzeOptions = AnalyzeOptions.ReturnAllIfDone;

            if (options.New)
            {
                analyzeOptions |= AnalyzeOptions.StartNew;
            }
            else
            {
                analyzeOptions |= AnalyzeOptions.FromCache;
            }

            Analysis analysis = _client.GetAnalysisBlocking(options.Hostname, null, analyzeOptions, progress);

            return(analysis);
        }
Exemple #2
0
        static int Main(string[] args)
        {
            // SslLabsCli ssllabs.com --progress --new --nowait

            Options options = new Options();

            OptionSet parser = new OptionSet();

            parser.Add("p|progress", "Show progress while waiting", s => options.Progress = true);
            parser.Add("n|new", "Force a new scan", s => options.New = true);
            parser.Add("w|nowait", "Exit if no scan is available", s => options.NoWait = true);
            parser.Add("s|save", "Save the scan to a file", s => options.Save          = s);

            List <string> leftoverArgs = parser.Parse(args);

            options.Hostname = leftoverArgs.FirstOrDefault();

            if (string.IsNullOrEmpty(options.Hostname))
            {
                Console.WriteLine("Usage: ");
                Console.WriteLine("  SslLabsCli [options] ssllabs.com");
                Console.WriteLine();
                Console.WriteLine("Options");
                parser.WriteOptionDescriptions(Console.Out);
                Console.WriteLine();

                return(1);
            }

            Analysis analysis = HandleFetch(options);

            if (analysis.Status == AnalysisStatus.ERROR)
            {
                AwesomeConsole.WriteLine("An error occurred", ConsoleColor.Red);
                AwesomeConsole.Write("Status: ");
                AwesomeConsole.WriteLine(analysis.StatusMessage, ConsoleColor.Cyan);

                AwesomeConsole.WriteLine("Messages from SSLLabs");
                Info info = _client.GetInfo();

                foreach (string msg in info.Messages)
                {
                    AwesomeConsole.WriteLine("  " + msg, ConsoleColor.Yellow);
                }

                return(3);
            }

            if (analysis.Status != AnalysisStatus.READY)
            {
                AwesomeConsole.WriteLine("Analysis not available", ConsoleColor.DarkYellow);
                return(2);
            }

            PresentAnalysis(analysis);

            if (!string.IsNullOrEmpty(options.Save))
            {
                File.WriteAllText(options.Save, JsonConvert.SerializeObject(analysis, Formatting.Indented));
            }

            return(0);
        }