摘要: 一、SQL 注入 1.1 看看是否有 sql 注入漏洞 加个引号可以看出来 1.2 判断是数字注入还是字符注入 字符:admin' and 1=1# 数字:admin and 1=1 1.3 获得数据库的信息:数据库名、表名、字段名、对应信息 1.3.1 首先获得这个表的字段数量 admin' an 阅读全文
posted @ 2023-12-06 11:36 小默同学 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 开机自启动:https://www.zhihu.com/question/396439642 后台启动:https://www.cnblogs.com/sheng-247/p/10528160.html 阅读全文
posted @ 2023-12-03 23:48 小默同学 阅读(0) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/605484956 阅读全文
posted @ 2023-12-03 23:45 小默同学 阅读(1) 评论(0) 推荐(0) 编辑
摘要: https://blog.51cto.com/u_16175497/7722688 阅读全文
posted @ 2023-12-03 17:24 小默同学 阅读(1) 评论(0) 推荐(0) 编辑
摘要: php 连接数据库 header("Content-type:text/html; charset=utf8"); $servername = "localhost"; $username = "root"; $password = "root"; $dbTable = "dvwa"; $conn 阅读全文
posted @ 2023-11-30 11:12 小默同学 阅读(1) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/594029549 阅读全文
posted @ 2023-08-18 00:44 小默同学 阅读(11) 评论(0) 推荐(0) 编辑
摘要: ```python ls = [i+1 for i in range(11)] i = 0 def binary_search(value, front, end): global i i += 1 mid = (front + end)//2 if end >= front: # 这里是大于等于 阅读全文
posted @ 2023-08-14 23:14 小默同学 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 看看是不是编译g++写成gcc了? 阅读全文
posted @ 2023-05-18 15:01 小默同学 阅读(11) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/Fantasy_Lin_/article/details/105455974 阅读全文
posted @ 2023-05-08 10:07 小默同学 阅读(14) 评论(0) 推荐(0) 编辑
摘要: ## 配置maven 1. ctrl + , 2. 搜索java.configuration.maven 3. 输入setting.xml的路径 **注意路径不能有中文或者空格** ## 创建springboot项目 ctrl+shift+p创建项目,输入spring Initializer:cre 阅读全文
posted @ 2023-04-28 17:06 小默同学 阅读(343) 评论(0) 推荐(0) 编辑