From 0c5f7eab4a5917ce32b3dba4dc936b45ff29d34e Mon Sep 17 00:00:00 2001 From: guyupro Date: Fri, 12 Apr 2024 07:32:21 +0000 Subject: [PATCH] update --- content/About.md | 11 ++++++++ content/Bases/_index.md | 8 ++++++ content/Bases/http/_index.md | 8 ++++++ content/Practices/_index.md | 6 +++++ content/{m2 => Practices}/d1.md | 0 content/{m2 => Practices}/d2.md | 0 content/{m3 => Practices}/d3.md | 0 .../DNS Enumeration.md | 7 +++++ .../TCP UDP Port Scanning.md | 7 +++++ .../Active Information Gathering/_index.md | 7 +++++ .../Information Gathering/Lifecycle.md | 5 ++-- .../Google Hacking.md | 7 +++++ .../Passive Information Gathering/Netcraft.md | 7 +++++ .../Open-Source Code.md | 7 +++++ .../Whois Enumeration.md | 7 +++++ .../Passive Information Gathering/_index.md | 7 +++++ .../Theories/Information Gathering/_index.md | 7 +++++ content/Theories/Interpretations/_index.md | 5 ++++ content/Theories/Standard/_index.md | 18 +++++++++++++ content/Theories/Standard/china.md | 24 +++++++++++++++++ content/Theories/Standard/global.md | 11 ++++++++ content/Theories/_index.md | 11 ++++++++ content/Tools/Havoc.md | 6 +++++ content/Tools/_index.md | 11 ++++++++ content/Tools/evil-winrm.md | 6 +++++ content/Tools/freerdp.md | 6 +++++ content/Tools/frp.md | 6 +++++ content/Tools/fscan.md | 6 +++++ content/Tools/gobuster.md | 6 +++++ content/Tools/goproxy.md | 6 +++++ content/Tools/impacket/_index.md | 7 +++++ content/Tools/impacket/wmiexec.py.md | 6 +++++ content/Tools/nmap.md | 10 +++++++ content/Tools/nps.md | 6 +++++ content/Tools/sliver.md | 6 +++++ content/Tools/venom.md | 6 +++++ content/Tools/xfreerdp.md | 6 +++++ content/Vulnerabilities/_index.md | 11 ++++++++ content/_index.md | 2 +- content/m3/d1.md | 1 - content/m3/d2.md | 1 - "content/\347\254\2541/d1.md" | 27 ------------------- hugo.toml | 10 ++++--- layouts/partials/powered.html | 0 44 files changed, 286 insertions(+), 36 deletions(-) create mode 100644 content/About.md create mode 100644 content/Bases/_index.md create mode 100644 content/Bases/http/_index.md create mode 100644 content/Practices/_index.md rename content/{m2 => Practices}/d1.md (100%) rename content/{m2 => Practices}/d2.md (100%) rename content/{m3 => Practices}/d3.md (100%) create mode 100644 content/Theories/Information Gathering/Active Information Gathering/DNS Enumeration.md create mode 100644 content/Theories/Information Gathering/Active Information Gathering/TCP UDP Port Scanning.md create mode 100644 content/Theories/Information Gathering/Active Information Gathering/_index.md rename "content/\347\254\2541/_index.md" => content/Theories/Information Gathering/Lifecycle.md (57%) create mode 100644 content/Theories/Information Gathering/Passive Information Gathering/Google Hacking.md create mode 100644 content/Theories/Information Gathering/Passive Information Gathering/Netcraft.md create mode 100644 content/Theories/Information Gathering/Passive Information Gathering/Open-Source Code.md create mode 100644 content/Theories/Information Gathering/Passive Information Gathering/Whois Enumeration.md create mode 100644 content/Theories/Information Gathering/Passive Information Gathering/_index.md create mode 100644 content/Theories/Information Gathering/_index.md create mode 100644 content/Theories/Interpretations/_index.md create mode 100644 content/Theories/Standard/_index.md create mode 100644 content/Theories/Standard/china.md create mode 100644 content/Theories/Standard/global.md create mode 100644 content/Theories/_index.md create mode 100644 content/Tools/Havoc.md create mode 100644 content/Tools/_index.md create mode 100644 content/Tools/evil-winrm.md create mode 100644 content/Tools/freerdp.md create mode 100644 content/Tools/frp.md create mode 100644 content/Tools/fscan.md create mode 100644 content/Tools/gobuster.md create mode 100644 content/Tools/goproxy.md create mode 100644 content/Tools/impacket/_index.md create mode 100644 content/Tools/impacket/wmiexec.py.md create mode 100644 content/Tools/nmap.md create mode 100644 content/Tools/nps.md create mode 100644 content/Tools/sliver.md create mode 100644 content/Tools/venom.md create mode 100644 content/Tools/xfreerdp.md create mode 100644 content/Vulnerabilities/_index.md delete mode 100644 content/m3/d1.md delete mode 100644 content/m3/d2.md delete mode 100644 "content/\347\254\2541/d1.md" create mode 100644 layouts/partials/powered.html diff --git a/content/About.md b/content/About.md new file mode 100644 index 0000000..736fb52 --- /dev/null +++ b/content/About.md @@ -0,0 +1,11 @@ +--- +title: "关于" +draft: false +--- + +仅限白帽子学习使用 +联系方式 i@domain.com + +## 特别感谢 + + \ No newline at end of file diff --git a/content/Bases/_index.md b/content/Bases/_index.md new file mode 100644 index 0000000..93facba --- /dev/null +++ b/content/Bases/_index.md @@ -0,0 +1,8 @@ +--- +title: "基础" +draft: false +weight: 2 +--- + + +aaa \ No newline at end of file diff --git a/content/Bases/http/_index.md b/content/Bases/http/_index.md new file mode 100644 index 0000000..7124c4b --- /dev/null +++ b/content/Bases/http/_index.md @@ -0,0 +1,8 @@ +--- +title: "http协议" +draft: false +weight: 2 +--- + + +aaa \ No newline at end of file diff --git a/content/Practices/_index.md b/content/Practices/_index.md new file mode 100644 index 0000000..d30d40c --- /dev/null +++ b/content/Practices/_index.md @@ -0,0 +1,6 @@ +--- +title: "实践" +draft: false +weight: 5 +--- + diff --git a/content/m2/d1.md b/content/Practices/d1.md similarity index 100% rename from content/m2/d1.md rename to content/Practices/d1.md diff --git a/content/m2/d2.md b/content/Practices/d2.md similarity index 100% rename from content/m2/d2.md rename to content/Practices/d2.md diff --git a/content/m3/d3.md b/content/Practices/d3.md similarity index 100% rename from content/m3/d3.md rename to content/Practices/d3.md diff --git a/content/Theories/Information Gathering/Active Information Gathering/DNS Enumeration.md b/content/Theories/Information Gathering/Active Information Gathering/DNS Enumeration.md new file mode 100644 index 0000000..ad5eeea --- /dev/null +++ b/content/Theories/Information Gathering/Active Information Gathering/DNS Enumeration.md @@ -0,0 +1,7 @@ +--- +title: "DNS Enumeration" +draft: false +weight: 1 +--- + +aaaa \ No newline at end of file diff --git a/content/Theories/Information Gathering/Active Information Gathering/TCP UDP Port Scanning.md b/content/Theories/Information Gathering/Active Information Gathering/TCP UDP Port Scanning.md new file mode 100644 index 0000000..4db3430 --- /dev/null +++ b/content/Theories/Information Gathering/Active Information Gathering/TCP UDP Port Scanning.md @@ -0,0 +1,7 @@ +--- +title: "TCP/UDP Port Scanning Theory" +draft: false +weight: 2 +--- + +aaaa \ No newline at end of file diff --git a/content/Theories/Information Gathering/Active Information Gathering/_index.md b/content/Theories/Information Gathering/Active Information Gathering/_index.md new file mode 100644 index 0000000..d0c9d30 --- /dev/null +++ b/content/Theories/Information Gathering/Active Information Gathering/_index.md @@ -0,0 +1,7 @@ +--- +title: "主动信息收集" +draft: false +weight: 3 +--- + +aaaa \ No newline at end of file diff --git "a/content/\347\254\2541/_index.md" b/content/Theories/Information Gathering/Lifecycle.md similarity index 57% rename from "content/\347\254\2541/_index.md" rename to content/Theories/Information Gathering/Lifecycle.md index f79244e..2426e38 100644 --- "a/content/\347\254\2541/_index.md" +++ b/content/Theories/Information Gathering/Lifecycle.md @@ -1,8 +1,7 @@ --- -title: "1.1 穷举" +title: "生命周期" draft: false weight: 1 --- - -aaa \ No newline at end of file +1 \ No newline at end of file diff --git a/content/Theories/Information Gathering/Passive Information Gathering/Google Hacking.md b/content/Theories/Information Gathering/Passive Information Gathering/Google Hacking.md new file mode 100644 index 0000000..af02d58 --- /dev/null +++ b/content/Theories/Information Gathering/Passive Information Gathering/Google Hacking.md @@ -0,0 +1,7 @@ +--- +title: "Google Hacking" +draft: false +weight: 2 +--- + +aaaa \ No newline at end of file diff --git a/content/Theories/Information Gathering/Passive Information Gathering/Netcraft.md b/content/Theories/Information Gathering/Passive Information Gathering/Netcraft.md new file mode 100644 index 0000000..946041b --- /dev/null +++ b/content/Theories/Information Gathering/Passive Information Gathering/Netcraft.md @@ -0,0 +1,7 @@ +--- +title: "Netcraft" +draft: false +weight: 3 +--- + +aaaa \ No newline at end of file diff --git a/content/Theories/Information Gathering/Passive Information Gathering/Open-Source Code.md b/content/Theories/Information Gathering/Passive Information Gathering/Open-Source Code.md new file mode 100644 index 0000000..ebf7e7c --- /dev/null +++ b/content/Theories/Information Gathering/Passive Information Gathering/Open-Source Code.md @@ -0,0 +1,7 @@ +--- +title: "Open-Source Code" +draft: false +weight: 4 +--- + +aaaa \ No newline at end of file diff --git a/content/Theories/Information Gathering/Passive Information Gathering/Whois Enumeration.md b/content/Theories/Information Gathering/Passive Information Gathering/Whois Enumeration.md new file mode 100644 index 0000000..3a6403d --- /dev/null +++ b/content/Theories/Information Gathering/Passive Information Gathering/Whois Enumeration.md @@ -0,0 +1,7 @@ +--- +title: "Whois Enumeration" +draft: false +weight: 1 +--- + +aaaa \ No newline at end of file diff --git a/content/Theories/Information Gathering/Passive Information Gathering/_index.md b/content/Theories/Information Gathering/Passive Information Gathering/_index.md new file mode 100644 index 0000000..13cecdd --- /dev/null +++ b/content/Theories/Information Gathering/Passive Information Gathering/_index.md @@ -0,0 +1,7 @@ +--- +title: "被动信息收集" +draft: false +weight: 2 +--- + +aaaa \ No newline at end of file diff --git a/content/Theories/Information Gathering/_index.md b/content/Theories/Information Gathering/_index.md new file mode 100644 index 0000000..282328e --- /dev/null +++ b/content/Theories/Information Gathering/_index.md @@ -0,0 +1,7 @@ +--- +title: "信息收集" +draft: false +weight: 3 +--- + +aaaa \ No newline at end of file diff --git a/content/Theories/Interpretations/_index.md b/content/Theories/Interpretations/_index.md new file mode 100644 index 0000000..6a58674 --- /dev/null +++ b/content/Theories/Interpretations/_index.md @@ -0,0 +1,5 @@ +--- +title: "解读" +draft: true +weight: 2 +--- \ No newline at end of file diff --git a/content/Theories/Standard/_index.md b/content/Theories/Standard/_index.md new file mode 100644 index 0000000..dc660f1 --- /dev/null +++ b/content/Theories/Standard/_index.md @@ -0,0 +1,18 @@ +--- +title: "参考规范" +draft: false +weight: 1 +--- + + + +# 国际 + + +# 国内 + + + + + +## 行业 \ No newline at end of file diff --git a/content/Theories/Standard/china.md b/content/Theories/Standard/china.md new file mode 100644 index 0000000..693edd1 --- /dev/null +++ b/content/Theories/Standard/china.md @@ -0,0 +1,24 @@ +--- +title: "+86 中国国内标准参考规范" +draft: false +weight: 3 +--- + +# 法律 + +《中华人民共和国网络安全法》 + +# 中国国内标准 + + +《金融网络安全 Web应用服务安全测试通用规范》(JR/T 0213-2021) + +《信息安全技术 信息安全风险评估规范》(GB/T 20984-2007) + +《信息安全技术 术语》(GB/T 25069-2010) + +《信息安全技术 信息安全风险评估实施指南》(GB/T 31509-2015) + +《金融行业网络安全等级保护测评指南》(JR/T 0072-2020) + +《网上银行系统信息安全通用规范》(JR/T 0068-2020) diff --git a/content/Theories/Standard/global.md b/content/Theories/Standard/global.md new file mode 100644 index 0000000..7d47cf6 --- /dev/null +++ b/content/Theories/Standard/global.md @@ -0,0 +1,11 @@ +--- +title: "国际参考规范" +draft: false +weight: 2 +--- + + + +# 国际 + + diff --git a/content/Theories/_index.md b/content/Theories/_index.md new file mode 100644 index 0000000..ced648b --- /dev/null +++ b/content/Theories/_index.md @@ -0,0 +1,11 @@ +--- +title: "理论" +draft: false +weight: 1 +--- + +## 什么是渗透测试 + +## 从了解到发现不安全 + +## 学习好理论 \ No newline at end of file diff --git a/content/Tools/Havoc.md b/content/Tools/Havoc.md new file mode 100644 index 0000000..0651c38 --- /dev/null +++ b/content/Tools/Havoc.md @@ -0,0 +1,6 @@ +--- +title: "Havoc" +draft: false +--- + +## 什么是渗透测试 \ No newline at end of file diff --git a/content/Tools/_index.md b/content/Tools/_index.md new file mode 100644 index 0000000..b364c52 --- /dev/null +++ b/content/Tools/_index.md @@ -0,0 +1,11 @@ +--- +title: "工具" +draft: false +weight: 4 +--- + +## 什么是渗透测试 + +## 从了解到发现不安全 + +## 学习好理论 \ No newline at end of file diff --git a/content/Tools/evil-winrm.md b/content/Tools/evil-winrm.md new file mode 100644 index 0000000..9cec38f --- /dev/null +++ b/content/Tools/evil-winrm.md @@ -0,0 +1,6 @@ +--- +title: "evil-winrm" +draft: false +--- + +## 什么是渗透测试 \ No newline at end of file diff --git a/content/Tools/freerdp.md b/content/Tools/freerdp.md new file mode 100644 index 0000000..ddeb33b --- /dev/null +++ b/content/Tools/freerdp.md @@ -0,0 +1,6 @@ +--- +title: "freerdp" +draft: false +--- + +## 什么是渗透测试 \ No newline at end of file diff --git a/content/Tools/frp.md b/content/Tools/frp.md new file mode 100644 index 0000000..534fdfa --- /dev/null +++ b/content/Tools/frp.md @@ -0,0 +1,6 @@ +--- +title: "frp" +draft: false +--- + +## 什么是渗透测试 \ No newline at end of file diff --git a/content/Tools/fscan.md b/content/Tools/fscan.md new file mode 100644 index 0000000..25e048a --- /dev/null +++ b/content/Tools/fscan.md @@ -0,0 +1,6 @@ +--- +title: "fscan" +draft: false +--- + +## 什么是渗透测试 \ No newline at end of file diff --git a/content/Tools/gobuster.md b/content/Tools/gobuster.md new file mode 100644 index 0000000..66109aa --- /dev/null +++ b/content/Tools/gobuster.md @@ -0,0 +1,6 @@ +--- +title: "gobuster" +draft: false +--- + +## 什么是渗透测试 \ No newline at end of file diff --git a/content/Tools/goproxy.md b/content/Tools/goproxy.md new file mode 100644 index 0000000..6b598c6 --- /dev/null +++ b/content/Tools/goproxy.md @@ -0,0 +1,6 @@ +--- +title: "goproxy" +draft: false +--- + +## 什么是渗透测试 \ No newline at end of file diff --git a/content/Tools/impacket/_index.md b/content/Tools/impacket/_index.md new file mode 100644 index 0000000..163f673 --- /dev/null +++ b/content/Tools/impacket/_index.md @@ -0,0 +1,7 @@ +--- +title: "impacket" +draft: false +weight: 4 +--- + + \ No newline at end of file diff --git a/content/Tools/impacket/wmiexec.py.md b/content/Tools/impacket/wmiexec.py.md new file mode 100644 index 0000000..830f8d5 --- /dev/null +++ b/content/Tools/impacket/wmiexec.py.md @@ -0,0 +1,6 @@ +--- +title: "wmiexec.py" +draft: false +--- + +wmiexec.py \ No newline at end of file diff --git a/content/Tools/nmap.md b/content/Tools/nmap.md new file mode 100644 index 0000000..d74c9c9 --- /dev/null +++ b/content/Tools/nmap.md @@ -0,0 +1,10 @@ +--- +title: "nmap" +draft: false +--- + +## 什么是渗透测试 + +## 从了解到发现不安全 + +## 学习好理论 \ No newline at end of file diff --git a/content/Tools/nps.md b/content/Tools/nps.md new file mode 100644 index 0000000..f52d4a6 --- /dev/null +++ b/content/Tools/nps.md @@ -0,0 +1,6 @@ +--- +title: "nps" +draft: false +--- + +## 什么是渗透测试 \ No newline at end of file diff --git a/content/Tools/sliver.md b/content/Tools/sliver.md new file mode 100644 index 0000000..87a68e8 --- /dev/null +++ b/content/Tools/sliver.md @@ -0,0 +1,6 @@ +--- +title: "sliver" +draft: false +--- + +## 什么是渗透测试 \ No newline at end of file diff --git a/content/Tools/venom.md b/content/Tools/venom.md new file mode 100644 index 0000000..7eeb855 --- /dev/null +++ b/content/Tools/venom.md @@ -0,0 +1,6 @@ +--- +title: "Venom" +draft: false +--- + +## 什么是渗透测试 \ No newline at end of file diff --git a/content/Tools/xfreerdp.md b/content/Tools/xfreerdp.md new file mode 100644 index 0000000..b3e5fca --- /dev/null +++ b/content/Tools/xfreerdp.md @@ -0,0 +1,6 @@ +--- +title: "xfreerdp" +draft: false +--- + +## 什么是渗透测试 \ No newline at end of file diff --git a/content/Vulnerabilities/_index.md b/content/Vulnerabilities/_index.md new file mode 100644 index 0000000..1cb4c28 --- /dev/null +++ b/content/Vulnerabilities/_index.md @@ -0,0 +1,11 @@ +--- +title: "漏洞" +draft: false +weight: 4 +--- + +## 什么是渗透测试 + +## 从了解到发现不安全 + +## 学习好理论 \ No newline at end of file diff --git a/content/_index.md b/content/_index.md index 9d60796..2b10bf2 100644 --- a/content/_index.md +++ b/content/_index.md @@ -1 +1 @@ -11 \ No newline at end of file +
欢迎访问此网站,相关内容仅允许用来学习使用。
\ No newline at end of file diff --git a/content/m3/d1.md b/content/m3/d1.md deleted file mode 100644 index 562890b..0000000 --- a/content/m3/d1.md +++ /dev/null @@ -1 +0,0 @@ -d1 \ No newline at end of file diff --git a/content/m3/d2.md b/content/m3/d2.md deleted file mode 100644 index 624c89d..0000000 --- a/content/m3/d2.md +++ /dev/null @@ -1 +0,0 @@ -d2 \ No newline at end of file diff --git "a/content/\347\254\2541/d1.md" "b/content/\347\254\2541/d1.md" deleted file mode 100644 index 6286a65..0000000 --- "a/content/\347\254\2541/d1.md" +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "1.1 穷举" -draft: false -weight: 11 ---- - - - -# 路径穷举 - -dirb - -dirsearch - - - -``` -$ gobuster dir --url http://192.168.88.140 -w /usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt -x .php -``` - - - -# 密码穷举 - -hydra - -burpsuite \ No newline at end of file diff --git a/hugo.toml b/hugo.toml index 092eeae..4f01326 100644 --- a/hugo.toml +++ b/hugo.toml @@ -58,8 +58,7 @@ enableMissingTranslationPlaceholders = false "blog", "entry", "post", - "posts", - "tools", + "posts" ] # Algolia site search section @@ -78,7 +77,12 @@ enableMissingTranslationPlaceholders = false weight = 1 identifier = 'home' pre = "" - + [[menu.main]] + name = "关于" + url = "/about" + weight = 2 + identifier = 'about' + pre = "" # Markup configure section # See https://gohugo.io/getting-started/configuration-markup/ diff --git a/layouts/partials/powered.html b/layouts/partials/powered.html new file mode 100644 index 0000000..e69de29