zoukankan      html  css  js  c++  java
  • SQL注入测试平台 SQLol -1. 简介与安装

    最近下载了SQLol测试了一下,感觉挺好玩的,做一下记录。

    SQLol是一个可配置得SQL注入测试平台,它包含了一系列的挑战任务,让你在挑战中测试和学习SQL注入语句,SQLol还是比较有创意的项目。

    SQLol is now part of the Magical Code Injection Rainbow framework at http://github.com/SpiderLabs/MCIR and the standalone version will no longer be maintained.

    一、下载与安装

    下载地址:http://github.com/SpiderLabs/MCIR

    安装流程:

    1、解压压缩包到网站根路径(例如,我新建一个sql目录,存放压缩包内容);

    2、打开/includes/database.config.php 修改$username/$password等信息;

    $dbtype = 'mysql';
    $server = 'localhost';
    $port = '3306';
    $username = 'root';
    $password = 'root';
    $database = 'sqlol';
    $persist = '';

    3、打开http://localhost/sql/,可以看到如下界面,点击RESET,即可完成数据库的安装。

     

    到此,安装结束,接下来,我们开始进行SQL注入测试,完成挑战任务。

    最后

    欢迎关注个人微信公众号:Bypass--,每周一篇原创高质量的干货。 

     

  • 相关阅读:
    mysql数据增删改查
    Python中的逻辑运算
    Python的格式化输出
    Python变量的命名规则
    解释型语言和编译型语言的比较?
    SQLAlchemy
    ansible
    算法
    数据分析
    scrapy之日志等级
  • 原文地址:https://www.cnblogs.com/xiaozi/p/5517653.html
Copyright © 2011-2022 走看看