Less-54 GET - challenge - Union - 10 queries allowed - Variation 1 get union注入 变异 ?id=1' //显示异常 ?id=1'%23 //显示正常,说明参数可能被 单引号 ' 闭合 ?id=1' order by 3%23 ...
分类:
数据库 时间:
2020-04-01 19:35:16
阅读次数:
97
1.在用Navicat配置远程连接Mysql数据库时遇到如下报错信息,这是由于Mysql配置了不支持远程连接引起的。 2.在安装Mysql数据库的主机上登录root用户: mysql -u root -p 3.依次执行如下命令: use mysql; select host from user wh ...
分类:
数据库 时间:
2020-03-31 22:59:53
阅读次数:
82
题目描述 Given two words word1 and word2, find the minimum number of operations required to convert word1 to word2. You have the following 3 operations pe ...
分类:
其他好文 时间:
2020-03-31 18:48:00
阅读次数:
81
class RandomizedCollection { unordered_map<int,unordered_set<int>> m; vector<int> vals; public: /** Initialize your data structure here. */ Randomized ...
分类:
其他好文 时间:
2020-03-31 12:39:20
阅读次数:
61
Lesson 62 GET - challenge - Blind - 130 queries allowed - Variation 1 由此看出,尝试次数为130次,肯定就是盲注,但是真的一次次试,肯定不行,这里就看一下id值包裹情况,具体尝试不再展示。 (1)id值 http://192.16 ...
分类:
数据库 时间:
2020-03-30 23:35:10
阅读次数:
130
Lesson 58 GET - challenge - Double Query - 5 queries allowed - Variation 1 由此看到,我们只有5次尝试机会,我们要尽量节省次数,order by在之前已知3列,就不再进行测试。 (1)第一次 ?id=1 显示正常,由此看出id ...
分类:
数据库 时间:
2020-03-30 23:05:28
阅读次数:
93
linux安装maridb数据库jemalloc1依赖问题解决
分类:
数据库 时间:
2020-03-30 00:12:11
阅读次数:
185
Connection is read-only. Queries leading to data modification are not allowed; 这是因为我们再Spring配置的事物中,没有配置以***开头的事物方法。 ...
分类:
其他好文 时间:
2020-03-28 19:42:31
阅读次数:
65
之前用java做Hadoop相关项目没有遇到这种问题,今天使用python操作HDFS遇到这个问题,首先是权限之类的问题,在core site.xml中配置可以访问的hosts和groups, 具体: 注意xxx是管理用户名,然而我配置之后仍然出现not allowed错误,心想如果是我连接的这个用 ...
分类:
其他好文 时间:
2020-03-28 13:19:33
阅读次数:
72
##第一点: 需要在你的setting.py文件中将按照如下设置: ALLOWED_HOSTS = ['127.0.0.1', '192.168.1.102'] 192.168.1.102是Django所在机器的IP (此段验证未成功:或者在中括号中加入你在局域网中的IP。如我在局域网中的IP为19 ...
分类:
Web程序 时间:
2020-03-28 13:16:55
阅读次数:
234