码迷,mamicode.com
首页 >  
搜索关键字:PAT    ( 13517个结果
PAT-A1029 Median (25分)甲级题解
Given an increasing sequence S of N integers, the median is the number at the middle position. For example, the median of S1 = { 11, 12, 13, 14 } is 1 ...
分类:其他好文   时间:2021-01-21 10:52:05    阅读次数:0
服务器--Tomcat启动了不安全的HTTP方法解决办法
一、问题描述 平时我们项目中基本上用的都是GET/POST请求方法,其他的方法是很少用到的,如PUT/DELETE/HEAD/OPTIONS/TRACE,不关闭这些HTTP请求方法,是常见的web漏洞之一。 二、解决办法 把他们关闭即可!!! 添加以下节点代码到web.xml配置文件当中。可以在项目 ...
分类:Web程序   时间:2021-01-20 12:15:41    阅读次数:0
关于任意文件下载及上传漏洞
(文章目录) 任意文件读取下载 1、原理 一些网站由于业务需求,往往需要提供文件查看或文件下载功能,但若对用户查看或下载的文件不做限制,则恶意用户就能够查看或下载任意敏感文件,这就是文件查看与下载漏洞。 2、利用方式 一般链接形式: download.php?path= down.php?file= ...
分类:Web程序   时间:2021-01-18 10:49:09    阅读次数:0
nginx - fastcgi param
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;#脚本文件请求的路径 fastcgi_param QUERY_STRING $query_string; #请求的参数;如?app=123 fastcgi_param R ...
分类:其他好文   时间:2021-01-18 10:38:12    阅读次数:0
Linux之进程管理
一、进程管理 1、ps查看进程 [root@VM-4-16-centos ~]#ps -aux USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND root 1 0.0 0.3 43596 3440 ? Ss Jan08 0:16 /usr/ ...
分类:系统相关   时间:2021-01-16 12:03:46    阅读次数:0
Performance Profiling of .NET Core 3 applications on Linux with dotnet-trace and PerfView(转发)
原文: https://michaelscodingspot.com/dotnet-trace/ Performance issues never seem to disappear from the world, no matter how fast new computers become. T ...
分类:移动开发   时间:2021-01-16 11:55:44    阅读次数:0
4、配置MVC的乱码过滤:解决中文乱码
在web.xml中配置以下内容: <!--配置MVC的乱码过滤--> <filter> <filter-name>encoding</filter-name> <filter-class>org.springframework.web.filter.CharacterEncodingFilter</ ...
分类:Web程序   时间:2021-01-15 11:50:19    阅读次数:0
GoLand GO MOD模式设置
1,设置GO SDK 2,设置GOPATH 3,设置build所需的环境变量: 4设置go mod ...
分类:其他好文   时间:2021-01-15 11:47:57    阅读次数:0
Postman简单用法以及转cURL等命令的正确姿势
2019.07.06 22:49 4747浏览 一、背景 Postman很多公司测试代码的一个常用工具。掌握其用法,对我们接口的测试有很大的帮助。 本文将对其简单的用法以及如何转成其他命令进行讲解。 二、演示 2.1 下载和安装 下载地址在这里,安装很简单自行安装 https://www.getpo ...
分类:Web程序   时间:2021-01-14 11:07:43    阅读次数:0
vue之for循环动态加载图片不显示问题
问题记录:v-for循环获取img src变量动态渲染时,不显示图片 <li v-for="(item,index) in menuData" :key="item.id"> <div> <img :src="item.iconPath" alt=""> </div> </li><script>ex ...
分类:其他好文   时间:2021-01-13 11:36:04    阅读次数:0
13517条   上一页 1 ... 20 21 22 23 24 ... 1352 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!