├── .gitattributes ├── 1. 基础内容.md ├── 10. 日志操作.md ├── 11. 实例使用场景.md ├── 12. 渗透工具集.md ├── 2. 脚本编写与执行.md ├── 3. Scoket网络编程.md ├── 4. 端口扫描与服务爆破.md ├── 5. 多线程编程.md ├── 6. WMI&dot-net对象操作.md ├── 7. Win32API.md ├── 8. 注入操作.md ├── 9. 混淆.md ├── Common.md ├── README.md ├── SUMMARY.md ├── _book ├── .gitattributes ├── 1. 前言.md ├── 10. 混淆.html ├── 11. 日志操作.html ├── 12. 实例使用场景.html ├── 13. Framework.html ├── 13. framework.md ├── 2. 基础.html ├── 3. 脚本编写与执行.html ├── 4. Scoket网络编程.html ├── 5. 端口扫描与服务爆破.html ├── 6. 多线程.html ├── 7. WMI对象操作.html ├── 8. Win32API.html ├── 9. Dll注入&shellcode注入&exe注入.html ├── gitbook │ ├── fonts │ │ └── fontawesome │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ ├── gitbook-plugin-fontsettings │ │ ├── fontsettings.js │ │ └── website.css │ ├── gitbook-plugin-highlight │ │ ├── ebook.css │ │ └── website.css │ ├── gitbook-plugin-livereload │ │ └── plugin.js │ ├── gitbook-plugin-lunr │ │ ├── lunr.min.js │ │ └── search-lunr.js │ ├── gitbook-plugin-search │ │ ├── lunr.min.js │ │ ├── search-engine.js │ │ ├── search.css │ │ └── search.js │ ├── gitbook-plugin-sharing │ │ └── buttons.js │ ├── gitbook.js │ ├── images │ │ ├── apple-touch-icon-precomposed-152.png │ │ └── favicon.ico │ ├── style.css │ └── theme.js ├── index.html └── search_index.json └── book.json /.gitattributes: -------------------------------------------------------------------------------- 1 | *.md linguist-language=PowerShell 2 | -------------------------------------------------------------------------------- /1. 基础内容.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/1. 基础内容.md -------------------------------------------------------------------------------- /10. 日志操作.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/10. 日志操作.md -------------------------------------------------------------------------------- /11. 实例使用场景.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/11. 实例使用场景.md -------------------------------------------------------------------------------- /12. 渗透工具集.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/12. 渗透工具集.md -------------------------------------------------------------------------------- /2. 脚本编写与执行.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/2. 脚本编写与执行.md -------------------------------------------------------------------------------- /3. Scoket网络编程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/3. Scoket网络编程.md -------------------------------------------------------------------------------- /4. 端口扫描与服务爆破.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/4. 端口扫描与服务爆破.md -------------------------------------------------------------------------------- /5. 多线程编程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/5. 多线程编程.md -------------------------------------------------------------------------------- /6. WMI&dot-net对象操作.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/6. WMI&dot-net对象操作.md -------------------------------------------------------------------------------- /7. Win32API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/7. Win32API.md -------------------------------------------------------------------------------- /8. 注入操作.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/8. 注入操作.md -------------------------------------------------------------------------------- /9. 混淆.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/9. 混淆.md -------------------------------------------------------------------------------- /Common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/Common.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /_book/.gitattributes: -------------------------------------------------------------------------------- 1 | *.md linguist-language=PowerShell 2 | -------------------------------------------------------------------------------- /_book/1. 前言.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/_book/1. 前言.md -------------------------------------------------------------------------------- /_book/10. 混淆.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/_book/10. 混淆.html -------------------------------------------------------------------------------- /_book/11. 日志操作.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/_book/11. 日志操作.html -------------------------------------------------------------------------------- /_book/12. 实例使用场景.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/_book/12. 实例使用场景.html -------------------------------------------------------------------------------- /_book/13. Framework.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/_book/13. Framework.html -------------------------------------------------------------------------------- /_book/13. framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/_book/13. framework.md -------------------------------------------------------------------------------- /_book/2. 基础.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/_book/2. 基础.html -------------------------------------------------------------------------------- /_book/3. 脚本编写与执行.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/_book/3. 脚本编写与执行.html -------------------------------------------------------------------------------- /_book/4. Scoket网络编程.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/_book/4. Scoket网络编程.html -------------------------------------------------------------------------------- /_book/5. 端口扫描与服务爆破.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/_book/5. 端口扫描与服务爆破.html -------------------------------------------------------------------------------- /_book/6. 多线程.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/_book/6. 多线程.html -------------------------------------------------------------------------------- /_book/7. WMI对象操作.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/_book/7. WMI对象操作.html -------------------------------------------------------------------------------- /_book/8. Win32API.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/_book/8. Win32API.html -------------------------------------------------------------------------------- /_book/9. Dll注入&shellcode注入&exe注入.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/_book/9. Dll注入&shellcode注入&exe注入.html -------------------------------------------------------------------------------- /_book/gitbook/fonts/fontawesome/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/_book/gitbook/fonts/fontawesome/FontAwesome.otf -------------------------------------------------------------------------------- /_book/gitbook/fonts/fontawesome/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/_book/gitbook/fonts/fontawesome/fontawesome-webfont.eot -------------------------------------------------------------------------------- /_book/gitbook/fonts/fontawesome/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/_book/gitbook/fonts/fontawesome/fontawesome-webfont.svg -------------------------------------------------------------------------------- /_book/gitbook/fonts/fontawesome/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/_book/gitbook/fonts/fontawesome/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /_book/gitbook/fonts/fontawesome/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/_book/gitbook/fonts/fontawesome/fontawesome-webfont.woff -------------------------------------------------------------------------------- /_book/gitbook/fonts/fontawesome/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/_book/gitbook/fonts/fontawesome/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /_book/gitbook/gitbook-plugin-fontsettings/fontsettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/_book/gitbook/gitbook-plugin-fontsettings/fontsettings.js -------------------------------------------------------------------------------- /_book/gitbook/gitbook-plugin-fontsettings/website.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/_book/gitbook/gitbook-plugin-fontsettings/website.css -------------------------------------------------------------------------------- /_book/gitbook/gitbook-plugin-highlight/ebook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/_book/gitbook/gitbook-plugin-highlight/ebook.css -------------------------------------------------------------------------------- /_book/gitbook/gitbook-plugin-highlight/website.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/_book/gitbook/gitbook-plugin-highlight/website.css -------------------------------------------------------------------------------- /_book/gitbook/gitbook-plugin-livereload/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/_book/gitbook/gitbook-plugin-livereload/plugin.js -------------------------------------------------------------------------------- /_book/gitbook/gitbook-plugin-lunr/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/_book/gitbook/gitbook-plugin-lunr/lunr.min.js -------------------------------------------------------------------------------- /_book/gitbook/gitbook-plugin-lunr/search-lunr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/_book/gitbook/gitbook-plugin-lunr/search-lunr.js -------------------------------------------------------------------------------- /_book/gitbook/gitbook-plugin-search/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/_book/gitbook/gitbook-plugin-search/lunr.min.js -------------------------------------------------------------------------------- /_book/gitbook/gitbook-plugin-search/search-engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/_book/gitbook/gitbook-plugin-search/search-engine.js -------------------------------------------------------------------------------- /_book/gitbook/gitbook-plugin-search/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/_book/gitbook/gitbook-plugin-search/search.css -------------------------------------------------------------------------------- /_book/gitbook/gitbook-plugin-search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/_book/gitbook/gitbook-plugin-search/search.js -------------------------------------------------------------------------------- /_book/gitbook/gitbook-plugin-sharing/buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/_book/gitbook/gitbook-plugin-sharing/buttons.js -------------------------------------------------------------------------------- /_book/gitbook/gitbook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/_book/gitbook/gitbook.js -------------------------------------------------------------------------------- /_book/gitbook/images/apple-touch-icon-precomposed-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/_book/gitbook/images/apple-touch-icon-precomposed-152.png -------------------------------------------------------------------------------- /_book/gitbook/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/_book/gitbook/images/favicon.ico -------------------------------------------------------------------------------- /_book/gitbook/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/_book/gitbook/style.css -------------------------------------------------------------------------------- /_book/gitbook/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/_book/gitbook/theme.js -------------------------------------------------------------------------------- /_book/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/_book/index.html -------------------------------------------------------------------------------- /_book/search_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/_book/search_index.json -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootclay/Powershell-Attack-Guide/HEAD/book.json --------------------------------------------------------------------------------