【shell】(20231101) for循环遍历时加不加引号的区别 11234567891011121314151617181920212223242526272829303132## 脚本lines=("* 12 34""* 56 78")for line in ${lines[@]}do echo $linedone## 执行# lltotal 4-rw------- 1 root root 180 2023-11-01 shell
【ctf系列】XSS Burpsuite:Encoder 将一个url变成url的编码方式Render 渲染 window.location 重定向 nc -vnlp 80 监听80端口 writeup 2XSS Test Platform 2023-10-31
【ctf系列】pwn https://www.bilibili.com/video/BV1Pv4y1F73K/?spm_id_from=333.999.0.0&vd_source=3d4bc6a91e11c12d0e3b57b4e50c9818 2023-10-31
【cue】test2 12345678910for k, v in SelfNodeVariable.regionImageRegistryResolution { { data: """ test3.host """ mode: &q 2023-10-31
【docker系列】构建dashboard的arm镜像 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394##################### 2023-10-31
4 12345678910111213141516171819#### 04节###### bpftool,用它可以查看 eBPF 程序的运行状态# 查询系统中正在运行的 eBPF 程序sudo bpftool prog list # 导出这个 eBPF 程序的指令sudo bpftool prog dump xlated id 89sudo bpftool prog dump jited id 8 2023-10-31
【ebpf】编译 环境1234567891011121314151617# uname -aLinux ningan 5.4.0-147-generic #164~18.04.1-Ubuntu SMP Tue Apr 4 00:20:20 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux# cat /etc/os-releaseNAME="Ubuntu"VERSIO 2023-10-31
【k8s系列】todo(202305) kubeconfig文件 在Kubernetes中,kubeconfig是用于指定如何连接到Kubernetes集群的配置文件。kubeconfig包含了以下信息: Kubernetes API服务器的地址和访问凭据(用户名和密码、客户端证书和私钥等)。 用于授权访问Kubernetes API的凭据(例如,Token、BasicAuth等)。 Kubernetes集群的CA(证书颁发机构)证书,用于验证API服务器的T 2023-10-31
【linux系列】(202307) 常用命令:grep 123456789# grep如何查找两个字符串cat "xxxx" | grep -E "thb7r|6rgl8"# grep 如何获取以aaa开头的字符串echo -e "aaa123\nbbb456\n789aaa\naaa789\nccc012"echo -e "aaa123\nbbb456\n789aaa\naaa78 2023-10-31