不幸的是,我不记得 FTP 服务器的密码,但它保存在 FileZilla 站点管理器(Ubuntu)中。
如何查看保存的密码?
导出您的站点管理器信息,您会以纯文本形式找到它们:
File > Export > Export Site Manager entries
它以 XML 格式导出所有内容,如下所示:
<Server>
<Host>ftp.example.com</Host>
<Port>21</Port>
<Protocol>0</Protocol>
<Type>0</Type>
<User>root</User>
<Pass>mypass</Pass>
[etc]
</Server>
所有密码都以纯文本形式存储在此文件中:
/home/username/.filezilla/recentservers.xml
而对于较新版本的 filezilla 和 ubuntu,/home/username/.config/filezilla/recentservers.xml
如果密码是 base64 编码的,可以使用https://www.base64decode.org/获取原始密码。
Ubuntu Linux FileZilla SiteManager 文件:
/home/用户名/.filezilla/sitemanager.xml
如果您没有将密码存储在站点管理器中,而仅使用“快速连接”,您仍然可以从历史记录中检索它们:它们存储在以下目录的 filezilla.xml 中:
Windows XP/2K:“C:\Documents and Settings\用户名\Application Data\FileZilla”</p>
Windows Vista:“C:\Users\用户名\AppData\Roaming\FileZilla\”</p>
Linux:“/home/username/.filezilla/”</p>