1、查看源码得到网卡配置信息 2、输入本地地址,发现重复运行了index.php 3、ip爆破 4、端口爆破 5、用file协议读取文件 这里过滤了file://,可以使用file:/,file: ///,file:_///绕过,读取源码,过滤了 6、redis未授权访问gopher协议利用 过滤了 ...
分类:
Web程序 时间:
2021-05-04 15:28:31
阅读次数:
0
运行时出现下面的错误: C:/cb/pytorch_1000000000000/work/aten/src/ATen/native/cuda/IndexKernel.cu:142: block: [0,0,0], thread: [17,0,0] Assertion `index >= -sizes ...
分类:
其他好文 时间:
2021-05-03 12:58:43
阅读次数:
0
pi表示在信息熵部分中有介绍,如下图中介绍 选择最小的那个0.3 #整个c4.5决策树的所有算法: import numpy as np import operator def creatDataSet(): """ outlook-> 0:sunny | 1:overcast | 2:rain t ...
分类:
其他好文 时间:
2021-05-03 12:13:28
阅读次数:
0
all privileges权限有哪些: select, insert, update, delete, create, drop,references, index,alter,create temporary tables,lock tables,execute,create view,show ...
分类:
数据库 时间:
2021-05-03 12:11:00
阅读次数:
0
禁用原生导航栏,APP、h5和微信小程序禁用的方法不一样哦,在page.json中配置 { "path": "pages/index/index", "style": { "navigationBarTitleText": "首页", "navigationStyle": "custom",//禁用 ...
分类:
移动开发 时间:
2021-04-30 12:06:06
阅读次数:
0
jQ的显示迭代 隐式迭代 let lis = document.querySelector('li') lis.forEach(function (value, index) { value.style.opacity = (index + 1) //随着li的增加,越来越不透明 }) 显示迭代 / ...
分类:
其他好文 时间:
2021-04-30 12:05:29
阅读次数:
0
externals: 外部的,用户忽略 npm包 前提: 在index.js中引入jquery包,但是打包的时候,就算引入了还是不会进行打包,所以需要用到 cdn引进来 module.exports = { mode:'production', externals: { //忽略库名 --npm包名 ...
分类:
Web程序 时间:
2021-04-29 12:12:10
阅读次数:
0
python中返回列表中指定元素的所有索引。 1、基本用法 >>> test1 ['aa', 'bb', 'aa', 'cc', 'aa', 'cc', 'dd', 'xx', 'bb'] >>> test1.index("aa") 0 2、返回所有索引 >>> test1 ['aa', 'bb', ...
分类:
编程语言 时间:
2021-04-29 12:10:59
阅读次数:
0
# 数组的声明和创建 1. 声明数组的时候在**栈里**压缩了一个数组2. 创建数组的时候会在**堆中**开辟了生成数组(new 的东西都放在数组中,**new出来的都是对象**)3. **ArrayIndexOutOfBoundsException**是数组下标越界,超出了定义的数组长度 ~~~j ...
分类:
编程语言 时间:
2021-04-29 12:03:47
阅读次数:
0
1. 安装 npm install vue-cropper --save-dev 2. 使用 <template> <div> <el-dialog title="选择图片" :visible.sync="isShowCropper" :before-close="handleClose" widt ...
分类:
其他好文 时间:
2021-04-29 11:48:35
阅读次数:
0