漏洞关键字 SQL注入: select insert update mysql_query mysqli等 文件上传: $_FILES,type="file",上传,move_upload_file()等 XSS跨站: print print_r echo sprintf die var_dump ...
分类:
其他好文 时间:
2021-03-06 14:12:18
阅读次数:
0
参考资料https://www.cnblogs.com/otis-oc/p/10388650.html https://blog.csdn.net/danby2/article/details/104529713/?utm_medium=distribute.pc_relevant.none-tas ...
分类:
Web程序 时间:
2021-03-05 13:17:50
阅读次数:
0
#user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; ev ...
分类:
Web程序 时间:
2021-03-04 13:35:58
阅读次数:
0
File upload XSS Description This script is possibly vulnerable to XSS (Cross-site scripting). The web application allows file upload and Acunetix was ...
分类:
其他好文 时间:
2021-03-04 13:34:27
阅读次数:
0
https://blog.csdn.net/wei348144881/article/details/79233529 https://blog.csdn.net/wangjianguobj/article/details/54434280?utm_medium=distribute.pc_rele ...
分类:
其他好文 时间:
2021-03-02 12:06:01
阅读次数:
0
我们在编程的时候经常会碰到字符串分割的问题,这里总结C++常用字符串分割方法,分享给大家。 一、用strtok函数进行字符串分割 原型: char *strtok(char *str, const char *delim); 功能:分解字符串为一组字符串。 参数说明:str为要分解的字符串,deli ...
分类:
编程语言 时间:
2021-03-01 13:13:56
阅读次数:
0
nginx服务器地址及端口:127.0.0.1:80 后端服务地址及端口:127.0.0.1:8080 测试URL:http://127.0.0.1:80/api/upload 一 nginx配置: location /api/ { proxy_pass http://127.0.0.1:8080/ ...
分类:
其他好文 时间:
2021-03-01 13:05:41
阅读次数:
0
main.go package main import ( "github.com/gin-gonic/gin" "net/http" "path" ) func main() { r :=gin.Default() r.LoadHTMLFiles("./upload.html") r.GET("/ ...
分类:
Web程序 时间:
2021-02-26 13:25:16
阅读次数:
0
1、介绍enctype enctype 属性规定发送到服务器之前应该如何对表单数据进行编码。 enctype作用是告知服务器请求正文的MIME类型(请求消息头content-type的作用一样) 1、1 enctype的取值有三种 值 描述 application/x-www-form-urlenc ...
分类:
编程语言 时间:
2021-02-26 13:08:15
阅读次数:
0
https://edu.csdn.net/course/detail/20536?utm_medium=distribute.pc_relevant.none-task-course-BlogCommendFromMachineLearnPai2-1.control&dist_request_id= ...
分类:
编程语言 时间:
2021-02-25 12:22:47
阅读次数:
0