mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
83 lines
1.9 KiB
C++
83 lines
1.9 KiB
C++
// test cases for rule CWE-611 (SAX2XMLReader)
|
|
|
|
#include "tests.h"
|
|
|
|
// ---
|
|
|
|
class SAX2XMLReader
|
|
{
|
|
public:
|
|
void setFeature(const XMLCh *feature, bool value);
|
|
void parse(const InputSource &data);
|
|
};
|
|
|
|
class XMLReaderFactory
|
|
{
|
|
public:
|
|
static SAX2XMLReader *createXMLReader();
|
|
};
|
|
|
|
// ---
|
|
|
|
void test3_1(InputSource &data) {
|
|
SAX2XMLReader *p = XMLReaderFactory::createXMLReader();
|
|
|
|
p->parse(data); // BAD (parser not correctly configured)
|
|
}
|
|
|
|
void test3_2(InputSource &data) {
|
|
SAX2XMLReader *p = XMLReaderFactory::createXMLReader();
|
|
|
|
p->setFeature(XMLUni::fgXercesDisableDefaultEntityResolution, true);
|
|
p->parse(data); // GOOD
|
|
}
|
|
|
|
SAX2XMLReader *p_3_3 = XMLReaderFactory::createXMLReader();
|
|
|
|
void test3_3(InputSource &data) {
|
|
p_3_3->parse(data); // BAD (parser not correctly configured)
|
|
}
|
|
|
|
SAX2XMLReader *p_3_4 = XMLReaderFactory::createXMLReader();
|
|
|
|
void test3_4(InputSource &data) {
|
|
p_3_4->setFeature(XMLUni::fgXercesDisableDefaultEntityResolution, true);
|
|
p_3_4->parse(data); // GOOD
|
|
}
|
|
|
|
SAX2XMLReader *p_3_5 = XMLReaderFactory::createXMLReader();
|
|
|
|
void test3_5_init() {
|
|
p_3_5->setFeature(XMLUni::fgXercesDisableDefaultEntityResolution, true);
|
|
}
|
|
|
|
void test3_5(InputSource &data) {
|
|
test3_5_init();
|
|
p_3_5->parse(data); // GOOD [FALSE POSITIVE]
|
|
}
|
|
|
|
void test3_6(InputSource &data) {
|
|
SAX2XMLReader *p = XMLReaderFactory::createXMLReader();
|
|
|
|
p->setFeature(XMLUni::fgXercesDisableDefaultEntityResolution, false);
|
|
p->parse(data); // BAD (parser not correctly configured)
|
|
}
|
|
|
|
void test3_7(InputSource &data) {
|
|
SAX2XMLReader *p = XMLReaderFactory::createXMLReader();
|
|
|
|
p->setFeature(XMLUni::fgXercesHarmlessOption, true);
|
|
p->parse(data); // BAD (parser not correctly configured)
|
|
}
|
|
|
|
void test3_8(InputSource &data) {
|
|
SAX2XMLReader *p = XMLReaderFactory::createXMLReader();
|
|
const XMLCh *feature = XMLUni::fgXercesDisableDefaultEntityResolution;
|
|
|
|
p->setFeature(feature, true);
|
|
p->parse(data); // GOOD
|
|
}
|
|
|
|
|
|
|