[Linux] 网络分析工具 tcpdump 2021-04-24 linux 1336 words 3 mins read Linux tcpdump tcpdump是Linux系统中功能强大的网络工具, 运行在用户态,通过调用 libpcap 库的 api 来实现数据包的抓取。常用于故障诊断,网络分析,收集网络 Read more...
[宋词] 《满江红·怒发冲冠》 2021-04-18 中文 130 words 1 min read 《满江红·怒发冲冠》南宋·岳飞 怒发冲冠,凭栏处,潇潇雨歇。 抬望眼,仰天长啸,壮怀激烈。 三十功名尘与土,八千里路云和月。 莫等闲,白了少年头,空 Read more...
[MySQL] MySQL身份验证插件 2021-04-04 mysql 1931 words 4 mins read MySQL身份验证插件(mysql_old_password、mysql_native_password、sha256_password、c Read more...
[Linux] ssh端口转发 2021-03-07 linux 405 words 1 min read Linux ssh 端口转发 SSH有三种端口转发模式: 本地端口转发(Local Port Forwarding) 远程端口转发(Local Port Forwarding) 动态端口转发(Dynamic Port Forwarding) 本地端口转发 使 Read more...
[Go] rsa OAEP 加密、解密在go中使用及mysql中的应用 2021-03-06 golang 1301 words 3 mins read rsa OAEP 加密、解密 OAEP全称为Optimal Asymmetric Encryption Padding.是一种非对称加密填充场景. 生成RSA证书 use the openssl command to set up the RSA key files. create 2,048-bit keys. 1 2 openssl genrsa -out Read more...