/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE90_LDAP_Injection__w32_wchar_t_environment_84a.cpp Label Definition File: CWE90_LDAP_Injection__w32.label.xml Template File: sources-sink-84a.tmpl.cpp */ /* * @description * CWE: 90 LDAP Injection * BadSource: environment Read input from an environment variable * GoodSource: Use a fixed string * Sinks: * BadSink : data concatenated into LDAP search, which could result in LDAP Injection * Flow Variant: 84 Data flow: data passed to class constructor and destructor by declaring the class object on the heap and deleting it after use * * */ #include "std_testcase.h" #include "CWE90_LDAP_Injection__w32_wchar_t_environment_84.h" namespace CWE90_LDAP_Injection__w32_wchar_t_environment_84 { #ifndef OMITBAD void bad() { wchar_t * data; wchar_t dataBuffer[256] = L""; data = dataBuffer; CWE90_LDAP_Injection__w32_wchar_t_environment_84_bad * badObject = new CWE90_LDAP_Injection__w32_wchar_t_environment_84_bad(data); delete badObject; } #endif /* OMITBAD */ #ifndef OMITGOOD /* goodG2B uses the GoodSource with the BadSink */ static void goodG2B() { wchar_t * data; wchar_t dataBuffer[256] = L""; data = dataBuffer; CWE90_LDAP_Injection__w32_wchar_t_environment_84_goodG2B * goodG2BObject = new CWE90_LDAP_Injection__w32_wchar_t_environment_84_goodG2B(data); delete goodG2BObject; } void good() { goodG2B(); } #endif /* OMITGOOD */ } /* close namespace */ /* 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. */ #ifdef INCLUDEMAIN using namespace CWE90_LDAP_Injection__w32_wchar_t_environment_84; /* so that we can use good and bad easily */ int main(int argc, char * argv[]) { /* seed randomness */ srand( (unsigned)time(NULL) ); #ifndef OMITGOOD printLine("Calling good()..."); good(); printLine("Finished good()"); #endif /* OMITGOOD */ #ifndef OMITBAD printLine("Calling bad()..."); bad(); printLine("Finished bad()"); #endif /* OMITBAD */ return 0; } #endif