Exemplo n.º 1
0
 /* goodG2B() - use goodsource and badsink */
 private static void GoodG2B()
 {
     /* FIX: Use a hardcoded number that won't cause underflow, overflow, divide by zero, or loss-of-precision issues */
     data = 2;
     CWE191_Integer_Underflow__SByte_rand_multiply_68b.GoodG2BSink();
 }
Exemplo n.º 2
0
 /* goodB2G() - use badsource and goodsink */
 private static void GoodB2G()
 {
     /* POTENTIAL FLAW: Use a random value */
     data = (sbyte)(new Random().Next(sbyte.MinValue, sbyte.MaxValue));
     CWE191_Integer_Underflow__SByte_rand_multiply_68b.GoodB2GSink();
 }
Exemplo n.º 3
0
 public override void Bad()
 {
     /* POTENTIAL FLAW: Use a random value */
     data = (sbyte)(new Random().Next(sbyte.MinValue, sbyte.MaxValue));
     CWE191_Integer_Underflow__SByte_rand_multiply_68b.BadSink();
 }