某日朋友发来一个Struts2的洞 说开始测试的时候能执行命令,结果交了以后审核说复现不了,他看了一下是被waf拦了。 于是发我看看能不能绕过。 首先用普通的payload打一下 %{(#test='multipart/form-data').(#dm=@ognl.OgnlContext@DEFAU ...
分类:
其他好文 时间:
2021-01-04 11:08:25
阅读次数:
0
mysql多实例部署 下载源码包 [root@localhost ~]# wget https://downloads.mysql.com/archives/get/p/23/file/mysql-5.7.31-linux-glibc2.12-x86_64.tar.gz [root@localhos ...
分类:
数据库 时间:
2021-01-04 10:40:58
阅读次数:
0
数据库目录:/var/lib/mysql/ 配置文件:/usr/share/mysql(mysql.server命令及配置文件) 相关命令:/usr/bin(mysqladmin、mysqldump等命令)(*mysql的一种安全启动方式:/usr/bin/mysqld_safe --user=ro ...
分类:
数据库 时间:
2021-01-02 11:08:48
阅读次数:
0
背景 本文旨在记录解决问题的办法及思路。 需求是识别视频中的话语转为文字,此服务是调用的百度的websocket服务,其要求是: 发送一个text类型的帧,用于登录。 后续发送binary类型的音频数据。 开发语言:Golang websocket库:github.com/gorilla/webso ...
分类:
Web程序 时间:
2021-01-01 12:59:25
阅读次数:
0
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Com ...
分类:
其他好文 时间:
2021-01-01 12:41:44
阅读次数:
0
The Atomic Reference Counter (Arc) type is a smart pointer that lets you share immutable data across threads in a thread-safe way. I couldn’t find any ...
分类:
其他好文 时间:
2021-01-01 12:32:52
阅读次数:
0
问题 求两个字符串的 LCS ?度: 输?: str1 = "abcde", str2 = "ace" 输出: 3 解释: 最?公共?序列是 "ace",它的?度是 3 思路 对于两个字符串的动态规划问题,?般来说都是定义 DP table,容易写出状态转移?程, dp[i][j] 的状态可以通过之 ...
分类:
其他好文 时间:
2021-01-01 12:21:19
阅读次数:
0
1.代码实现 package main import ( "fmt" "github.com/gomodule/redigo/redis" ) var pool *redis.Pool; func init(){ pool = &redis.Pool{ MaxIdle: 8, MaxActive:0 ...
分类:
其他好文 时间:
2021-01-01 12:17:32
阅读次数:
0
1.我们通过Java来向某个WebHook地址发送POST请求,并携带我们需要发送的消息2.代码示例搭建Maven项目,在pom.xml文件里引入httpclient依赖 1 <dependency> 2 <groupId>org.apache.httpcomponents</groupId> 3 ...
分类:
微信 时间:
2020-12-31 12:09:45
阅读次数:
0
在阿里云服务器Centos7中安装mysql5.7,解压数据库初始化后,报错 ./mysqld: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or di ...
分类:
数据库 时间:
2020-12-31 11:58:26
阅读次数:
0