├── .gitattributes ├── .idea ├── misc.xml ├── modules.xml ├── sqldump.iml └── workspace.xml ├── README.md ├── Service.py ├── Service.pyc ├── __pycache__ └── Service.cpython-36.pyc └── main.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveAourThe/sqlmap_api_demo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveAourThe/sqlmap_api_demo/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveAourThe/sqlmap_api_demo/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/sqldump.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveAourThe/sqlmap_api_demo/HEAD/.idea/sqldump.iml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveAourThe/sqlmap_api_demo/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # sqlmap_api_demo 2 | -------------------------------------------------------------------------------- /Service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveAourThe/sqlmap_api_demo/HEAD/Service.py -------------------------------------------------------------------------------- /Service.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveAourThe/sqlmap_api_demo/HEAD/Service.pyc -------------------------------------------------------------------------------- /__pycache__/Service.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveAourThe/sqlmap_api_demo/HEAD/__pycache__/Service.cpython-36.pyc -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveAourThe/sqlmap_api_demo/HEAD/main.py --------------------------------------------------------------------------------