摘要: 最近看到一个tkinter教程,记录下:https://www.cnblogs.com/shwee/p/9427975.html 阅读全文
posted @ 2024-02-02 00:42 小默同学 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 一、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 小默同学 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 开机自启动:https://www.zhihu.com/question/396439642 后台启动:https://www.cnblogs.com/sheng-247/p/10528160.html 阅读全文
posted @ 2023-12-03 23:48 小默同学 阅读(6) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/605484956 阅读全文
posted @ 2023-12-03 23:45 小默同学 阅读(22) 评论(0) 推荐(0) 编辑
摘要: https://blog.51cto.com/u_16175497/7722688 阅读全文
posted @ 2023-12-03 17:24 小默同学 阅读(28) 评论(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 小默同学 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 看看是不是编译g++写成gcc了? 阅读全文
posted @ 2023-05-18 15:01 小默同学 阅读(21) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/Fantasy_Lin_/article/details/105455974 阅读全文
posted @ 2023-05-08 10:07 小默同学 阅读(17) 评论(0) 推荐(0) 编辑