{"id":13542167,"url":"https://github.com/0xbug/SQLiScanner","last_synced_at":"2025-04-02T09:33:25.557Z","repository":{"id":38450811,"uuid":"66752537","full_name":"0xbug/SQLiScanner","owner":"0xbug","description":"Automatic SQL injection with Charles and sqlmap api","archived":true,"fork":false,"pushed_at":"2018-05-01T09:59:47.000Z","size":601,"stargazers_count":795,"open_issues_count":18,"forks_count":283,"subscribers_count":34,"default_branch":"master","last_synced_at":"2024-11-03T07:33:10.605Z","etag":null,"topics":["autoscan","scanner","security","security-audit","security-vulnerability","sqlmap","sqlmap-webui","sqlmapapi"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/0xbug.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-08-28T06:06:32.000Z","updated_at":"2024-10-25T15:52:23.000Z","dependencies_parsed_at":"2022-07-20T12:49:28.996Z","dependency_job_id":null,"html_url":"https://github.com/0xbug/SQLiScanner","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xbug%2FSQLiScanner","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xbug%2FSQLiScanner/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xbug%2FSQLiScanner/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xbug%2FSQLiScanner/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/0xbug","download_url":"https://codeload.github.com/0xbug/SQLiScanner/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246789242,"owners_count":20834255,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["autoscan","scanner","security","security-audit","security-vulnerability","sqlmap","sqlmap-webui","sqlmapapi"],"created_at":"2024-08-01T10:01:02.351Z","updated_at":"2025-04-02T09:33:24.531Z","avatar_url":"https://github.com/0xbug.png","language":"Python","readme":"# SQLiScanner\n\n[![GitHub issues](https://img.shields.io/github/issues/0xbug/SQLiScanner.svg)](https://github.com/0xbug/SQLiScanner/issues)\n[![GitHub forks](https://img.shields.io/github/forks/0xbug/SQLiScanner.svg)](https://github.com/0xbug/SQLiScanner/network)\n[![GitHub stars](https://img.shields.io/github/stars/0xbug/SQLiScanner.svg)](https://github.com/0xbug/SQLiScanner/stargazers)\n[![Python 3.x](https://img.shields.io/badge/python-3.x-yellow.svg)](https://www.python.org/) \n[![GitHub license](https://img.shields.io/badge/license-GPLv3-blue.svg)](https://raw.githubusercontent.com/0xbug/SQLiScanner/master/LICENSE)\n\n\u003e Automatic SQL injection with Charles and sqlmapapi\n\n中文版说明文档[点这里](https://github.com/0xbug/SQLiScanner/blob/master/README_zh.md)\n\n## Introduction\n\n\u003e Automatic SQL injection with Charles and sqlmapapi\n\n## Dependencies\n\n- Django\n- PostgreSQL\n- Celery\n- sqlmap\n- redis\n\n## Supported platforms\n\n- Linux\n- osx\n\n## Screenshots\n![](http://obfxuk8r6.bkt.clouddn.com/sqliscanner-upload.png)\n![](http://obfxuk8r6.bkt.clouddn.com/sqliscanner-stat.png)\n![](http://obfxuk8r6.bkt.clouddn.com/sqliscanner-allresults.png)\n![](http://obfxuk8r6.bkt.clouddn.com/sqliscanner-detail.png)\n![](http://obfxuk8r6.bkt.clouddn.com/sqliscanner-vulns.png)\n\n## Installation\nPreferably, you can download SQLiScanner by cloning the Git repository:\n```\ngit clone https://github.com/0xbug/SQLiScanner.git --depth 1\n```\n\nYou can download sqlmap by cloning the Git repository:\n```\ngit clone https://github.com/sqlmapproject/sqlmap.git --depth 1\n```\n\nSQLiScanner works with Python version 3.x on Linux and osx.\n\nCreate virtualenv and install requirements\n```\ncd SQLiScanner/\nvirtualenv --python=/usr/local/bin/python3.5 venv\nsource venv/bin/activate\npip install -r requirements.txt\n```\n\n## Setting\n\nDATABASES Setting\n```\nSQLiScanner/settings.py:85\n```\n\n```\nDATABASES = {\n    'default': {\n        'ENGINE': 'django.db.backends.postgresql',\n        'NAME': '',\n        'USER': '',\n        'PASSWORD': '',\n        'HOST': '127.0.0.1',\n        'PORT': '5432',\n    }\n}\n```\n\nSendEmail Setting\n```\nSQLiScanner/settings.py:158\n```\n```\n# Email\n\nEMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'\nEMAIL_USE_TLS = False\nEMAIL_HOST = ''\nEMAIL_PORT = 25\nEMAIL_HOST_USER = ''\nEMAIL_HOST_PASSWORD = ''\nDEFAULT_FROM_EMAIL = ''\n```\n\n\n```\nscanner/tasks.py:14\n```\n\n```\nclass SqlScanTask(object):\n    def __init__(self, sqli_obj):\n        self.api_url = \"http://127.0.0.1:8775\"\n        self.mail_from = \"\"\n        self.mail_to = [\"\"]\n\n```\n\n## Syncdb\n```\npython manage.py makemigrations scanner\npython manage.py migrate\n```\n\n## Create superuser\n\n```\npython manage.py createsuperuser\n```\n\n## Run\n\n```\nredis-server\npython sqlmapapi.py -s -p 8775\npython manage.py celery worker --loglevel=info\npython manage.py runserver\n```\n","funding_links":[],"categories":["Exploitation","Python","Python (1887)"],"sub_categories":["SQL Injection"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0xbug%2FSQLiScanner","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F0xbug%2FSQLiScanner","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0xbug%2FSQLiScanner/lists"}