Author:Bluecap
Created:2025-04-26
[CH]网上知识过于杂乱分散,重新总结基础知识,记录重点,漏洞原理、工具使用、攻击手法、绕过、免杀等等,没有口水话,只有经典!
后续完善后会开放公网使用,同时也欢迎大家多多分享!
[EN]Online knowledge is too scattered and disorganized, we reorganize the basic knowledge, record the key points, vulnerability principles, tool usage, attack techniques, bypass, unkillable, etc. There is no sourdough speech, only classic!Later we will make it public for everyone to use. We also welcome everyone to share with us.
- 项目使用Hello VuePress
- npm install -g vuepress #需 Node.js
- vuepress dev docs #本地预览
- vuepress build docs #打包生成html
请查看docs/.vuepress/config.js
文件进行配置。
- 确保服务器已安装Node.js和npm。
- 将项目上传到服务器。
- 在项目根目录下运行以下命令进行构建:
- 构建完成后,生成的静态文件会位于docs/.vuepress/dist目录下。
- 配置Web服务器(如Nginx或Apache)将根目录指向docs/.vuepress/dist。
- 启动Web服务器,访问配置的域名或IP地址即可查看部署后的项目。
- 在GitHub上创建一个新的仓库。
- 在本地项目根目录下初始化Git仓库:
git init - 将本地项目关联到GitHub仓库:
git remote add origin https://github.com/your-username/your-repo-name.git - 将项目文件添加到Git仓库并提交:
git add .
git commit -m "Initial commit" - 将本地代码推送到GitHub仓库:
git push -u origin master - 后续更新项目后,执行以下命令同步到GitHub:
git add .
git commit -m "Update project"
git push origin master - 出现SSL certificate problem: unable to get local issuer certificate问题执行如下:
git config --global http.sslBackend "schannel" # Windows系统