Skip to content

Commit

Permalink
端点安全-目录结构调整
Browse files Browse the repository at this point in the history
  • Loading branch information
Ayusummer committed May 16, 2024
1 parent c543bd2 commit 52e912c
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 2 deletions.
34 changes: 32 additions & 2 deletions docs/.vuepress/sidebar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -316,11 +316,28 @@ let security_phishing_attachments_Office = [
];

/** 端点安全 */
let endpoint_security = [
let endpointSecurity = [
{
text: "端点安全",
link: "/网络安全/端点安全/",
},
{
text: "Malware",
children: [
{
text: "Malware",
link: "/网络安全/端点安全/Malware/",
},
{
text: "从基础的RAT出发梳理一些常见的查杀与免杀技术",
link: "/网络安全/端点安全/Malware/从基础的RAT出发梳理一些常见的查杀与免杀技术.md"
},
{
text: "查杀技术",
link: "/网络安全/端点安全/Malware/查杀技术/",
}
]
},
{
text: "Windows",
link: "/网络安全/端点安全/Windows/",
Expand Down Expand Up @@ -352,6 +369,19 @@ let endpoint_security = [
},
];

/** 端点安全-Malware-查杀技术 */
let endpointSecurity_malware_scan = [
{
text: "查杀技术",
link: "/网络安全/端点安全/Malware/查杀技术/",
},
{
text: "AMSI",
link: "/网络安全/端点安全/Malware/查杀技术/AMSI.md",
}
];


/** 加密算法侧边栏 */
let security_encrypt = [
{
Expand Down Expand Up @@ -655,7 +685,7 @@ export const Sidebar = sidebar({
"/网络安全/加密算法/": security_encrypt,
"/网络安全/ATTCK/": security_ATTCK,
"/网络安全/Web安全/": security_web,
"/网络安全/端点安全/": endpoint_security,
"/网络安全/端点安全/": endpointSecurity,
"/网络安全/内网渗透/": penetration,
"/网络安全/信息收集/": information_collection,
"/网络安全/钓鱼/": security_phishing,
Expand Down
9 changes: 9 additions & 0 deletions docs/网络安全/端点安全/Malware/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Malware

## 各厂商威胁名称整理

- `安软`: [详解安软威胁名称意义 (kaitaku.xyz)](https://www.kaitaku.xyz/misc/antivirus/)
- `卡巴`: [卡巴斯基:病毒是怎么命名的-PChome](https://m.pchome.net/article/content-513157-all.html)

---

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# 查杀技术

0 comments on commit 52e912c

Please sign in to comment.