Exemplo n.º 1
0
 public override void Bad()
 {
     /* init data */
     data = 0;
     /* POTENTIAL FLAW: Read data from console with ReadLine*/
     try
     {
         string stringNumber = Console.ReadLine();
         if (stringNumber != null)
         {
             data = sbyte.Parse(stringNumber.Trim());
         }
     }
     catch (IOException exceptIO)
     {
         IO.Logger.Log(NLog.LogLevel.Warn, "Error with stream reading", exceptIO);
     }
     catch (FormatException exceptNumberFormat)
     {
         IO.Logger.Log(NLog.LogLevel.Warn, "Error with number parsing", exceptNumberFormat);
     }
     CWE190_Integer_Overflow__SByte_console_readLine_multiply_68b.BadSink();
 }