摘要:
一、SQL 注入 1.1 看看是否有 sql 注入漏洞 加个引号可以看出来 1.2 判断是数字注入还是字符注入 字符:admin' and 1=1# 数字:admin and 1=1 1.3 获得数据库的信息:数据库名、表名、字段名、对应信息 1.3.1 首先获得这个表的字段数量 admin' an 阅读全文
摘要:
开机自启动:https://www.zhihu.com/question/396439642 后台启动:https://www.cnblogs.com/sheng-247/p/10528160.html 阅读全文
摘要:
https://zhuanlan.zhihu.com/p/605484956 阅读全文
摘要:
https://blog.51cto.com/u_16175497/7722688 阅读全文
摘要:
php 连接数据库 header("Content-type:text/html; charset=utf8"); $servername = "localhost"; $username = "root"; $password = "root"; $dbTable = "dvwa"; $conn 阅读全文
摘要:
https://zhuanlan.zhihu.com/p/594029549 阅读全文
摘要:
```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: # 这里是大于等于 阅读全文
c:\windows\temp\ccvjvr7w.o:problemfour.cpp:(.text+0x17): undefined reference to `std::basic_istream<
摘要:
看看是不是编译g++写成gcc了? 阅读全文
摘要:
https://blog.csdn.net/Fantasy_Lin_/article/details/105455974 阅读全文
摘要:
## 配置maven 1. ctrl + , 2. 搜索java.configuration.maven 3. 输入setting.xml的路径 **注意路径不能有中文或者空格** ## 创建springboot项目 ctrl+shift+p创建项目,输入spring Initializer:cre 阅读全文