mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 09:36:35 +03:00
30 lines
703 B
Python
30 lines
703 B
Python
|
#!/usr/bin/env python
|
||
|
|
||
|
"""
|
||
|
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
|
||
|
See the file 'doc/COPYING' for copying permission
|
||
|
"""
|
||
|
|
||
|
from lib.core.enums import PRIORITY
|
||
|
from random import sample
|
||
|
__priority__ = PRIORITY.NORMAL
|
||
|
|
||
|
def dependencies():
|
||
|
pass
|
||
|
|
||
|
def randomIP():
|
||
|
numbers = []
|
||
|
while not numbers or numbers[0] in (10, 172, 192):
|
||
|
numbers = sample(xrange(1, 255), 4)
|
||
|
return '.'.join(str(_) for _ in numbers)
|
||
|
|
||
|
def tamper(payload, **kwargs):
|
||
|
"""
|
||
|
Append a fake HTTP header 'X-Forwarded-For' to bypass
|
||
|
WAF (usually application based) protection
|
||
|
"""
|
||
|
|
||
|
headers = kwargs.get("headers", {})
|
||
|
headers["X-Forwarded-For"] = randomIP()
|
||
|
return payload
|