SQLmap Tamper-API - SQLMap Tamper API To Accept Tamper Scripts From All Languages
It's an API for SQLmap tamper scripts allows you to use your favorite programming language to write your tamper scripts.
This API solves SQLmap limitation of accepting only python to write tamper scripts.
How it works
taper-api.py
script sends the payload and kwargs in a JSON format ( {"payload": "", "kwargs": {"headers": {}}}
) to the foreign tamper script's STDIN as an argument.From there the foreign script parses the JSON and process it then sends it as a JSON format again to STDOUT where
tamper-api.py
reads and parses then sends it to SQLmap. ,-------(returns objects)---------,
| |
[ sqlmap ] --(sends objects)--> [tamper-api] --(sends json)--> [your-script]
^ |
|________(returns json)_______|
Example#!/usr/bin/env ruby
#
# Author: KING SABRI | @KINGSABRI
# Description: Base64 encoding all characters in a given payload
# Requirements: None
#
require 'json'
require 'base64'
@json = JSON.parse(ARGV[0])
@payload = @json["payload"]
@kwargs = @json["kwargs"]
@json["payload"] = Base64.urlsafe_encode64(@payload)
print @json.to_json
- Copy
tamper-api.py
script into sqlmap/tamper directory. - Check
tamper-scripts/[YOUR_LANGUAGE]
for practical examples.
Usage
sqlmap -u http://example.com/pages.php?page=1 --tamper tamper-api base64encode.rb
Source: feedproxy.google.com
SQLmap Tamper-API - SQLMap Tamper API To Accept Tamper Scripts From All Languages
Reviewed by Anonymous
on
5:40 AM
Rating: