Name | sqlifuzzer JSON |
Version |
0.0.9
JSON |
| download |
home_page | https://github.com/sapphicart/sqli-fuzzer |
Summary | Python script to fuzz for SQL injection vulnerabilities in URL and input parameters. |
upload_time | 2024-08-15 09:24:33 |
maintainer | None |
docs_url | None |
author | Shruti Priya |
requires_python | >=3.8 |
license | MIT License Copyright (c) 2024 Shruti Priya Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
keywords |
python
sqli-vulnerability-scanner
sqlinjection
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
<h1 align="center">SQLi Fuzzer</h1>
<p align="center">
<a href="#summary">Summary</a> •
<a href="#requirements">Requirements</a> •
<a href="#installation">Installation</a> •
<a href="#usage">Usage</a> •
<a href="#to-do">To Do</a> •
<a href="#license">License</a>
</p>
## Summary
SQLi Fuzzer is a tool made for personal use. This tool fuzzes for URL or input parameters vulnerable to SQL Injections. The file `url_fuzz.txt` currently contains basic `ORDER BY` SQL queries passed in URL parameter. The default wordlist includes SQL queries in plaintext, url encoding and hex encoding.
**Warning: The tool is currently under development. I cannot gurantee successful utilisation.**
## Requirements
- Python 3.xx
## Installation
There are two ways to install `sqlifuzzer`:
Install the tool directly with `pip`
```bash
pip install sqlifuzzer
```
Or, you can build from source. Download the latest [release](https://github.com/sapphicart/sqli-fuzzer/releases).
## Usage
Use the `--help` switch to read the `OPTIONS` available.
```bash
$ sqlifuzzer --help
Usage: sqlifuzzer.py [OPTIONS]
Options:
-u, --url TEXT The URL to fuzz
-v, --verify BOOLEAN SSL certificate verification. Default True
-w, --wordlist TEXT /path/to/wordlist.txt
--help Show this message and exit.
```
Example:
```bash
$ sqlifuzzer -u https://redtiger.labs.overthewire.org/level1.php -v False -w url_fuzz.txt
```
## Notes
A generic wordlist named `url_fuzz.txt` is available in the source code. You can use this wordlist or create your own!
Upcoming features:
- Input parameters fuzzing
- HTTP Verbs (GET, POST, PUT) fuzzing
- Diverse wordlist
## Contributions
All contributions are welcome. Just fork this repository, make your changes and open a pull request!
## License
Distributed under [MIT](LICENSE) License.
Raw data
{
"_id": null,
"home_page": "https://github.com/sapphicart/sqli-fuzzer",
"name": "sqlifuzzer",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "python, sqli-vulnerability-scanner, sqlinjection",
"author": "Shruti Priya",
"author_email": "sapphicart <shrutipriya44@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/d4/d4/6420f7c73a81e763de374282623e6d90262def10fa2681fc6f3f534829ce/sqlifuzzer-0.0.9.tar.gz",
"platform": null,
"description": "<h1 align=\"center\">SQLi Fuzzer</h1>\n\n<p align=\"center\">\n <a href=\"#summary\">Summary</a> \u2022\n <a href=\"#requirements\">Requirements</a> \u2022\n <a href=\"#installation\">Installation</a> \u2022\n <a href=\"#usage\">Usage</a> \u2022\n <a href=\"#to-do\">To Do</a> \u2022\n <a href=\"#license\">License</a>\n</p>\n\n## Summary\n\nSQLi Fuzzer is a tool made for personal use. This tool fuzzes for URL or input parameters vulnerable to SQL Injections. The file `url_fuzz.txt` currently contains basic `ORDER BY` SQL queries passed in URL parameter. The default wordlist includes SQL queries in plaintext, url encoding and hex encoding.\n\n**Warning: The tool is currently under development. I cannot gurantee successful utilisation.**\n\n## Requirements\n- Python 3.xx\n\n## Installation\nThere are two ways to install `sqlifuzzer`:\n\nInstall the tool directly with `pip`\n```bash\npip install sqlifuzzer\n```\n\nOr, you can build from source. Download the latest [release](https://github.com/sapphicart/sqli-fuzzer/releases).\n\n## Usage \nUse the `--help` switch to read the `OPTIONS` available.\n```bash\n$ sqlifuzzer --help\nUsage: sqlifuzzer.py [OPTIONS]\n\nOptions:\n -u, --url TEXT The URL to fuzz\n -v, --verify BOOLEAN SSL certificate verification. Default True\n -w, --wordlist TEXT /path/to/wordlist.txt\n --help Show this message and exit.\n```\nExample:\n```bash\n$ sqlifuzzer -u https://redtiger.labs.overthewire.org/level1.php -v False -w url_fuzz.txt\n```\n\n## Notes\nA generic wordlist named `url_fuzz.txt` is available in the source code. You can use this wordlist or create your own!\n\nUpcoming features:\n- Input parameters fuzzing\n- HTTP Verbs (GET, POST, PUT) fuzzing\n- Diverse wordlist\n\n## Contributions\nAll contributions are welcome. Just fork this repository, make your changes and open a pull request!\n\n## License\nDistributed under [MIT](LICENSE) License.\n",
"bugtrack_url": null,
"license": "MIT License Copyright (c) 2024 Shruti Priya Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
"summary": "Python script to fuzz for SQL injection vulnerabilities in URL and input parameters.",
"version": "0.0.9",
"project_urls": {
"Homepage": "https://github.com/sapphicart/sqli-fuzzer",
"Issues": "https://github.com/sapphicart/sqli-fuzzer/issues"
},
"split_keywords": [
"python",
" sqli-vulnerability-scanner",
" sqlinjection"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "238d04505a9aacd5402ad7774b5371828f9ede78b67987bd1ac1bfd499b69e8a",
"md5": "c9e1b2f14cd85cd40c8e7810a6a5de5a",
"sha256": "d1f612d60f1a58b007ec05ea71988b56e4520092c2e14f90ea45e1999d88981f"
},
"downloads": -1,
"filename": "sqlifuzzer-0.0.9-py3-none-any.whl",
"has_sig": false,
"md5_digest": "c9e1b2f14cd85cd40c8e7810a6a5de5a",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 5505,
"upload_time": "2024-08-15T09:24:31",
"upload_time_iso_8601": "2024-08-15T09:24:31.979830Z",
"url": "https://files.pythonhosted.org/packages/23/8d/04505a9aacd5402ad7774b5371828f9ede78b67987bd1ac1bfd499b69e8a/sqlifuzzer-0.0.9-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d4d46420f7c73a81e763de374282623e6d90262def10fa2681fc6f3f534829ce",
"md5": "96c1197650d45eea833672377c7f7876",
"sha256": "8811608fab905ed1e40432ecc2feaa01cd8359fd03c49966bab61ab1855ebe01"
},
"downloads": -1,
"filename": "sqlifuzzer-0.0.9.tar.gz",
"has_sig": false,
"md5_digest": "96c1197650d45eea833672377c7f7876",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 4872,
"upload_time": "2024-08-15T09:24:33",
"upload_time_iso_8601": "2024-08-15T09:24:33.283490Z",
"url": "https://files.pythonhosted.org/packages/d4/d4/6420f7c73a81e763de374282623e6d90262def10fa2681fc6f3f534829ce/sqlifuzzer-0.0.9.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-08-15 09:24:33",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "sapphicart",
"github_project": "sqli-fuzzer",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"requirements": [],
"lcname": "sqlifuzzer"
}