├── README.md ├── SqlChecker.py ├── check.py ├── common.py ├── parse.py ├── setting.py ├── test ├── __init__.py ├── parse_post_data.py └── send_request.py └── xml ├── blank.xml ├── errors.xml └── payloads.xml /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lufeirider/SqlChecker/HEAD/README.md -------------------------------------------------------------------------------- /SqlChecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lufeirider/SqlChecker/HEAD/SqlChecker.py -------------------------------------------------------------------------------- /check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lufeirider/SqlChecker/HEAD/check.py -------------------------------------------------------------------------------- /common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lufeirider/SqlChecker/HEAD/common.py -------------------------------------------------------------------------------- /parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lufeirider/SqlChecker/HEAD/parse.py -------------------------------------------------------------------------------- /setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lufeirider/SqlChecker/HEAD/setting.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/parse_post_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lufeirider/SqlChecker/HEAD/test/parse_post_data.py -------------------------------------------------------------------------------- /test/send_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lufeirider/SqlChecker/HEAD/test/send_request.py -------------------------------------------------------------------------------- /xml/blank.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lufeirider/SqlChecker/HEAD/xml/blank.xml -------------------------------------------------------------------------------- /xml/errors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lufeirider/SqlChecker/HEAD/xml/errors.xml -------------------------------------------------------------------------------- /xml/payloads.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lufeirider/SqlChecker/HEAD/xml/payloads.xml --------------------------------------------------------------------------------