Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
it-sec-toolshell — Marp幻灯片演示文稿,详细介绍了CVE-2025-53770(一个SharePoint零日漏洞),包含模块化幻灯片、自定义主题以及用于生成HTML、PDF和PNG输出的构建脚本。 | Kitploit
工具/GitHubGitHub/doerrdan/it-sec-toolshell
漏洞分析Web安全论文与研究学习与教育精选资源
GitHubdoerrdan/it-sec-toolshell

it-sec-toolshell

Marp幻灯片演示文稿,详细介绍了CVE-2025-53770(一个SharePoint零日漏洞),包含模块化幻灯片、自定义主题以及用于生成HTML、PDF和PNG输出的构建脚本。

查看仓库
23个月前尚未审核

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

ToolShell — SharePoint 零日演示

一个关于 CVE-2025-53770 的 Marp 幻灯片集,每张幻灯片都保存在 slides/ 下的单独文件中。

构建

root@kitploit:~
./build.sh           # 组装幻灯片为 presentation.md
./build.sh html      # + 渲染 presentation.html
./build.sh pdf       # + 渲染 presentation.pdf
./build.sh all       # + HTML、PDF 以及每张幻灯片的 PNG 预览

脚本会按需使用 npx 获取 @marp-team/marp-cli — 无需全局安装。

项目布局

root@kitploit:~
presentation/
├── slides/                  # 每张幻灯片对应一个 Markdown 文件
├── themes/toolshell.css     # 自定义 Marp 主题(SharePoint 青绿色调色板)
├── assets/                  # 图像,例如 sharepoint.svg
├── presentation.template.md # 通过 @@INCLUDE:...@@ 引用每张幻灯片
├── build.sh                 # 组装 + 渲染
└── presentation.md          # 生成的,请勿手动编辑

添加新幻灯片

  1. 创建幻灯片文件,例如 slides/16-new-slide.md:

    root@kitploit:~
    # 我的标题
    
    <h2><span class="pill-tag">章节</span>副标题</h2>
    
    <div class="grid-2">
      <div class="tile"><h3>卡片 A</h3><p>...</p></div>
      <div class="tile pink"><h3>卡片 B</h3><p>...</p></div>
    </div>
    
  2. 在 presentation.template.md 中将其放在正确位置:

    root@kitploit:~
    ---
    
    @@INCLUDE:slides/16-new-slide.md@@
    
  3. 重新构建:

    root@kitploit:~
    ./build.sh all
    

可用的 CSS 类

查看现有幻灯片获取示例 — 该主题提供了 tile、grid-2/3、term、score-card、flow、compare、measure、lesson、pill-tag、chip,以及用于全出血布局的 body 类 title、hero、end。

下载工具