/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE191_Integer_Underflow__short_min_predec_61a.java Label Definition File: CWE191_Integer_Underflow.label.xml Template File: sources-sinks-61a.tmpl.java */ /* * @description * CWE: 191 Integer Underflow * BadSource: min Set data to the max value for short * GoodSource: A hardcoded non-zero, non-min, non-max, even number * Sinks: decrement * GoodSink: Ensure there will not be an underflow before decrementing data * BadSink : Decrement data, which can cause an Underflow * Flow Variant: 61 Data flow: data returned from one method to another in different classes in the same package * * */ package testcases.CWE191_Integer_Underflow.s05; import testcasesupport.*; public class CWE191_Integer_Underflow__short_min_predec_61a extends AbstractTestCase { public void bad() throws Throwable { short data = (new CWE191_Integer_Underflow__short_min_predec_61b()).badSource(); /* POTENTIAL FLAW: if data == Short.MIN_VALUE, this will overflow */ short result = (short)(--data); IO.writeLine("result: " + result); } public void good() throws Throwable { goodG2B(); goodB2G(); } /* goodG2B() - use goodsource and badsink */ private void goodG2B() throws Throwable { short data = (new CWE191_Integer_Underflow__short_min_predec_61b()).goodG2BSource(); /* POTENTIAL FLAW: if data == Short.MIN_VALUE, this will overflow */ short result = (short)(--data); IO.writeLine("result: " + result); } /* goodB2G() - use badsource and goodsink */ private void goodB2G() throws Throwable { short data = (new CWE191_Integer_Underflow__short_min_predec_61b()).goodB2GSource(); /* FIX: Add a check to prevent an underflow from occurring */ if (data > Short.MIN_VALUE) { short result = (short)(--data); IO.writeLine("result: " + result); } else { IO.writeLine("data value is too small to decrement."); } } /* Below is the main(). It is only used when building this testcase on * its own for testing or for building a binary to use in testing binary * analysis tools. It is not used when compiling all the testcases as one * application, which is how source code analysis tools are tested. */ public static void main(String[] args) throws ClassNotFoundException, InstantiationException, IllegalAccessException { mainFromParent(args); } }