2024年12月22日
摘要: 第一步 http://192.168.1.117/sqli-labs/Less-1/?id=' union select 1,2,3 --+ //构建语句 阅读全文
posted @ 2024-12-22 21:53 Ad1ey 阅读(30) 评论(0) 推荐(0)
  2024年12月20日
摘要: sqlmap -u "http://192.168.1.117/sqli-labs/Less-1/?id=1" --technique=U --dbs -u <目标URL>:指定目标 URL(包括注入点)。 --technique=U:告诉 sqlmap 使用 UNION 注入技术(U 代表 UNI 阅读全文
posted @ 2024-12-20 20:07 Ad1ey 阅读(153) 评论(0) 推荐(0)
  2024年12月9日
摘要: information_schema 5.0及以上版本系统数据库 information_schema.tables 数据库表名称 information_schema.columns 数据库列名称 information_schema.schemata 存取所有数据库 schema_name. 数 阅读全文
posted @ 2024-12-09 20:00 Ad1ey 阅读(46) 评论(0) 推荐(0)
  2024年12月8日
摘要: mysql.ini修改配置 general_log = 1 general_log_file = "D:/phpstudy/Extensions/MySQL5.7.26/data/mysql.log" 阅读全文
posted @ 2024-12-08 22:56 Ad1ey 阅读(40) 评论(0) 推荐(0)
摘要: $id 数字型(id=$id) 1 and 1=1 id=1 and 1=1 返回正常 1 and 1=2 id=1 and 1=2 返回错误 1 or 1=1 id= 1 or 1=1 返回正常 1 or 1=2 id=1 or 1=2 返回正常 1' id=1' 返回错误 1' --+ id=1 阅读全文
posted @ 2024-12-08 20:51 Ad1ey 阅读(89) 评论(0) 推荐(0)
摘要: 一、安装hackbar 下载压缩包 选择一个版本 拖入扩展程序 点击查看详情 3. 点击链接 跳到安装目录 打开开发者模式,拖拽安装 修改harkbar-panel.js文件 为了防止出错 先备份一个 5. 更改三个函数改为init() F12 即可看到harkbar 首次可能会有延时 安装完成! 阅读全文
posted @ 2024-12-08 19:55 Ad1ey 阅读(953) 评论(0) 推荐(0)
  2024年12月7日
摘要: 语法格式: Example: 向dvwa数据库下的guestbook数据表插入数据 insert into 表名(字段1,字段2,.......)values(值1,值 2,.......); insert into guestbook(comment,name) values('welcome', 阅读全文
posted @ 2024-12-07 21:26 Ad1ey 阅读(82) 评论(0) 推荐(0)
  2024年12月4日
摘要: 通过注册表编辑器 按下Win + R键,打开运行窗口,输入“regedit”并点击“确定”打开注册表编辑器。 在注册表编辑器中,依次展开“HKEY_CURRENT_USER”、“Software”、“Microsoft”、“Windows”、“CurrentVersion”、“Policies”、“ 阅读全文
posted @ 2024-12-04 22:35 Ad1ey 阅读(172) 评论(0) 推荐(0)
摘要: 具体解决方法: 1、由于MMC.exe无法运行,可能会遇到在运行中输入“gpedit.msc”命令无法打开本地组策略编辑器,所以我们鼠标右键点击“开始菜单”,点击“windows powershell(管理员)”,或者是开始→window系统→命令提示符→右击选择以管理员身份运行,在windows 阅读全文
posted @ 2024-12-04 22:13 Ad1ey 阅读(1525) 评论(0) 推荐(0)
  2024年11月27日
摘要: 引用:https://blog.csdn.net/Stromboli/article/details/142486565 sudo tee /etc/docker/daemon.json <<EOF { "registry-mirrors": [ "http://hub-mirror.c.163.c 阅读全文
posted @ 2024-11-27 23:52 Ad1ey 阅读(690) 评论(0) 推荐(0)