一、HTML <form> 标签的 enctype 属性 1、application/x-www-form-urlencoded 在发送前编码所有字符(默认) 2、multipart/form-data 不对字符编码。在使用包含文件上传控件的表单时,必须使用该值。 3、text/plain 空格转换 ...
分类:
其他好文 时间:
2020-06-09 14:25:29
阅读次数:
56
1. application/x-www-form-urlencoded 默认。在发送前对所有字符进行编码(将空格转换为 "+" 符号,特殊字符转换为 ASCII HEX 值)。 multipart/form-data 不对字符编码。当使用有文件上传控件的表单时,该值是必需的。 text/plain ...
分类:
Web程序 时间:
2020-05-31 17:36:39
阅读次数:
81
首先打开页面 这里第一个第二个绕过方式很简单 php://input data://text/plain;base64,d2VsY29tZSB0byB0aGUgempjdGY= 均可绕过file_get_contents() 有了提示 useless.php php://filter/read=co ...
分类:
其他好文 时间:
2020-05-07 13:27:44
阅读次数:
88
<img :src="`data:image/jpg;base64,${codeSrc}`" class="verify-code__img" @click="getVerifyCode" /> Data URI scheme支持的类型有: data:,文本数据 data:text/plain,文本 ...
分类:
其他好文 时间:
2020-04-29 16:27:48
阅读次数:
72
记录postman发送请求报错 1.Content type 'text/plain;charset=UTF-8' not supported 解决方法:配置HTTP信息头管理器,增加消息头 Content-Type:application/json;charset=UTF-8 ...
分类:
其他好文 时间:
2020-04-28 15:09:53
阅读次数:
58
什么是复杂请求? 1、非head、get、post请求方法; 2、Content Type 的值不属于下列之一:application/x www form urlencoded、multipart/form data、text/plain; 3、人为设置了以下集合之外首部字段:Accept/Acc ...
分类:
Web程序 时间:
2020-04-27 17:13:33
阅读次数:
112
一、压缩配置 #全局配置 http { gzip on; gzip_min_length 1k; gzip_buffers 4 16k; gzip_comp_level 2; gzip_types text/plain application/x-javascript text/css applic ...
分类:
其他好文 时间:
2020-04-08 12:12:18
阅读次数:
69
function download(filename, text) { var pom = document.createElement('a'); pom.setAttribute('href', 'data:text/plain;charset=utf-8,' + encodeURICompon ...
分类:
Web程序 时间:
2020-04-04 11:23:48
阅读次数:
79
res.setHeader('Content-Type','text/plain;charset="utf-8"') Content-Type的类型 text/plain 文本 text/html 包含html标签的文本 例子: var http = require('http') var serv ...
分类:
Web程序 时间:
2020-03-31 14:25:51
阅读次数:
103
[BJDCTF2020]ZJCTF,不过如此 天行健,君子以自强不息,地势坤,君子以厚德载物。 记录一道 BJDCTF2020 的题目,这道题目看题目的意思是向浙江ctf提出了挑衅,我们打开题目,看到考点是简单的php伪协议,我们开始走起 ?text=data:text/plain,I have a ...
分类:
其他好文 时间:
2020-03-13 13:20:22
阅读次数:
153