上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页
摘要: fuzz payload库:https://github.com/fuzzdb-project/fuzzdb/blob/master/attack/sql-injection/detect/xplatform.txt 打开Burp Suite,可以先开代理抓一个正常请求包,然后转到Intruder模 阅读全文
posted @ 2020-10-22 19:46 LuoSpider 阅读(606) 评论(0) 推荐(0) 编辑
摘要: 在登录和注册页面中fuzz,发现注册界面可以反复注册一个用户 尝试覆盖admin和root之类的用户,发现都是普通用户,这个bug目前没有可利用的地方 最后在忘记密码的界面找到了注入点,这是一个post注入,使用sqlmap进行爆库 python sqlmap.py -u "http://220.2 阅读全文
posted @ 2020-10-22 19:07 LuoSpider 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 首先提交百度的域名发现没有反应,接着提交本地的ip发现反馈了一个ping的本地ip记录 首先使用管道符号执行ls命令,得到的回显是Invalid URL,在尝试后发现过滤了许多符号,只保留了字母数字和@小数点等 127.0.0.1 | ls 传递%80会出现报错,url编码使用的是16进制,80也就 阅读全文
posted @ 2020-10-22 17:13 LuoSpider 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 进入页面,首先注册一个用户,发现用户页面存在注入 测试发现过滤了空格|0X(16进制),使用/**/或者++替换空格进行注入 爆库名: SQL UNION 操作符 UNION 操作符用于合并两个或多个 SELECT 语句的结果集。 请注意,UNION 内部的 SELECT 语句必须拥有相同数量的列。 阅读全文
posted @ 2020-10-22 15:20 LuoSpider 阅读(221) 评论(0) 推荐(0) 编辑
摘要: http://dl.mongodb.org/dl/win32/x86_64 阅读全文
posted @ 2020-10-21 11:15 LuoSpider 阅读(1253) 评论(0) 推荐(0) 编辑
摘要: 进入页面,发现找不到任何提示 最后发现了.git文件,使用GitHack把文件下载下来 .git文件夹 .git文件夹是git init后在当前目录生成的一个管理git仓库的文件夹,这里包含所有git操作所需要的东西 打开index.php文件,以下是其中的php代码 <?php if (isset 阅读全文
posted @ 2020-10-18 23:32 LuoSpider 阅读(145) 评论(0) 推荐(0) 编辑
摘要: #原地址 git clone https://github.com/kubernetes/kubernetes.git #改为 git clone https://github.com.cnpmjs.org/kubernetes/kubernetes.git #或者 git clone https: 阅读全文
posted @ 2020-10-18 13:27 LuoSpider 阅读(1378) 评论(0) 推荐(0) 编辑
摘要: pip指定更新源 pip install sweetest -i https://pypi.tuna.tsinghua.edu.cn/simple #pip使用更新源 安装pip python get-pip.py -i http://pypi.douban.com/simple/ --truste 阅读全文
posted @ 2020-10-17 23:20 LuoSpider 阅读(10348) 评论(0) 推荐(0) 编辑
摘要: 使用的python版本是2.7 经过一番查找得知原因: create_unverified_context属性在Python2.7.9版本后才加入,如果你用的2.7.9之前的版本出现上述错误,则下载安装2.7.9之后的版本即可解决该问题。目前Python2.7的最新版本号是2.7.17。 更新版本后 阅读全文
posted @ 2020-10-17 23:13 LuoSpider 阅读(740) 评论(0) 推荐(0) 编辑
摘要: 首先进入页面,发现是python代码,整理如下: import flask import os app = flask.Flask(__name__) app.config['FLAG'] = os.environ.pop('FLAG') @app.route('/') def index(): r 阅读全文
posted @ 2020-10-17 17:43 LuoSpider 阅读(630) 评论(0) 推荐(1) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页