{"id":13454548,"url":"https://github.com/s0md3v/sqlmate","last_synced_at":"2025-03-24T06:30:51.239Z","repository":{"id":40523046,"uuid":"107591982","full_name":"s0md3v/sqlmate","owner":"s0md3v","description":"A friend of SQLmap which will do what you always expected from SQLmap.","archived":true,"fork":false,"pushed_at":"2019-05-05T15:53:06.000Z","size":27,"stargazers_count":436,"open_issues_count":3,"forks_count":119,"subscribers_count":17,"default_branch":"master","last_synced_at":"2025-03-15T17:13:17.988Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/s0md3v.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":"2017-10-19T19:55:58.000Z","updated_at":"2025-02-28T21:49:20.000Z","dependencies_parsed_at":"2022-06-29T13:03:44.974Z","dependency_job_id":null,"html_url":"https://github.com/s0md3v/sqlmate","commit_stats":null,"previous_names":["ultimatehackers/sqlmate"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/s0md3v%2Fsqlmate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/s0md3v%2Fsqlmate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/s0md3v%2Fsqlmate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/s0md3v%2Fsqlmate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/s0md3v","download_url":"https://codeload.github.com/s0md3v/sqlmate/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245222249,"owners_count":20580116,"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":[],"created_at":"2024-07-31T08:00:55.251Z","updated_at":"2025-03-24T06:30:49.463Z","avatar_url":"https://github.com/s0md3v.png","language":"Python","funding_links":[],"categories":["Exploitation","Uncategorized","\u003ca id=\"969212c047f97652ceb9c789e4d8dae5\"\u003e\u003c/a\u003e数据库\u0026\u0026SQL攻击\u0026\u0026SQL注入","Tools"],"sub_categories":["SQLi","Uncategorized","\u003ca id=\"3157bf5ee97c32454d99fd4a9fa3f04a\"\u003e\u003c/a\u003eSQL"],"readme":"# sqlmate\n\u003cimg src='https://i.imgur.com/iXwyVul.png' /\u003e\nThere are some features that we think SQLMap should have. Like finding admin panel of the target, better hash cracking etc. If you think the same, SQLMate is for you.\n\n## What it does?\n- Feed it a SQL injection dork via \u003cb\u003e--dork\u003c/b\u003e option and it will find vulnerable sites for you. After that, it will try to find their admin panels and also try to bypass them with SQL queries.\n\n- It can do very fast hash lookups for MD5, SHA1 and SHA2. You can supply a hash with \u003cb\u003e--hash\u003c/b\u003e option. Average lookup takes less than 2 seconds.\n\n- You can also supply it a txt file containing hashes to be cracked with \u003cb\u003e--list \u003cpath\u003e\u003c/b\u003e option.\n  \n- The first mode just checks for 13 most common admin panel locations but if you feed a website through \u003cb\u003e--admin\u003c/b\u003e option, you can do a full scan using 482 paths.\n\n- SQLMate has ability to scrap dorks as well. Specify dumping level via \u003cb\u003e--dump\u003c/b\u003e option. Using \u003cb\u003e--dump 1\u003c/b\u003e will dump nearly 20 dorks so set the level anywhere between 1-184 as per your needs. SQLMate automatically saves the dorks into a txt file so you can use them later.\n\nScroll down for more.\n\n### Screenshots\n\u003cimg src='https://i.imgur.com/8JDL1xt.png' /\u003e\n\u003cimg src='https://i.imgur.com/ww2zupy.png' /\u003e\n\u003cimg src='https://i.imgur.com/itjrbrH.png' /\u003e\n\u003cimg src='https://i.imgur.com/IxFbg8G.png' /\u003e\n\n#### Running SQLMate\nEnter the following command in terminal to download SQLMate\n```\ngit clone https://github.com/UltimateHackers/sqlmate\n```\nThen navigate to the sqlmate directory by entering this command\n```\ncd sqlmate\n```\nNow install the required modules\n```\npip install -r requirements.txt\n```\nNow run sqlmate\n```\npython sqlmate\n```\n\n##### Available command line options\n```\nusage: sqlmate [-h] [--dork DORK] [--hash HASH] [--list \u003cpath\u003e]\n [--dump 1-184] [--admin URL] [--type PHP,ASP,HTML]\n\noptional arguments:\n  -h, --help            show this help message and exit\n  --dork DORK           Supply a dork and let SQLMate do its thing\n  --hash HASH           'Crack' a hash in 5 secs\n  --list \u003cpath\u003e         Import and crack hashes from a txt file\n  --dump 1-184          Get dorks. Specify dumping level. Level 1 = 20 dorks\n  --admin URL           Find admin panel of website\n  --type PHP,ASP,HTML   Choose extension to scan (Use with --admin option,\n          \t\tDefault is all)\n```\n#### Want to contribute?\nAlright jump in! Find bugs or help me add these features:\n- [ ] Avoiding duplicates in dork scan results\n- [ ] A list of examples of sqlmap commands demonstrating some useful and less known sqlmap options\n- [ ] Whatever you like\n\nThanks for using SQLMate.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fs0md3v%2Fsqlmate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fs0md3v%2Fsqlmate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fs0md3v%2Fsqlmate/lists"}