Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
it-sec-toolshell — Marp slide deck detailing CVE-2025-53770, a SharePoint zero-day vulnerability, with modular slides, custom themes, and build scripts for HTML, PDF, and PNG output. | Kitploit
Tools/GitHubGitHub/doerrdan/it-sec-toolshell
Vulnerability AnalysisWeb SecurityPapers & ResearchLearning & EducationCurated Resources
GitHubdoerrdan/it-sec-toolshell

it-sec-toolshell

Marp slide deck detailing CVE-2025-53770, a SharePoint zero-day vulnerability, with modular slides, custom themes, and build scripts for HTML, PDF, and PNG output.

View Repository
23 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

ToolShell — SharePoint Zero-Day Presentation

A Marp slide deck about CVE-2025-53770, with each slide kept in its own file under slides/.

Build

root@kitploit:~
./build.sh           # assemble slides into presentation.md
./build.sh html      # + render presentation.html
./build.sh pdf       # + render presentation.pdf
./build.sh all       # + HTML, PDF, and PNG preview of every slide

The script uses npx to fetch @marp-team/marp-cli on demand — no global install required.

Project layout

root@kitploit:~
presentation/
├── slides/                  # one Markdown file per slide
├── themes/toolshell.css     # custom Marp theme (SharePoint teal palette)
├── assets/                  # images, e.g. sharepoint.svg
├── presentation.template.md # references each slide via @@INCLUDE:...@@
├── build.sh                 # assembles + renders
└── presentation.md          # generated, do not edit by hand

Add a new slide

  1. Create the slide file, e.g. slides/16-new-slide.md:

    root@kitploit:~
    # My Title
    
    <h2><span class="pill-tag">Section</span>Sub headline</h2>
    
    <div class="grid-2">
      <div class="tile"><h3>Card A</h3><p>...</p></div>
      <div class="tile pink"><h3>Card B</h3><p>...</p></div>
    </div>
    
  2. Reference it in presentation.template.md at the right position:

    root@kitploit:~
    ---
    
    @@INCLUDE:slides/16-new-slide.md@@
    
  3. Rebuild:

    root@kitploit:~
    ./build.sh all
    

Available CSS classes

Look at existing slides for examples — the theme provides tile, grid-2/3, term, score-card, flow, compare, measure, lesson, pill-tag, chip, plus body classes title, hero, end for full-bleed layouts.

Download Tool