zoukankan      html  css  js  c++  java
  • sqlmap 快速开始

    sqlmap 快速开始


    目标

    sqlmap 使用时必须指定一个目标。


    GET 方法

    判断 "http://www.target.com/vuln.php?id=1" 是否存在注入

    python sqlmap.py -u "http://www.target.com/vuln.php?id=1"
    

    POST 方法

    python sqlmap.py -u "http://www.target.com/vuln.php" --data "id=1"
    

    利用

    确认存在 sql 注入之后,进行数据查询,或其他操作。


    --dbs

    当前用户下的所有数据库

    sqlmap.py -u "target.com?id=1" --dbs
    

    --tables

    数据库中所有表名

    sqlmap.py -u "target.com?id=1" -D infomation_schema --tables
    

    --columns

    所有字段名

    sqlmap.py -u "target.com?id=1" -D infomation_schema -T tables --columns
    

    --users

    数据库所有用户

    sqlmap.py -u "target.com?id=1" --users
    

    --passwords

    数据库用户密码,SQLMap 会先列举用户,然后列出 Hash,并尝试破解。

    sqlmap.py -u "target.com?id=1" --passwords
    

    --current-db

    当前网站数据库名

    sqlmap.py -u "target.com?id=1" --current-db
    

    --current-user

    当前网站使用的数据库用户

    sqlmap.py -u "target.com?id=1" --current-user
    

    --sql-query=QUERY

    执行一个sql语句

    sqlmap.py -u "target.com?id=1" --sql-query='SELECT @@datadir'
    

    --sql-shell 创建一个sql的shell

    获取一个交互式的数据库终端


    绕过


    混淆注入数据

    选项:--tamper="between,my.py"

    python 文件格式:

    # Needed imports
    from lib.core.enums import PRIORITY
    
    # Define which is the order of application of tamper scripts against
    # the payload
    __priority__ = PRIORITY.NORMAL
    
    def tamper(payload):
        '''
        Description of your tamper script
        '''
    
        retVal = payload
    
        # your code to tamper the original payload
    
        # return the tampered payload
        return retVal
    

    其他

    输出详情

    选项:-v

    python sqlmap.py -v 1
    

    此选项共有 7 种参数,下为常用参数:

    • 0 :仅显示错误和危险信息,与 python 解释器信息。
    • 1 :显示 information 和警告信息。(默认值)
    • 3 :显示 payload。

    参考

  • 相关阅读:
    .Net Intelligencia.UrlRewriter 重定向参数中文支持配置方法
    Debian 9 vsftpd: version 3.0.3 配置
    Debian 静态网络配置
    iptables常用配置
    Debian防御DDOS(简易版本)
    Debian9+PHP7+MySQL+Apache2配置Thinkphp运行环境LAMP
    Discuz3.3注册程序修改添加记录推荐人账号
    .NetCore WPF 指定一个相对路径的图片,报错“找不到资源”
    C语言的unsigned做双目运算符的奇怪问题
    关于人脸识别的视频图片处理
  • 原文地址:https://www.cnblogs.com/shiwai/p/14172170.html
Copyright © 2011-2022 走看看