25

Unfortunately I can not remember the password of FTP server, but it is saved in FileZilla Site Manager (Ubuntu).

How can I view the saved password?

Anis Abboud
  • 1,328
  • 2
  • 16
  • 23
aimodify
  • 429
  • 1
  • 6
  • 11
  • 6
    very offtopic. --> superuser.com – Matten Apr 13 '12 at 07:57
  • `find . -iname "filezilla"` gives `/home/[username]/.config/filezilla` in my case. Then take the `sitemanager.xml` and look for the `Pass` element. It might be base64 encoded; [base64 decoders](https://www.base64decode.org/) are available en masse. – Martin Thoma May 17 '16 at 14:11
  • all incorrect answers; if you use master pass all that steps not work. – user1005462 Mar 08 '23 at 15:45

4 Answers4

39

Export your Site Manager information and you'll find them in plain text:

File > Export > Export Site Manager entries

It exports everything in XML like this:

<Server>
 <Host>ftp.example.com</Host>
 <Port>21</Port>
 <Protocol>0</Protocol>
 <Type>0</Type>
 <User>root</User>
 <Pass>mypass</Pass>
 [etc]
</Server>
Dovydas Navickas
  • 3,533
  • 1
  • 32
  • 48
  • This file had no entries for me, but werner's answer below worked. – Tor Klingberg Sep 17 '14 at 09:05
  • But in my case password is saved under base64 encoding. Respective "pass" entry is as like as below :- some text What should I do now ? – Vivek Bansal Mar 31 '15 at 20:40
  • 1
    You can decode it using a tool like this: https://ostermiller.org/calc/encode.html but be aware that it's safer to write your own script for knowing 100% that nobody stores the decoded result. – Dovydas Navickas Apr 01 '15 at 06:57
10

All passwords are stored in plain text in this file:

/home/username/.filezilla/recentservers.xml

And for newer versions of filezilla and ubuntu, /home/username/.config/filezilla/recentservers.xml If the passwords are base64 encoded, https://www.base64decode.org/ can be used to get the original password.

Allan Dereal
  • 113
  • 2
  • 5
Saad Bouteraa
  • 119
  • 1
  • 3
6

Ubuntu Linux FileZilla SiteManager file:

/home/username/.filezilla/sitemanager.xml

maestro
  • 69
  • 1
  • 1
4

If you didn't store your passwords in the Site Manager, but only used 'Quick connect', you can still retrieve them from the history: they are stored in filezilla.xml in the following directory :

Windows XP/2K: “C:\Documents and Settings\username\Application Data\FileZilla”

Windows Vista: “C:\Users\username\AppData\Roaming\FileZilla\”

Linux: “/home/username/.filezilla/”

werner
  • 377
  • 2
  • 10