摘要: get基于报错的sql注入发现 Less1: sqli-labs第一关提示说在网页上输入id,也就是?id=1。 但这个?是什么意思,它表示index.php?也就是默认页面。然后?id=1就是把id=1提交到index.php或默认的页面上面。也就是提交参数。 在id=1后面输入单引号 ' 出现报 阅读全文
posted @ 2023-03-13 19:38 0x1e61 阅读(109) 评论(0) 推荐(0)
摘要: sql常见语句: 1.select(查) * from 表名:select * from 表名 2.insert into(增) :insert into 表名 values(value1, value2…) 3.delete(删除):delete from 表名 where 字段名=value; 阅读全文
posted @ 2023-03-13 19:20 0x1e61 阅读(53) 评论(0) 推荐(0)
摘要: sqlmap 环境搭建: windows 1.先去官网下载:https://sqlmap.org/ 2.在python的Scripts目录下创建一个sqlmap 把官网下载的东西解压到那里 3.添加环境变量python的,python目录下scripts scripts目录下sqlmap 4.打开c 阅读全文
posted @ 2023-03-13 08:52 0x1e61 阅读(318) 评论(0) 推荐(0)