摘要: VS Code Mac OS 折叠代码快捷键: // 折叠 光标所在代码块:Command + option + [ // 展开 光标所在代码块:Command + option + ] 折叠所有代码块:command + k + 0 展开所有代码块:command + k + j Win OS 折 阅读全文
posted @ 2025-06-18 09:59 HOsystem 阅读(30) 评论(0) 推荐(0)
摘要: 2024 计划 1、完善个人脚手架,从功能的集成度、实用性、安全性方面进行完善; 2、通过 Gitee、Github 开源Web安全、自动化部署、Bash Shell脚本运维等相关文档、工具; 3、扩展 API安全、云原生安全、容器安全等安全理论知识,能够将理论知识同攻击过程实践落地并编写成文档、工 阅读全文
posted @ 2025-01-01 02:12 HOsystem 阅读(89) 评论(0) 推荐(0)
摘要: Spring 依赖包 Spring Core 依赖包 Spring Beans 依赖包 Spring Context 依赖包 Spring expression 依赖包 Spring Security 依赖包 在 Spring Security 中,spring-security-config 和 阅读全文
posted @ 2024-07-23 13:36 HOsystem 阅读(62) 评论(0) 推荐(0)
摘要: 2023年 计划 1、阅读Spring、dubbo、netty、Spring Boot等重要框架的源码; 2、学习设计模式和算法,并能够应用到项目代码中; 3、扩大安全的知识范围,重心从 Web 安全转向工控(ICS)安全、容器/云原生安全、API安全等其它安全方向; 4、对目前存在的Web安全、工 阅读全文
posted @ 2023-12-30 02:07 HOsystem 阅读(73) 评论(0) 推荐(0)
摘要: 目录OS 换源脚本Centos7基础环境Git 安装脚本中间件脚本MySQL 安装脚本Nginx 安装脚本 OS 换源脚本 Centos7 #!/bin/bash cd /etc/yum.repos.d/ mkdir repo_bak mv *.repo repo_bak/ curl -o /etc 阅读全文
posted @ 2023-11-30 23:58 HOsystem 阅读(111) 评论(0) 推荐(0)
摘要: ## Docker 网络 ### 网络接口查看 - ip 命令 ```sh # 方式一 $ ip link show # 方式二 # ip address、ip addr、ip a都是等价的命令 $ ip address ...... ens32: mtu 1500 qdisc pfifo_fast 阅读全文
posted @ 2023-08-31 23:29 HOsystem 阅读(86) 评论(0) 推荐(0)
摘要: ## 栈内存溢出 栈内存错误包括:栈帧过多(StackOverflowError)、栈帧过大(OutOfMemoryError) - StackOverflowError:如果线程请求的栈深度大于虚拟机所允许的最大深度; - OutOfMemoryError:如果虚拟机的占内存允许动态扩展,当扩展容 阅读全文
posted @ 2023-07-28 09:36 HOsystem 阅读(117) 评论(0) 推荐(0)
摘要: tar GNU `tar' saves many files together into a single tape or disk archive, and can restore individual files from the archive. tar:用于压缩和解压缩文件; 格式:tar 阅读全文
posted @ 2023-02-13 01:01 HOsystem 阅读(2402) 评论(0) 推荐(0)
摘要: 2022年 计划 [x] 1、完善爬虫项目;:grin: [x] 2、系统化学习安全相关知识;(基本完成):grin: [ ] 3、学习设计模式和算法;:disappointed_relieved: [x] 4、系统化的学习运维的知识,并能够达到从中查找出服务器的瓶颈并给出解决方案;:grin: [ 阅读全文
posted @ 2023-01-09 10:26 HOsystem 阅读(138) 评论(0) 推荐(0)
摘要: nc (ncat) Ncat is a feature-packed networking utility which reads and writes data across networks from the command line; nc(ncat):Ncat是一个功能丰富的网络实用工具;支 阅读全文
posted @ 2022-12-27 21:50 HOsystem 阅读(4144) 评论(0) 推荐(0)