├── .gitignore ├── LICENSE ├── README.md ├── UI.py ├── exceptions_fix.py ├── img ├── generator.png ├── intruder.png ├── processor.png └── url-decod.png ├── keywords.txt ├── payloads.lst ├── sqli_query_tampering.py └── tamper.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xer0times/SQLi-Query-Tampering/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xer0times/SQLi-Query-Tampering/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xer0times/SQLi-Query-Tampering/HEAD/README.md -------------------------------------------------------------------------------- /UI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xer0times/SQLi-Query-Tampering/HEAD/UI.py -------------------------------------------------------------------------------- /exceptions_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xer0times/SQLi-Query-Tampering/HEAD/exceptions_fix.py -------------------------------------------------------------------------------- /img/generator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xer0times/SQLi-Query-Tampering/HEAD/img/generator.png -------------------------------------------------------------------------------- /img/intruder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xer0times/SQLi-Query-Tampering/HEAD/img/intruder.png -------------------------------------------------------------------------------- /img/processor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xer0times/SQLi-Query-Tampering/HEAD/img/processor.png -------------------------------------------------------------------------------- /img/url-decod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xer0times/SQLi-Query-Tampering/HEAD/img/url-decod.png -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xer0times/SQLi-Query-Tampering/HEAD/keywords.txt -------------------------------------------------------------------------------- /payloads.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xer0times/SQLi-Query-Tampering/HEAD/payloads.lst -------------------------------------------------------------------------------- /sqli_query_tampering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xer0times/SQLi-Query-Tampering/HEAD/sqli_query_tampering.py -------------------------------------------------------------------------------- /tamper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xer0times/SQLi-Query-Tampering/HEAD/tamper.py --------------------------------------------------------------------------------