Example #1
0
 /* goodB2G() - use badsource and goodsink */
 private static void GoodB2G()
 {
     data = File.OpenText(@"BadSource_OpenText.txt");
     /* POTENTIAL FLAW: Close the file in the source */
     data.Close();
     CWE675_Duplicate_Operations_on_Resource__OpenText_68b.GoodB2GSink();
 }
Example #2
0
 public override void Bad()
 {
     data = File.OpenText(@"BadSource_OpenText.txt");
     /* POTENTIAL FLAW: Close the file in the source */
     data.Close();
     CWE675_Duplicate_Operations_on_Resource__OpenText_68b.BadSink();
 }
Example #3
0
 /* goodG2B() - use goodsource and badsink */
 private static void GoodG2B()
 {
     /* FIX: Open, but do not close the file in the source */
     data = File.OpenText(@"GoodSource_OpenText.txt");
     CWE675_Duplicate_Operations_on_Resource__OpenText_68b.GoodG2BSink();
 }