Custom Query (8172 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (7201 - 7300 of 8172)

Ticket Summary Owner Type Priority Component Resolution
#11767 Post update - cannot retrieve directories Bug report normal FileZilla Client invalid
Description

Since updating FileZilla yesterday,attempts to contact yield this sequence and error:

Status: Resolving address of ftp.dlfny.org Status: Connecting to 192.243.105.117:21... Status: Connection established, waiting for welcome message... Status: Logged in Status: Retrieving directory listing... Command: PWD Response: 257 "/" is your current location Command: TYPE I Response: 200 TYPE is now 8-bit binary Command: PASV Error: Connection timed out after 20 seconds of inactivity Error: Failed to retrieve directory listing

I tried two connections, though they are on the same Internet host.

I'm not sure whether this all the requested info. Please let me know if more info is needed.

#11769 "Watch locally edited files" feature does not update its link when the remote server is changed Bug report normal FileZilla Client rejected
Description

When the Watch locally edited files and prompt to upload modifications feature is turned on, it does not update its links when the remote server is changed. This may lead to overwriting a wrong remote file.

Consider the following scenario:

  1. Connect to server A.
  2. Download file X from server A to a local folder.
  3. Edit the file X (right-click it in the local folder and select Edit).
  4. Do some edits, save the file, close the editor and return to FileZilla.
  5. You are prompted to upload modified file back to remote server A (so far so good).
  6. Select ‘No’ to close the prompt.
  7. Connect to server B.
  8. Download file X from the server B to the same local folder as in step 2.
  9. Open the new file X in your editor.
  10. Do some edits, save the file, close the editor and return to FileZilla.
  11. Now, you are prompted to upload modified file X back to remote server A!

That is wrong because the file was downloaded from server B and should be uploaded there. If you do not read the prompt carefully, you can easily overwrite the file at the wrong remote server. FileZilla should update its internal link when the monitored file is downloaded from a different location.

#11772 Can't drag & drop files into the queue anymore Bug report normal FileZilla Client fixed
Description

Previously I was able to select some files or directories from the Remote Site window and drag/drop them into the Queued Files. That doesn't work anymore (nothing happens). To achieve that functionality now, I need to right-click the files and choose "Add Files to Queue".

#11781 invalid GnuTLS ciphers string for GnuTLS >= 3.6 Bug report normal FileZilla Client fixed
Description

Description:

As GnuTLS >= 3.6 drops OpenPGP certificates support, when Filezilla 3.37.4 is compiled with GnuTLS >= 3.6, connection with "FTP over TLS" will fail with "GnuTLS error -50 in gnutls_priority_set_direct: The request is invalid".

Connection error detail :

Status:	Resolving address of aaa.com
Status:	Connecting to 127.0.0.1:21...
Status:	Connection established, waiting for welcome message...
Status:	Initializing TLS...
Error:	GnuTLS error -50 in gnutls_priority_set_direct: The request is invalid.
Error:	Failed to initialize TLS.
Error:	Could not connect to server

Root cause:

After searching the code, it occured in file "/engine/tlssocket_impl.cpp"

char const ciphers[] = "SECURE256:+SECURE128:-ARCFOUR-128:-3DES-CBC:-MD5:+SIGN-ALL:-SIGN-RSA-MD5:+CTYPE-X509:-CTYPE-OPENPGP:-VERS-SSL3.0";

remove "-CTYPE-OPENPGP" will solve the problem.

char const ciphers[] = "SECURE256:+SECURE128:-ARCFOUR-128:-3DES-CBC:-MD5:+SIGN-ALL:-SIGN-RSA-MD5:+CTYPE-X509:-VERS-SSL3.0";

Test method:

Assue GnuTLS >= 3.6 is compiled in /opt/filezilla3, use gnutls-cli to test priority string:

[develop@test.com ~]$ PATH=/opt/filezilla3/bin:$PATH LD_LIBRARY_PATH=/opt/filezilla3/lib64:/opt/filezilla3/lib:$LD_LIBRARY_PATH /opt/filezilla3/bin/gnutls-cli  -l --priority="SECURE256:+SECURE128:-ARCFOUR-128:-3DES-CBC:-MD5:+SIGN-ALL:-SIGN-RSA-MD5:+CTYPE-X509:-CTYPE-OPENPGP:-VERS-SSL3.0"

The result contains error:

Cipher suites for SECURE256:+SECURE128:-ARCFOUR-128:-3DES-CBC:-MD5:+SIGN-ALL:-SIGN-RSA-MD5:+CTYPE-X509:-CTYPE-OPENPGP:-VERS-SSL3.0
Syntax error at: -CTYPE-OPENPGP:-VERS-SSL3.0

remove "-CTYPE-OPENPGP":

[develop@test.com ~]$ PATH=/opt/filezilla3/bin:$PATH LD_LIBRARY_PATH=/opt/filezilla3/lib64:/opt/filezilla3/lib:$LD_LIBRARY_PATH /opt/filezilla3/bin/gnutls-cli  -l --priority="SECURE256:+SECURE128:-ARCFOUR-128:-3DES-CBC:-MD5:+SIGN-ALL:-SIGN-RSA-MD5:+CTYPE-X509:-VERS-SSL3.0"

OK:

Cipher suites for SECURE256:+SECURE128:-ARCFOUR-128:-3DES-CBC:-MD5:+SIGN-ALL:-SIGN-RSA-MD5:+CTYPE-X509:-VERS-SSL3.0
TLS_AES_256_GCM_SHA384                            	0x13, 0x02	TLS1.3
TLS_CHACHA20_POLY1305_SHA256                      	0x13, 0x03	TLS1.3
TLS_AES_128_GCM_SHA256                            	0x13, 0x01	TLS1.3
TLS_AES_128_CCM_SHA256                            	0x13, 0x04	TLS1.3
TLS_ECDHE_ECDSA_AES_256_GCM_SHA384                	0xc0, 0x2c	TLS1.2
TLS_ECDHE_ECDSA_CHACHA20_POLY1305                 	0xcc, 0xa9	TLS1.2
TLS_ECDHE_ECDSA_AES_256_CBC_SHA1                  	0xc0, 0x0a	TLS1.0
TLS_ECDHE_ECDSA_AES_256_CCM                       	0xc0, 0xad	TLS1.2
TLS_ECDHE_ECDSA_AES_128_GCM_SHA256                	0xc0, 0x2b	TLS1.2
TLS_ECDHE_ECDSA_AES_128_CBC_SHA1                  	0xc0, 0x09	TLS1.0
TLS_ECDHE_ECDSA_AES_128_CCM                       	0xc0, 0xac	TLS1.2
TLS_ECDHE_RSA_AES_256_GCM_SHA384                  	0xc0, 0x30	TLS1.2
TLS_ECDHE_RSA_CHACHA20_POLY1305                   	0xcc, 0xa8	TLS1.2
TLS_ECDHE_RSA_AES_256_CBC_SHA1                    	0xc0, 0x14	TLS1.0
TLS_ECDHE_RSA_AES_128_GCM_SHA256                  	0xc0, 0x2f	TLS1.2
TLS_ECDHE_RSA_AES_128_CBC_SHA1                    	0xc0, 0x13	TLS1.0
TLS_RSA_AES_256_GCM_SHA384                        	0x00, 0x9d	TLS1.2
TLS_RSA_AES_256_CBC_SHA1                          	0x00, 0x35	TLS1.0
TLS_RSA_AES_256_CCM                               	0xc0, 0x9d	TLS1.2
TLS_RSA_AES_128_GCM_SHA256                        	0x00, 0x9c	TLS1.2
TLS_RSA_AES_128_CBC_SHA1                          	0x00, 0x2f	TLS1.0
TLS_RSA_AES_128_CCM                               	0xc0, 0x9c	TLS1.2
TLS_DHE_RSA_AES_256_GCM_SHA384                    	0x00, 0x9f	TLS1.2
TLS_DHE_RSA_CHACHA20_POLY1305                     	0xcc, 0xaa	TLS1.2
TLS_DHE_RSA_AES_256_CBC_SHA1                      	0x00, 0x39	TLS1.0
TLS_DHE_RSA_AES_256_CCM                           	0xc0, 0x9f	TLS1.2
TLS_DHE_RSA_AES_128_GCM_SHA256                    	0x00, 0x9e	TLS1.2
TLS_DHE_RSA_AES_128_CBC_SHA1                      	0x00, 0x33	TLS1.0
TLS_DHE_RSA_AES_128_CCM                           	0xc0, 0x9e	TLS1.2

Protocols: VERS-TLS1.3, VERS-TLS1.2, VERS-TLS1.1, VERS-TLS1.0, VERS-DTLS1.2, VERS-DTLS1.0
Ciphers: AES-256-GCM, CHACHA20-POLY1305, AES-256-CBC, AES-256-CCM, AES-128-GCM, AES-128-CBC, AES-128-CCM
MACs: AEAD, SHA1
Key Exchange Algorithms: ECDHE-ECDSA, ECDHE-RSA, RSA, DHE-RSA
Groups: GROUP-SECP384R1, GROUP-SECP521R1, GROUP-FFDHE8192, GROUP-SECP256R1, GROUP-X25519, GROUP-FFDHE2048, GROUP-FFDHE3072, GROUP-FFDHE4096, GROUP-FFDHE6144
PK-signatures: SIGN-RSA-SHA384, SIGN-RSA-PSS-SHA384, SIGN-RSA-PSS-RSAE-SHA384, SIGN-ECDSA-SHA384, SIGN-ECDSA-SECP384R1-SHA384, SIGN-RSA-SHA512, SIGN-RSA-PSS-SHA512, SIGN-RSA-PSS-RSAE-SHA512, SIGN-ECDSA-SHA512, SIGN-ECDSA-SECP521R1-SHA512, SIGN-RSA-SHA256, SIGN-RSA-PSS-SHA256, SIGN-RSA-PSS-RSAE-SHA256, SIGN-ECDSA-SHA256, SIGN-ECDSA-SECP256R1-SHA256, SIGN-EdDSA-Ed25519, SIGN-RSA-SHA1, SIGN-ECDSA-SHA1

Link:

https://www.gnutls.org/manual/html_node/OpenPGP-certificates.html

#11787 FileZilla 3.38.0 (win64) crash when download (sftp) multiple files in queue Bug report normal FileZilla Client fixed
Description

I just run into a problem when downloading (via sftp) multiple files simultaneously. When starting to precess the queue, the filezilla client crash after a few seconds. When downloading a singe file, there is no problem. It's reproducible, I've tried this three times (rebooted the system between, etc.).

After downgrade to 3.37.4 (win64) all is fine again.

#11789 Insecure FTP Connection Bug report normal FileZilla Client rejected
Description

This error message began with version 3.37.4 and continues with new version 3.38.1. What does it mean and how do I fix it. Thanks...Peter

#11791 Filezilla ENETUNREACH error Bug report normal FileZilla Client rejected
Description

Filezilla ENETUNREACH error during FTP persists, even after adding Kaspersky exclusions to filezilla.exec. Please make previous Filezilla Client releases available even though they're not supported. Everything worked fine before I updated the Filezilla release.

#11792 Plain text file corruption Bug report normal FileZilla Client rejected
Description

Downloading a WP installation from a plesk server using no encryption (insecure) resulted in several of its core and plugin files downloaded with what I assume is some sort of binary/invalid data in them along plain text. Samples of the affected files include .CSS and .PHP files.

Attempting to copy the contents (copy-paste) results in truncated data up to the point of corruption.

There were no errors or warnings displayed on the log area during download.

Damage occurred during download and corrupted data was uploaded 'successfully' in that is seems to match the corrupted data.

A second attempt to download the same WP installation resulted in errors on the same files but damaged data occurred at different locations.

The sample files:

/blog/wp-content/plugins/amazon-s3-and-cloudfront/vendor/Aws3/aws-autoloader.php /blog/wp-includes/css/dashicons.css

#11794 First site tab not shown Feature request normal FileZilla Client wontfix
Description

Often I have many FTP sites open, so I got into the habit of looking at the tab title to see which site I am on.

However, when only one site is open there is no tab, no title, and no clue which site is open.

I know, I should be looking at the program's title bar, but I'm not used to that, looking at the tab seems 'easier' because it is closer to the files I'm working with.

So my feature request is: Can there be a single tab when only one site is open?

Take a look at the tabs in Firefox and Chrome. These programs also show a single tab when only one site is open. It seems the logical thing to do.

#11795 Filezilla tries to upload local files without being told to do so Bug report normal FileZilla Client invalid
Description

If I edit a local file selecting it from "Local site" pane, when I save the local file, Filezilla shows an alert box with the message "A file previously opened has been changed" and tries to upload it to the remote server.

I have tried to close Filezilla and open it again but the problem continues.

I have used phpDesigner 8.2 and Sublime Text 3.1.1 to edit the file and the result is the same.

#11796 Drag and Drop file to local app Bug report normal FileZilla Client worksforme
Description
  • Open a local app such as Microsoft Paint
  • Drag an image file (*.png or *.jpg) from FileZilla's local folder tree to this app
  • The file can not be opened. An error message is displayed "C:\Windows\system32\XXX was not found

Replace XXX by some asian characters (I am not able to type them)

Similar issue with a different file:

  • Open a local app such as Notepad++
  • Drag an text file (*.txt) from FileZilla's local folder tree to this app
  • The file can not be opened. Nothing happens.
#11801 openstack swift login claims the identity server did not return a token Bug report normal FileZilla Client fixed
Description

I purchased Filezilla Pro so I could test out connectivity to our Openstack Swift storage ( we host three clusters around the world for our end users). I immediately run into an issue. We use Openstack Swift with the keystone identity service, with v2.0 being our standard identity protocol.

When I entered my project (aka tenent) and username and then hit connect, I got the following output:

00:47:34 Status: Resolving address of lax-staging.identity.example.com 00:47:34 Status: Connecting to 173.0.160.18:443... 00:47:34 Status: Connection established, initializing TLS... 00:47:34 Status: Verifying certificate... 00:47:34 Status: TLS connection established, sending HTTP request 00:47:35 Status: Resolving address of lax-staging.identity.example.com 00:47:35 Status: Connecting to x.x.x.x:443... 00:47:35 Status: Connection established, initializing TLS... 00:47:35 Status: Verifying certificate... 00:47:35 Status: TLS connection established, sending HTTP request 00:47:35 Command: POST /v2.0/tokens HTTP/1.1 00:47:35 Command: Connection: close 00:47:35 Command: Content-Length: 110 00:47:35 Command: Content-Type: application/json 00:47:35 Command: Host: lax-staging.identity.example.com:443 00:47:35 Command: User-Agent: FileZilla/3.38.1 00:47:35 Response: HTTP/1.1 200 OK 00:47:35 Response: Server: nginx/1.10.3 (Ubuntu) 00:47:35 Response: Date: Tue, 20 Nov 2018 08:47:35 GMT 00:47:35 Response: Content-Type: application/json 00:47:35 Response: Content-Length: 1508 00:47:35 Response: Connection: close 00:47:35 Response: Vary: X-Auth-Token 00:47:35 Response: X-Distribution: Ubuntu 00:47:35 Response: x-openstack-request-id: req-f760215c-4537-4ea8-8b17-05aca427fc 00:47:35 Error: Identity service did not return an auth token

If I typo the API KEY ( aka password) , I get 401. With all correct details, I get 200 OK as above, but it claims not to have a token, but it is returned. I've used Wireshark with the SSL decryption to confirm this.

The following JSON response was sent to Filezilla (I have changed the values but none of the keys ):

{"access": {"token": {"issued_at": "2018-11-20T08:28:45.000000Z", "expires": "2018-11-20T09:28:45.000000Z", "id": “blahbljbkgjbaekjrbgklaebgkjebgkjerbgejrkbgjkebgejkbg", "tenant": {"description": null, "enabled": true, "id": "6a4d4ca0536240a1b982391c88f0ec68", "name": “example"}, "audit_ids": [“Yrad3a_yx1e3l34"]}, "serviceCatalog": [{"endpoints": [{"adminURL": "https://lax-proxy-staging.example.com", "region": "LAX", "internalURL": "https://lax-proxy-staging.example.com/v1/AUTH_6a4d4ca0536240a1b982391c88f0ec68", "id": "ccb6cd9aba0f452db42b3d4f4a2c049e", "publicURL": "https://lax-proxy-staging.example.com/v1/AUTH_b4e0f1ca0536240a1b982398"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "https://lax-staging.identity.example.com:35357/v2.0/", "region": "LAX", "internalURL": "https://lax-staging.identity.example.com/v2.0/", "id": "4213934b23294a96b2b8c553dcf00551", "publicURL": "https://lax-staging.identity.example.com/v2.0/"}], "endpoints_links": [], "type": "identity", "name": "keystone"}], "user": {"username": “david", "roles_links": [], "id": "4fae2db21d492881a68e4fe", "roles": [{"name": "_member_"}, {"name": "SwiftOperator"}], "name": “david"}, "metadata": {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878", "f3cdc7048c9945c56e108372"]}}}

'access' => 'tokens' => 'id' is the path to the valid token that would be accepted by swift for future requests ( as X-Auth-Token).

#11802 Version 3.38 does not allow uploads or downloads Bug report normal Other rejected
Description

I updated on the new version then connecting to 1und1 Ionos Server. I can see the liste of my files. Then trying to up or download gives me an error of connection. Status: Verbinde mit home1xxxx1.1and1-data.host... Antwort: fzSftp started, protocol_version=8 Befehl: open "pxxxxx@…" 22 Befehl: Pass: Fehler: Authentifizierung fehlgeschlagen. Fehler: Kritischer Fehler: Herstellen der Verbindung zum Server fehlgeschlagen

I imported the xml file and also did changes by hand: same result. deinstall the version and install an older version: No problems again update on new version with FileZilla_3.38.1_win64-setup.exe: again the problem arrives. Getting support from IONOS: No problem visible.

So it seems that there is a problem with filezilla.

Sorry, I'mnot sure of the difference between server and client. So I post it in Other

#11805 Cannot Connect to Server or Uopdate Filezilla Bug report normal FileZilla Client rejected
Description

Dear Filezilla,

  1. Since the last but one update version of Filezilla I have been unable to connect to my FTP Host at 1&1; prior to this update all was working fine. I have checked my connection parameters and all are correct. I have also downloaded another FTP Client (CoreFTP LE) this morning and applied the same parameters and that is working fine connecting to my FTP Host without problems. The connection failure is shown below:

Status: Connecting to home163432264.1and1-data.host... Response: fzSftp started, protocol_version=8 Command: open "u40428120@…" 22 Error: Connection timed out after 20 seconds of inactivity Error: Could not connect to server Status: Waiting to retry... Status: Connecting to home163432264.1and1-data.host... Response: fzSftp started, protocol_version=8 Command: open "u40428120@…" 22 Error: Connection timed out after 20 seconds of inactivity Error: Could not connect to server

  1. Also, Filezilla fails on Checking for Updates with the message "Information about the latest version of Filezilla could not be retrieved. Please try again later.". My Internet connection is working fine in both Chrome and Firefox and also in Opera; and works fine with CoreFTP LE.

I urgently need Filezilla to upload changes to my websites. Anything you can suggest would be gratefully received. I have tried uninstalling Filezilla and reinstalling from scratch with a complete reset of parameters to no avail.

Cheers and thanks, Steve J. McWilliam

#11809 timeout and WHM/cPanel Feature request normal FileZilla Client rejected
Description

The user successfully logs in. But then, nothing... the directory listing cannot be retrieved... the timeout is reached.

When this happens, in addition to the messages that are already being displayed in the status log textarea at the top of the application, the end-user should get a pop-up with information.

The pop-up should say something about transfer modes, and it should say that the firewall of the server may be blocking incoming connections.

The well-known CSF firewall that almost everyone uses with WHM/cPanel installs has a TCP_IN that does not include the 30000:50000 range.

FileZilla is such a well-known client that, again and again, our customers kept running into this issue. We've been telling them for years to use WinSCP and to avoid FileZilla. I've personally told many customers to avoid FileZilla because it doesn't work properly. Clearly, WinSCP can do something that FileZilla cannot.

You have to make sure that end-users understand what's going on, and that they can ask their server administrator to open that TCP_IN port range.

Even if - hypothetically - what I'm writing above is nonsense, and I don't understand FTP or passive/active modes at all, there's still a problem. I'm the system administrator of several servers with up to a thousands accounts. Only today I figured out I can "fix" FileZilla for customers by changing CSF settings. If only the first FileZilla end-user who contacted me could've told me.

#11811 Regular Expressions with Quick Search Bug report normal FileZilla Client fixed
Description

Since updating to the latest FileZilla, I am unable to use regular expressions with quick search. In the past, I would search for files using RegEx like so: 18121[7-9]|18122[0-3] This would filter all files with names except 181217 through 181223. Now when I try this, no files are shown. Thanks for any help.

#11812 Configuration files not shown Bug report normal FileZilla Client worksforme
Description

Configuration files are not shown anymore. I created a file .text. It is not shown. I tried to create again. I get the message, file already exists.

#11813 Wrong path at "File has changed" alert Bug report normal FileZilla Client wontfix
Description

When editing a file by double-clic (using Notepad++), after saving changes and switch to FileZilla, it displays a wrong path and uses that wrong path to upload the file.

e.g. Local path C:\wamp64\www\cloud\i\bibliotecas\181224\plantillas\tienda\.producto(product-detail).php

Correct remote path: /var/www/i/bibliotecas/181224/plantillas/tienda/.producto(product-detail).php

Incorrect remote path /var/www/i/bibliotecas/.producto(product-detail).php

#11817 TLS error on running update Filezilla on Ubuntu 18.10 Bug report normal FileZilla Client rejected
Description

Started update check on 2019-01-01 18:44:06 Own build type: custom Downloading /update.php?platform=x86_64-pc-linux-gnu&version=3.33.0&cpuid=sse,sse2,sse3,ssse3,sse4.1,sse4.2,avx,aes,pclmulqdq,rdrnd&initial=1 Resolving address of update.filezilla-project.org Connecting to [2a01:4f8:171:1ce9::4]:443... Connection established, initializing TLS... GnuTLS error -50 in gnutls_priority_set_direct: The request is invalid. Failed to initialize TLS. File transfer failed

#11818 Slash missing in file path in Rename File dialog Bug report normal FileZilla Client outdated
Description

How to reproduce:

  1. Create a local file, for example 'index.html'
  2. Create a remote file with the same name
  3. Drag the file from the local directory to the remote directory (to copy the file)
  4. FileZilla detects that there's already a file called 'index.html'. It will ask what you want. Choose 'Rename' and click OK.
  5. A Rename File dialog is opened. The remote path should be [RemoteDir]/[Filename], however, the slash is missing.

Happy new year :-)

#11820 Datei im FZ-Fenster "Lokal" wird nicht aktualisiert Bug report normal FileZilla Client worksforme
Description

Auf dem Rechner geänderte Dateien werden im FZ-Fenster "Lokal" nicht aktualisiert.

#11821 Feature Request: Keyboard shortcut to transfer directory Feature request normal FileZilla Client fixed
Description

I would really appreciate a keyboard shortcut added to the application.

I upload transfer whole directories a lot during my working day and it would be great to be able to hit a key to transfer the currently selected directory.

The [ENTER] key currently transfers if the selected item is a file but expands it if it's a directory. Maybe we could have [SHIFT] + [ENTER] to transfer a directory. This would make my life so much easier using this application.

Thanks.

#11823 Export function crashes program in version 3.39 on Windows 7 Bug report normal FileZilla Client worksforme
Description

Cannot export bookmarks, selecting File>Export causes program crash immediately after the export options dialog window opens.

Does not affect other Filezilla copies that may be open at the same time.

FileZilla Client


Version: 3.39.0

Build information:

Compiled for: x86_64-w64-mingw32 Compiled on: x86_64-pc-linux-gnu Build date: 2018-11-30 Compiled with: x86_64-w64-mingw32-gcc (GCC) 6.3.0 20170516 Compiler flags: -g -O2 -Wall

Linked against:

wxWidgets: 3.0.5 SQLite: 3.22.0 GnuTLS: 3.5.19

Operating system:

Name: Windows 7 (build 7601, Service Pack 1), 64-bit edition Version: 6.1 Platform: 64-bit system CPU features: sse sse2 sse3 ssse3 sse4.1 sse4.2 avx avx2 aes pclmulqdq rdrnd bmi2 bmi2 lm Settings dir: C:\Users\West Fork\AppData\Roaming\FileZilla\

#11825 FileZilla doesn't show up on the MacOS App Switcher Bug report normal FileZilla Client worksforme
Description

I use the app switcher (CMD+Tab) to switch between applications on MacOS. However, I've noticed recently that FileZilla no longer shows up on the list of running applications on the app switcher.

This means I have to have it visible, so that I can click in the app, or I have to click on the app in the task bar so that I can find it again.

#11827 Drive and directory selection option for both downloads and settings including updates. Feature request normal FileZilla Client duplicate
Description

For most (p2p) programs this is a very easy option to add.

If option can only be set via manually writing to the settings text file, then on-board client options should be added for ease of use.

Reasons: 1. Privacy; account name becomes a part of the footprints for downloads.

  1. Not everybody wants to write to their system drive. Personally since my power mac days tried to keep the system drive just for the system (using partition) and G4 days system drive independent of all work and personal files by directing them to alternate drives. Past 11 years used an mp3,1 upgraded 2 years ago with SSD system drive. I wish to keep writes restricted to system’s demands (run 24/7); other 4 larger drives for work and personal files.

FileZilla 3.39.0 macosx Mac OSX 10.11.6 on mp3,1

#11828 In Transfer Queue area, "Direction" arrows don't follow when columns are re-ordered Bug report normal FileZilla Client fixed
Description

In the transfer queue, if I rearrange the columns during a transfer, the direction arrows don't follow the source -> destination.

In the attached screenshot, I'm downloading files but, after rearranging the columns to match where I have my Remote and Local views, the arrows in the "Direction" column make it look like I'm uploading.

Love the program! Thank you!

#11829 PROBLEME DE CONNECTION Other normal Other invalid
Description

pas moyen de me connecter ... help

#11831 Impossible to edit files with double clic Bug report normal FileZilla Client fixed
Description

Since the last version I can't edit files when I double clic on a file in the "server" columne. Before the last version I had no problem. It seems that the file is download but the associated program is don't launched, I have try to force the association for files with no success.

#11855 Change configuration files location on *N?X systems to .config/filezilla if .config/ exists Feature request normal FileZilla Client worksforme
Description

Change default location for configuration files on *N?X systems to .config/filezilla if .config/ exists

I'm contacting all software developers that create software that clutters up our home directories with .<name> folders to have their configuration moved to .config/<name> in accordance with https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html

There's a long history here when it comes to the general case of "dot files", but the $HOME/.config directories that I specifically mention have an origin in the XDG Base Directory Specification and their environment variables:

  • $HOME/.config is where per-user configuration files go if there is no $XDG_CONFIG_HOME.
  • $HOME/.cache is where per-user cache files go if there is no $XDG_CACHE_HOME.
  • $HOME/.local/share is where per-user data files go if there is no $XDG_DATA_HOME.

Windows users may recognize this as a parallel of what Microsoft has had in Windows NT since version 4 (albeit that the names changed in version 6.0):

  • %USERPROFILE%/AppData/Local/ a.k.a. %LOCALAPPDATA% — where per-user data files for this machine go
  • %USERPROFILE%/AppData/Roaming/ a.k.a. %APPDATA% — where per-user data files that a roaming user can access from multiple machines go
  • %USERPROFILE%/AppData/Local/Temp/ a.k.a. %TEMP% — where per-user temporary files go

The idea is that per-user files can be (amongst quite a lot of other things) application data files (machine-specific or roaming), application configuration files, cached files, and temporary files, and applications place them in subtrees rooted at these particular directories.

This way we can our keep home directories clean!

Thanks for your time!

#11863 FileZilla client stays in memory after failed transmission and closing program Bug report normal FileZilla Client outdated
Description

The problem occured after the update from 3.34.0. All later versions have problems with memory management, including most recent 3.40.0. The program keeps running in the background and can only be closed to start a new session after Ctrl-Alt-Del and ending the process manualy.

This behavior is always when an connection can not be made or when the transfer is interupted. After that is is not possible to open a new connection without closing the progrma and manualy ending the process in memory.

An other report mentions the same behavoir. That describes this while updating the version. That happens with me also.

#11866 Program crashes on queue transfer completion Bug report normal FileZilla Client fixed
Description

Error Program opens and connects to a remote Linux server successfully using SFTP on custom SSH port. Files dragged to destination and upon successful transfer of the entire queue the program immediately closes. No error messages in log file even in full debug mode. The program then has to be reopened to do more transfers.

#11867 Timeout on directory listing following update to 3.41.0 Bug report normal FileZilla Client fixed
Description

I updated the FileZilla client to 3.41.0 this morning and am experiencing an issue during the directory retrieval process on 1 particular server. I regularly connect to about 12 different FTP servers on a daily basis and this is the only one giving me any issue.

Because of the sensitivity of information, I have obfuscated the host name, IP, username, and password in this public post. Happy to PM it to a tech for analysis if needed.

Status: Resolving address of ftp1.thehostname.com Status: Connecting to #.#.#.#:21... Status: Connection established, waiting for welcome message... Response: 220 TheRDNS.hostname.us Command: AUTH TLS Response: 500 AUTH not understood Command: AUTH SSL Response: 500 AUTH not understood Status: Insecure server, it does not support FTP over TLS. Command: USER * Response: 331 Password required for * Command: PASS Response: 230 User * logged in Status: Server does not support non-ASCII characters. Status: Logged in Status: Retrieving directory listing of "/ZZZ Mr Master/CDN Files delivered"... Command: CWD /ZZZ Mr Master/CDN Files delivered Response: 250 CWD command successful Command: TYPE I Response: 200 Type set to I Command: PASV Response: 227 Entering Passive Mode. (#,#,#,#,68,229) Command: MLSD Response: 150 Opening ASCII mode data connection for MLSD Error: Connection timed out after 20 seconds of inactivity Error: Failed to retrieve directory listing

I have tried removing the remote directory that I am specifying in the site manager to land into, have tried forcing passive and active mode rather than auto-detect, have tried forcing UTF-8 instead of auto-detect, have tried checking bypass proxy, and have tried ALL available server types rather than auto-detect.

So far nothing has worked.

I can confirm that if I connect to this site from the command prompt ftp in windows 10 I am able to successfully connect and retrieve a directory listing.

I have inquired from the host as to what OS, FTP server, and version they are running to try to get more information. I'll update this ticket as I get more info.

I am certainly not alone as another user entered the IRC channel a little while ago with the identical issue, but he left before I was able to ask any questions.

#11873 Filezilla can no longer connect to mozilla.org Bug report normal FileZilla Client rejected
Description

I have used Filezilla in the past to ftp to Mozilla.org's ftp site.I believe that the change in Mozilla ftp server prevents Filezilla from connecting to it now. I didn't put a wireshark packet trace on it but I can if needed to support this ticket. I'm not sure if the mozilla change makes this a feature request or just a bug.

#11875 Possible virus Bug report normal FileZilla Client rejected
Description

Just downloaded/install 3.41.1 My virus checker found the following attached problem

#11877 When deleting a folder named '~', it starts to delete the whole home folder Bug report normal FileZilla Client rejected
Description

I was deleting an empty folder called ~ through FileZilla.

However, I started to notice that it was taking way too long to delete 8KB. When I looked at the logs, I saw that it was deleting all files in /home/<user>/... instead o /home/<user>/<path>/~.

Sadly, the damage had been done. I'm filling this bug report so this may not happen to anyone else.

I almost did this myself in the console, before I realized I had to use ./~ instead of ~. I'm not sure how FTP works overall, but a possible fix may be to always include ./ or the full path... no idea though.

#11897 Please tag 3.41.X releases in the FileZilla client SVN repository Other normal Other rejected
Description

I'm writing some scripts in my FileZilla packaging to fetch the latest release Filezilla source code from the Subversion repository but I found that the 3.41.X versions aren't tagged in it[1], which makes the process slightly troublesome.

I would like to request keeping the tags in the SVN repository in sync, thanks!

[1] https://svn.filezilla-project.org/filezilla/FileZilla3/tags/?sortby=date#dirlist

#11899 ERROR say : " Error guardando la cola" CARLOS Bug report normal FileZilla Client worksforme
Description

Ha ocurrido un error guardando la cola de transferencia en C:\Users\Crlos\AppData\Roaming\File\queue.sqlie3 Algunos objetos de la cola podrian no haberse guardado.

#11901 Display of ownership incorrect Bug report normal FileZilla Client worksforme
Description

The display of the file/directory ownership on the server is incorrect. The FTP authorisation flags (eg. fle or flcdmpe) seems correct. In the appended screen print, all owners appear to be ftp:ftp, but of directory test it is actually root:root.

Not sure the error is in the Client part (or what trade the Server part is).

#11902 Insecure FTP Connection Bug report normal FileZilla Client worksforme
Description

Error message my customer is getting is This server does not support FTP over TLS. If you continue, your password and files will be sent in clear over the internet.

Please advise

Thanks Ryan

#11903 Sha-512 for FileZilla_3.41.2_win64-setup.exe does not match file Bug report normal FileZilla Client rejected
Description

SHA512 from FileZilla- 6304c0d314c5bbe3af89c0abf579f54f9aa429cd00aca9edab0cebe2d61ff5322fe2ca11a2d24e41cabb4fabefdc2dd9861856a52f73360db90ca746cb28b659

SHA512 from Donwloaded File- 009E6F174E0394203ADCECD760592F4C8830225E3ACF0D93B2FA4FD7757212F583C247835D10CCD94AA35758F93F0EADE971452B8F300973CEDA35E817CFF770

Please verify current downloaded file is not corrupt or altered.

#11914 NEW updates have abug Bug report normal FileZilla Client fixed
Description

i am just update from 3.41.0 to 3.42.0 and have a little bug just know i am using google drive to upload file and when i click to team drive !st ok and when i click a folder is geting error and now i start to install the old version 3.37 please give me the link for 3.41.0 that is for me until abug being repair regards

#11917 FileZilla 3.42.1 doesn't work with MacOS 10.13.6. Bug report normal FileZilla Client fixed
Description

I upgraded from 3.42.0 to 3.42.1 using FileZilla_3.42.1_macosx-x86_sponsored-setup.dmg and get the error that FileZilla 3.42.1 doesn't work with MacOS 10.13.6, required 10.14 or later. I'm using 10.13.6; 3.42.0 worked fine. The downloads page says "Requires OS X 10.9 or newer", https://filezilla-project.org/download.php?type=client. The release notes for 3.42.1 says it fixed a bug about compatibility with 10.13. However, the fix apparently made it impossible to work with 10.13. Does FileZilla no longer work with Mac OS X 10.13.6, or is a bug fix in the offing?

#11922 Issues loading directories in Filezilla Pro 3.42.1 mac Bug report normal FileZilla Client worksforme
Description

when trying to open any other directory other than desktop in filezilla pro for mac version 3.42.1.

when trying to load something like the download folder i can't even see anything in my parent folder. i have tried to locate the folder my manually typing in /Users/*NAME*/Download/ or /Users/cadetbester/Music/ both of which do not show the files that should be there.

#11924 Windows 7 System Tray Bug Bug report normal FileZilla Client rejected
Description

After a transfer has completed, the filezilla icon appears in the Windows 7 System Tray and displays a bubble indicating the transfers have completed. After you exit the application, the icon still remains visible in the system tray. To get rid of it, you need to mouse over it.

#11930 missing --tag=CXX when compiling filezilla Bug report normal FileZilla Client fixed
Description

In the generated file src/interface/Makefile.in, there is not "--tag=CXX" argument in the filezilla_LINK variable, which makes linking fail in my environment because libtool complains about the missing tag.

I see that there are tries to add it in the corresponding Makefile.am but it's perhaps in the wrong variable? Anyway, I need the attached patch to compile filezilla.

#11931 Move files Feature request normal FileZilla Client duplicate
Description

Please add the ability to move files in the queue up and down.

#11932 Priority not respected Bug report normal FileZilla Client fixed
Description

When I change the priority of a file in the queue it is not recognized. As one file finishes the next file on the list is taken regardless of other files where the priority was set to "high"

FileZilla Client


Version: 3.42.1

Build information:

Compiled for: x86_64-w64-mingw32 Compiled on: x86_64-pc-linux-gnu Build date: 2019-05-08 Compiled with: x86_64-w64-mingw32-gcc (GCC) 6.3.0 20170516 Compiler flags: -g -O2 -Wall

Linked against:

wxWidgets: 3.0.5 SQLite: 3.26.0 GnuTLS: 3.6.7

Operating system:

Name: Windows 10 (build 17763), 64-bit edition Version: 10.0 Platform: 64-bit system CPU features: sse sse2 sse3 ssse3 sse4.1 sse4.2 avx avx2 aes pclmulqdq rdrnd bmi2 bmi2 lm

#11936 Client timeout at "performing handshake" when using HTTP proxy Bug report normal FileZilla Client duplicate
Description

Client is unable to connect via HTTP proxy, it gets stuck at "performing handshake". I've been able to do it using the same proxy on earlier FileZilla client versions (WinSCP is working too).

Here are the debug messages:

Status:	Connecting to <<ftp_server>> through HTTP proxy
Status:	Resolving address of <<proxy_dns>>
Status:	Connecting to <<proxy_ip:port>>...
Status:	Connection with proxy established, performing handshake...
Error:	Connection timed out after 60 seconds of inactivity
Error:	Could not connect to server
Status:	Waiting to retry...
Status:	Connecting to <<ftp_server>> through HTTP proxy
Status:	Resolving address of <<proxy_dns>>
Status:	Connecting to <<proxy_ip:port>>...
Status:	Connection with proxy established, performing handshake...
Error:	Connection timed out after 60 seconds of inactivity
Error:	Could not connect to server
Status:	Disconnected from server
Status:	Connecting to <<ftp_server>> through HTTP proxy
Status:	Resolving address of <<proxy_dns>>
Status:	Connecting to <<proxy_ip:port>>...
Status:	Connection with proxy established, performing handshake...
Error:	Connection attempt interrupted by user
Status:	Disconnected from server
Status:	Connecting to <<ftp_server>> through HTTP proxy
Status:	Resolving address of <<proxy_dns>>
Status:	Connecting to <<proxy_ip:port>>...
Status:	Connection with proxy established, performing handshake...
Error:	Connection attempt interrupted by user
Status:	Disconnected from server
Trace:	CRealControlSocket::DoClose(66)
Trace:	CControlSocket::DoClose(66)
Trace:	CRealControlSocket::DoClose(66)
Trace:	CControlSocket::DoClose(66)
Trace:	CControlSocket::DoClose(66)
Trace:	CFileZillaEnginePrivate::ResetOperation(0)
Trace:	CControlSocket::SendNextCommand()
Trace:	CFtpLogonOpData::Send() in state 0
Status:	Connecting to <<ftp_server>> through HTTP proxy
Status:	Resolving address of <<proxy_dns>>
Status:	Connecting to <<proxy_ip:port>>...
Status:	Connection with proxy established, performing handshake...
Error:	Connection timed out after 60 seconds of inactivity
Trace:	CRealControlSocket::DoClose(2050)
Trace:	CControlSocket::DoClose(2050)
Trace:	CFtpControlSocket::ResetOperation(2114)
Trace:	CControlSocket::ResetOperation(2114)
Trace:	CFtpLogonOpData::Reset(2114) in state 1
Error:	Could not connect to server
Trace:	CFileZillaEnginePrivate::ResetOperation(2114)
Status:	Waiting to retry...
Trace:	CRealControlSocket::DoClose(66)
Trace:	CControlSocket::DoClose(66)
Trace:	CControlSocket::DoClose(66)
Trace:	CControlSocket::SendNextCommand()
Trace:	CFtpLogonOpData::Send() in state 0
Status:	Connecting to <<ftp_server>> through HTTP proxy
Status:	Resolving address of <<proxy_dns>>
Status:	Connecting to <<proxy_ip:port>>...
Status:	Connection with proxy established, performing handshake...
Error:	Connection timed out after 60 seconds of inactivity
Trace:	CRealControlSocket::DoClose(2050)
Trace:	CControlSocket::DoClose(2050)
Trace:	CFtpControlSocket::ResetOperation(2114)
Trace:	CControlSocket::ResetOperation(2114)
Trace:	CFtpLogonOpData::Reset(2114) in state 1
Error:	Could not connect to server
Trace:	CFileZillaEnginePrivate::ResetOperation(2114)
#11937 Can't install latest version 3.41.2 Bug report normal FileZilla Client worksforme
Description

I'm on version 3.41.2. I can't report a bug without upgrading to 3.42.1. When I upgrade it wants me to load 3rd party virus protection software. My company doesn't allow that, so I cancel out of it and it doesn't install the software. So I can't report the bug. Which is by the way, Filezila runs at system startup and I don't want it to. And I can't find it in the startup files. My only option at this point is to uninstall it, and install it when I want to run it. Pretty lame stuff.

Thanks, Peter

#11942 Flatpak can't see /var/www directory Bug report normal FileZilla Client rejected
Description

I'm getting the following error when I try to navigate to the /var/www/ directory on my localhost:

Failed to change directory
'/var/www/' does not exist or cannot be accessed.

I can access the /home directory just fine, but that's not where my website lives locally.

I'm using the latest FileZilla flakpak from flathub.org (version 3.42.1) on Fedora 30. The error isn't SELinux related (I'm getting the same result in permissive mode).

#11950 552 Disk Full Other normal FileZilla Client rejected
Description

I am attempting to upload documents, upon attempt I receive the following response:

552 Disk full - please upload later Error: Critical file transfer error Status: Disconnected from server

I understand this may entail me requesting more space on the shared server. Thank you for any help you are able to provide, I do greatly appreciate it!

#11953 Filezilla doesn't remember that I've told it to "Always allow insecure plain FTP for this server" Bug report normal FileZilla Client fixed
Description

Filezilla doesn't remember that I've told it to "Always allow insecure plain FTP for this server"

This happens if the site is configured as default, to use TLS if available. I would expect the warning to stop if I check the box on a server that will never support TLS. The checkbox does nothing.

It does appear to stop warning if you go in site manager and change it to use plain FTP only.

3.43.0

#11955 For s3 connection, FZ ignores "host:" configuration box so impossible to connect to local s3 server (min.io) Bug report normal FileZilla Client worksforme
Description

I am running a local min.io s3 server on my local network and FileZilla Pro can not connect to it.

I set the hostname to my min.io s3 server network IP address but I can see in the access logs that FZ ignores my host entry and simply uses an Amazon address instead which of course fails.

The host IP address is entered in the "Host:" box as 192.168.0.43 and Port: 9000 however FZ Pro shows that it is trying to access a different server: Retrieving directory listing... Status: Resolving address of s3.dualstack.us-east-1.amazonaws.com Status: Connecting to 52.216.9.37:9000... Error: Connection timed out after 20 seconds of inactivity Error: Failed to retrieve directory listing ... so it looks like it has used my port number but ignored my host IP address and used something from AWS or something internal instead. This seems to be a bug because it is entirely reasonable to expect "Host:" to allow me to connect to a s3 server at my own IP address.

My app and mac details are: FileZilla Pro


Version: 3.43.0

Build information:

Compiled for: x86_64-apple-darwin18.6.0 Compiled on: x86_64-apple-darwin18.6.0 Build date: 2019-06-27 Compiled with: Apple LLVM version 10.0.1 (clang-1001.0.46.4) Compiler flags: -Werror=partial-availability -Wall -g

Linked against:

wxWidgets: 3.0.5 SQLite: 3.26.0 GnuTLS: 3.6.7

Operating system:

Name: Mac OS X (Darwin 18.6.0 x86_64) Version: 10.14 CPU features: sse sse2 sse3 ssse3 sse4.1 sse4.2 avx avx2 aes pclmulqdq rdrnd bmi2 bmi2 adx lm Settings dir: /Users/richardj/.config/filezilla/

#11958 Download and add files to queue are greyed out Bug report normal FileZilla Client worksforme
Description

Download and add files to queue are greyed out

#11969 Bug with editing files on the local disk Bug report normal FileZilla Client worksforme
Description

The whole problem is that if two files are named the same. e.g. rules.php and one is on the remote server and the other on the local disk, then editing this on the local disk causes that it overwrites the remote server file.

#11972 "Remember password until FileZilla is closed" checkbox not remembered Bug report normal FileZilla Client fixed
Description

Hello,

The "Remember password until FileZilla is closed" checkbox used to be automatically ticked by default if this option was enabled last time the dialog was shown.

It doesn't seem to be the case anymore since version 3.44. Is it a bug or a feature (that would be too bad)?

Best regards, Underground78

#11974 Error 530 Login incorrect. Bug report normal FileZilla Client worksforme
Description

Hi, We manage a forum phpbb with filezilla and we can't get in. This morning, no problem, but now we have this "error 530" and we don't know why (we didn't do anything). We are trying from two separated computer (one in belgium, one in france, one windows, one mac), so we don't find any answer to this issue. Can you help us ? We are stucked.

#11975 Clicking Site Manager closes FileZilla Client Bug report normal FileZilla Client fixed
Description

As per subject: Clicking the Site Manager button closes FileZilla Client. FileZilla also closes if you go File->Site Manager

FileZilla Client


Version: 3.44.1

Build information:

Compiled for: x86_64-w64-mingw32 Compiled on: x86_64-pc-linux-gnu Build date: 2019-08-09 Compiled with: x86_64-w64-mingw32-gcc (GCC) 8.3-win32 20190406 Compiler flags: -g -O2 -Wall

Linked against:

wxWidgets: 3.0.5 SQLite: 3.28.0 GnuTLS: 3.6.8

Operating system:

Name: Windows 10 (build 18362), 64-bit edition Version: 10.0 Platform: 64-bit system CPU features: sse sse2 sse3 ssse3 sse4.1 sse4.2 avx avx2 aes pclmulqdq rdrnd bmi2 bmi2 lm

#11976 Filezilla client closes when click on Site manager Bug report normal FileZilla Client duplicate
Description

It's only when predefined sites exists in fzdefault.xml

#11979 Site manager Site Highlighting does not match keypress Bug report normal FileZilla Client fixed
Description

Hi folks, In your latest version 3.44.2 Operating system: Windows 10 (build 17763), 64-bit edition

Version: 10.0 Platform: 64-bit system

I'm a keyboard kinda guy. When I fire up the site manager, I'll press 'P' to get to a site I have defined that starts with 'P', 'E' to the E's, etc. In prior versions, the blue highlight box would land on those sites. In this new version, a light rectangle will highlight the site I want, and it will connect if I hit a spacebar or enter, but the blue highlight stays on the last site I used a mouse to select. Thanks!

#11982 Can't using copy/paste shortcut key on FileZilla Client for Mac Bug report normal FileZilla Client duplicate
Description

After updated to client version 3.44.2, the usage of copy and paste using <CMD>+<C> and <CMD>+<V> is not possible.

#11985 can anyone help me with this error Bug report normal FileZilla Server outdated
Description

Command: MLSD Error: GnuTLS error -110: The TLS connection was non-properly terminated. Status: Server did not properly shut down TLS connection Error: The data connection could not be established: ECONNABORTED - Connection aborted Error: Connection timed out after 20 seconds of inactivity Error: Failed to retrieve directory listing

#11987 cannot select with ctrl -multiselect Bug report normal FileZilla Client fixed
Description

using from a long time filezilla .latest update has an issue /cannot select with ctrl (multiselect ).maby is just me ?

#11988 Get 530 Login Incorrect error after period of inactivity Bug report normal FileZilla Client rejected
Description

Recently I have had my FTP connections drop after a period of inactivity (about 10 to 15 minutes or so), and when I try to reconnect I get a 530 login incorrect error.

I have tried disabling the Windows firewall, I've double checked my credentials and am certain there is nothing wrong there. The only way to fix it seems to be restarting my computer (restarting FileZilla isn't enough).

To reiterate, there is nothing wrong with my credentials, and a computer restart fixes the problem, but if the server drops the connection after a period of inactivity it is impossible to restart the connection because of this 530 login incorrect error.

The debug log is shown below:

Trace: CControlSocket::SendNextCommand() Trace: CFtpLogonOpData::Send() in state 0 Status: Resolving address of * Status: Connecting to :21... Status: Connection established, waiting for welcome message... Trace: CFtpControlSocket::OnReceive() Response: 220 10.0.0.5 FTP server ready Trace: CFtpLogonOpData::ParseResponse() in state 1 Trace: CControlSocket::SendNextCommand() Trace: CFtpLogonOpData::Send() in state 2 Command: AUTH TLS Trace: CFtpControlSocket::OnReceive() Response: 500 AUTH not understood Trace: CFtpLogonOpData::ParseResponse() in state 2 Trace: CControlSocket::SendNextCommand() Trace: CFtpLogonOpData::Send() in state 3 Command: AUTH SSL Trace: CFtpControlSocket::OnReceive() Response: 500 AUTH not understood Trace: CFtpLogonOpData::ParseResponse() in state 3 Status: Insecure server, it does not support FTP over TLS. Trace: CControlSocket::SendNextCommand() Trace: CFtpLogonOpData::Send() in state 5 Trace: CFtpControlSocket::SetAsyncRequestReply Trace: CControlSocket::SendNextCommand() Trace: CFtpLogonOpData::Send() in state 6 Command: USER Trace: CFtpControlSocket::OnReceive() Response: 331 Password required for * Trace: CFtpLogonOpData::ParseResponse() in state 6 Trace: CControlSocket::SendNextCommand() Trace: CFtpLogonOpData::Send() in state 6 Command: PASS Trace: CFtpControlSocket::OnReceive() Response: 530 Login incorrect. Trace: CFtpLogonOpData::ParseResponse() in state 6 Trace: CFtpControlSocket::ResetOperation(1094) Trace: CControlSocket::ResetOperation(1094) Trace: CFtpLogonOpData::Reset(1094) in state 6 Error: Critical error: Could not connect to server

#11991 Escaped @ sign in Quickconnect account listing Bug report normal FileZilla Client rejected
Description

The @ sign is being unnecessarily escaped in account names in the Quickconnect list of accounts. This doesn't cause any problems, but it's annoying and completely unnecessary. As a developer myself, I'm certain this is a 30 second fix, and would be very grateful if somebody would fix it.

#11997 Pipelining readdir requests Bug report normal FileZilla Client invalid
Description

Something seems strange with the way the client is handling responses to readdir requests.

I just finished support to handle this kind of client behavior in a SFTP server I am working on but FileZilla does not seem to handle the replies correctly, complaining about wrong request id.

Interaction log looks like this:

(FileZilla) ID:256 SSH_FXP_OPENDIR. (Server) ID:256 SSH_FXP_HANDLE. (FileZilla) ID:256 SSH_FXP_READDIR. (FileZilla) ID:257 SSH_FXP_READDIR. (FileZilla) ID:258 SSH_FXP_READDIR. (FileZilla) ID:259 SSH_FXP_READDIR. (Server) ID:256 SSH_FXP_NAME count:5. (FileZilla) ID:256 SSH_FXP_READDIR. (Server) ID:257 SSH_FXP_STATUS errnum:1. (Server) ID:258 SSH_FXP_STATUS errnum:1. (Server) ID:259 SSH_FXP_STATUS errnum:1. (Server) ID:256 SSH_FXP_STATUS errnum:1.

Maybe I'm missing something obvious here but looking at the order of sequence ids send by the client and the order in which the server sends its responses, the listing should end successfully.

The server is closed source so I'm unable to share code or make it available for testing.

#12000 Patch for gcc 10 Patch normal libfilezilla fixed
Description

The attached patch will allow libfilezilla to build with the upcoming gcc 10.

#12012 Using TLS causes Directory Listing Timeout (it used to work fine) Bug report normal FileZilla Client worksforme
Description

In the last few months (using newest versions at the time) I have had to change from "Use explicit FTP over TLS if available" to "Only use plain FTP (insecure)" or it will timeout (30 seconds) on listing the remote directory.

FileZilla Client


Version: 3.45.1

Build information:

Compiled for: x86_64-w64-mingw32 Compiled on: x86_64-pc-linux-gnu Build date: 2019-09-25 Compiled with: x86_64-w64-mingw32-gcc (GCC) 8.3-win32 20190406 Compiler flags: -g -O2 -Wall

Linked against:

wxWidgets: 3.0.5 SQLite: 3.29.0 GnuTLS: 3.6.9

Operating system:

Name: Windows 10 (build 18362), 64-bit edition Version: 10.0 Platform: 64-bit system CPU features: sse sse2 sse3 ssse3 sse4.1 sse4.2 avx avx2 aes pclmulqdq rdrnd bmi2 bmi2 lm Settings dir: C:\Users\\AppData\Roaming\FileZilla\

#12032 Bug when user exceeds storage quota while uploading a file using SFTP or FTPS Bug report normal FileZilla Client rejected
Description

Previously when a user used SFTP and exceeded a storage quota Filezilla would report an error indicating the user had exceeded the quota and would not upload the file. With the recent update this no longer happens and the user does not receive an error message but only a 0kb file is uploaded. User thinks upload is successful. Please see attached log file.

When using FTPS, the file is not uploaded however the system tries repeatedly to upload the same file over and over and over again. Please see attached log file.

Attached log file is for a user with a 0 storage quota uploading a 82,751 PNG file to the server.

#12034 Filezilla Client do not work first 5-6 minutes after start with 100% CPU load Bug report normal FileZilla Client rejected
Description

When I start the client, one core is loaded at 100% for 5-6 minutes. However, I can not connect to the sftp server saved in the settings. A new tab appears, but it is empty. The console is empty. The indicator does not show that some operation is occurring. I can click refresh, but it does not give anything. I can press interrupt the current operation, but it does not give anything. The second tab to the same server is also empty.

If I click check for new versions, a dialog window will be displayed, there will be rotation progress bar until background load not ended.

Until the background process completes its work, the client is completely useless.

Through Process Explorer, I can look at stack on thread, which creates the download:

ntoskrnl.exe!memset+0x85f
libgnutls-30.dll!gnutls_group_get_name+0x26308
libgnutls-30.dll!gnutls_group_get_name+0x24a7d
libgnutls-30.dll!gnutls_x509_crl_import+0xa6
libgnutls-30.dll!gnutls_x509_crl_list_import+0x46
libgnutls-30.dll!gnutls_x509_crl_list_import2+0x60
libgnutls-30.dll!gnutls_x509_trust_list_add_trust_mem+0xea
libgnutls-30.dll!gnutls_x509_trust_list_add_system_trust+0x121
libfilezilla-0.dll!ZN2fz9tls_layer31generate_selfsigned_certificateERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEERKNS2_IcS3_IcESaIcEEERKSt6vectorISB_SaISB_EE+0x87ba
libfilezilla-0.dll!ZN2fzplERKNS_8durationES2_+0x13a2
libfilezilla-0.dll!ZN2fz18replace_substringsERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS5_S8_+0x14f
msvcrt.dll!srand+0x93
msvcrt.dll!ftime64_s+0x1dd
kernel32.dll!BaseThreadInitThunk+0xd
ntdll.dll!RtlUserThreadStart+0x21

If I close the client while the background task is running, the window will disappear, but the process will remain until it completes its work.

If I start the client again, it will again do something in the background for 5-6 minutes.

Judging by the line: generate_selfsigned_certificate He is engaged in the fact that he generates some kind of certificates.

#12045 Data connection TLS warning: SSL3 alert write: fatal: bad record mac Bug report normal FileZilla Server outdated
Description

All of a sudden I start seeing this error in the log and the connections are being dropped:

Data connection TLS warning: SSL3 alert write: fatal: bad record mac

The only major change was the installation of the regular Windows updates the day before. I've updated to the latest version 0.9.60 but that also has the same problem.

This was previously reported in tickets #8771 and #4626 but it looks like we have something similar again.

#12046 Filezilla Pro Freezes on Windows 10 when transferring multiple files Bug report normal FileZilla Client wontfix
Description

For multiple (more than 10) simultaneous upload or download threads GUI is almost completely frozen.

#12047 Datesettings are not the same as system Bug report normal FileZilla Client worksforme
Description

Hi,

Like you can see on the picture. my settings use an slash to separate day, month and year. In the filelist it uses an minus.

Jan

#12048 version 3.46.0 giving following error Bug report normal FileZilla Client worksforme
Description

Error: Received certificate chain could not be verified. Verification status is 4096. Status: Connection attempt failed with "ECONNABORTED - Connection aborted". Error: Could not connect to server

FileZilla Client / version 3.46.0 / on windows 7

#12051 Viewing window minimisation Bug report normal FileZilla Client rejected
Description

Am running Windows 10 - 64 bit. Just upgraded to version 3.46.0. Have noted that the ability to reduce the width of the viewing window has been lost, and it will only reduce to a set width. I need a narrow view. Is this a bug or a set feature in the new version?

Kind regards, Mark.

#12056 Can't Sign In To Google Drive Bug report normal FileZilla Client rejected
Description

Sign in with Google temporarily disabled for this app

This app has not been verified yet by Google in order to use Google Sign In.

#12059 Unable to connect to server Bug report normal FileZilla Client invalid
Description

I installed the newest version of Filezilla today and ever since I have been unable to contact my ISP server to upload web pages for my customers. I AM DEAD IN THE WATER HERE AND NEED IMMEDIATE RESOLUTION. If there is no fix, how do I re-install the previous version which was working fine as recetnly as this past Saturday?

#12060 Google - Drive Sign in with Google temporarily disabled for this app Bug report normal FileZilla Client duplicate
Description

When trying to log into my GoogleDrive Account I get the following error message:

"Sign in with Google temporarily disabled for this app This app has not been verified yet by Google in order to use Google Sign In."

Info: FileZilla Pro


Version: 3.46.0

Build information:

Compiled for: x86_64-apple-darwin19.0.0 Compiled on: x86_64-apple-darwin19.0.0 Build date: 2019-12-02 Compiled with: Apple clang version 11.0.0 (clang-1100.0.33.12) Compiler flags: -Werror=partial-availability -Wall -g

Linked against:

wxWidgets: 3.0.5 SQLite: 3.26.0 GnuTLS: 3.6.7

Operating system:

Name: Mac OS X (Darwin 18.7.0 x86_64) Version: 10.14 CPU features: sse sse2 sse3 ssse3 sse4.1 sse4.2 avx avx2 aes pclmulqdq rdrnd bmi2 bmi2 adx lm Settings dir: /Users/denis/Library/Containers/org.filezilla-project.filezilla.sandbox/Data/.config/filezilla/

#12061 Restore tabs on startup Feature request normal FileZilla Client fixed
Description

Tim, any chance in settings you could add a "_Restore Last State on Restart" so that it remembers all the open ftp sites and directories where I was before closing? Can't describe what a pain in the tail it is to re-open all the ftp sites and navigate to same directories in both the pc and ftp for each site (get's really old after a while). I would be forever grateful if you add that. - Michael P.

#12062 Es imposible establecer la conexion Bug report normal FileZilla Client worksforme
Description

Estado: Resolviendo la dirección de www.vehiculospro.es Estado: Conectando a 85.112.29.217:21... Estado: Conexión establecida, esperando el mensaje de bienvenida... Respuesta: 220 ProFTPD 1.3.5b Server (ProFTPD) [85.112.29.217] Comando: AUTH TLS Error: La conexión superó el tiempo de espera después de 20 segundos de inactividad Error: No se pudo conectar al servidor Estado: Esperando para reintentar... Estado: Resolviendo la dirección de www.vehiculospro.es Estado: Conectando a 85.112.29.217:21... Estado: Conexión establecida, esperando el mensaje de bienvenida... Respuesta: 220 ProFTPD 1.3.5b Server (ProFTPD) [85.112.29.217] Comando: AUTH TLS Error: No se pudo conectar al servidor Estado: Desconectado del servidor Estado: Resolviendo la dirección de www.tinitasoft.com Estado: Conectando a 85.112.29.217:21... Estado: Conexión establecida, esperando el mensaje de bienvenida... Respuesta: 220 ProFTPD 1.3.5b Server (ProFTPD) [85.112.29.217] Comando: AUTH TLS Error: No se pudo conectar al servidor Estado: Esperando para reintentar... Estado: Resolviendo la dirección de www.tinitasoft.com Estado: Conectando a 85.112.29.217:21... Estado: Conexión establecida, esperando el mensaje de bienvenida... Respuesta: 220 ProFTPD 1.3.5b Server (ProFTPD) [85.112.29.217] Comando: AUTH TLS Error: No se pudo conectar al servidor Estado: Desconectado del servidor Estado: Resolviendo la dirección de www.vehiculospro.es Estado: Conectando a 85.112.29.217:21... Estado: Conexión establecida, esperando el mensaje de bienvenida... Respuesta: 220 ProFTPD 1.3.5b Server (ProFTPD) [85.112.29.217] Comando: AUTH TLS Error: No se pudo conectar al servidor Estado: Esperando para reintentar... Estado: Resolviendo la dirección de www.vehiculospro.es Estado: Conectando a 85.112.29.217:21... Estado: Conexión establecida, esperando el mensaje de bienvenida... Respuesta: 220 ProFTPD 1.3.5b Server (ProFTPD) [85.112.29.217] Comando: AUTH TLS Error: No se pudo conectar al servidor

#12071 moving files on server results in "no such file or directory" Bug report normal FileZilla Client duplicate
Description

When moving a file from one directory to another on any server I try results in an error.: Befehl: mv "FG10_PK_mGS_mNW_20191231_20191216065624.xml" "/home/tri-sftpuser/files/htdocs/datenhandling/uploads/FG10_PK_mGS_mNW_20191231_20191216065624.xml" Fehler: mv FG10_PK_mGS_mNW_20191231_20191216065624.xml /home/tri-sftpuser/files/htdocs/datenhandling/uploads/FG10_PK_mGS_mNW_20191231_20191216065624.xml: no such file or directory

The same command works fine in the previous version of FileZille I am still using.

#12072 cannot move / drag to subfolders Bug report normal FileZilla Client duplicate
Description

since update this morning I cannot move/drag files from one folder to a subfolder. file is there, I can transfer to my computer and back, but cannot drag to a subfolder - tells me "no such file or directory" but it is clearly there and I have done it for years.

#12073 Add SFTP protocol option to use sudo on login Feature request normal FileZilla Client rejected
Description

Sorry to say, but this is kind of a killer feature of WinSCP. On the other hand, it only understands putty private keys...

#12076 Version update from 4.62 to 4.63 Bug report normal FileZilla Client rejected
Description

I experienced a lot of difficulties in updating your Client to Version 4.63: I could do it only after restarting my PC, since it insisted wrongly that the Client was still running.

Please review the updating SW and correct this irritation.

F.S.Floriani

#12077 Password Feature request normal FileZilla Client worksforme
Description

Up to some versions ago, the PW was memorised and not asked for again in a new Client session.

Re-entering it every time is a bother, I believe unnecessary even for security reasons. Could you pls. return to the old, easier practice?

F.S.Floriani

#12078 Upgrade from v3.45.1 to v3.46.3 corrupts ability to use SFTP Bug report normal FileZilla Client duplicate
Description

Port 443 SFTP - SSH File Transfer Protocol works perfectly on v3.45.1 but once we upgraded to v3.46.3 (newest) it does not.

#12089 SFTP broken after version 3.46.0 Bug report normal FileZilla Client fixed
Description

Can't use SFTP on any version after 3.20.1 to the Lenovo ix2-dl NAS.

Status:	Connecting to xxx.ddns.net:1977...
Response:	fzSftp started, protocol_version=9
Command:	open "ftp@xxx.ddns.net" 1977
Command:	Pass: ********
Error:	FATAL ERROR: Remote side sent disconnect message
Error:	type 11 (by application):
Error:	"Unsupported protocol sequence"
Error:	Could not connect to server

Note: 1977 port is forwarded to 22 on router.

Works fine with 3.20.1 and below. Also tested with latest versions of other ftp clients such as CyberDuck and FireFTP and they work fine.

#12091 ECONNRESET error on connection attempts via ATT Fixed Wireless Bug report normal FileZilla Client worksforme
Description

I recently had ATT install their "Fixed Wireless" service for Internet at my house. The ATT Fixed Wireless system uses an antenna on the roof to receive signal from the ATT cellular network to deliver Internet via a wire to a new router they installed the home. It is NOT a "hotspot." Anyway, after it was installed, I found I could no longer use FileZilla to connect via secure FTP to my server (I previously never had any trouble). Fortunately, I had not yet disconnected the previous Internet connection, so I switched to that router and was able to connect as I had previously.

I called ATT Fixed Wireless for some help and, although I ended up getting disconnected before I was connected to tech support, the "receptionist" opined that the issue could be related to lack of support for "port forwarding" in their ATT Fixed Wireless service. I do not have sufficient knowledge to know if that is the issue, but mention it in case there is any relevance.

The settings that I have always used for this server are:

Protocol: FTP - File Transfer Protocol Host: ecbiz198.inmotionhosting.co Port: (blank) Encryption: Use explicit FTP over TLS is available Logon: Normal

Here is the dialog text for FAILURE TO CONNECT using ATT Fixed Wireless:


Status: Resolving address of ecbiz198.inmotionhosting.com Status: Connecting to 104.193.142.7:21... Status: Connection established, waiting for welcome message... Response: 220---------- Welcome to Pure-FTPd [privsep] [TLS] ---------- Response: 220-You are user number 5 of 150 allowed. Response: 220-Local time is now 04:49. Server port: 21. Response: 220-This is a private system - No anonymous login Response: 220-IPv6 connections are also welcome on this server. Response: 220 You will be disconnected after 30 minutes of inactivity. Command: AUTH TLS Response: 502 AUTH TLS OK. Command: AUTH SSL Error: Could not read from socket: ECONNRESET - Connection reset by peer Error: Could not connect to server Status: Waiting to retry... Status: Resolving address of ecbiz198.inmotionhosting.com Status: Connecting to 104.193.142.7:21... Status: Connection established, waiting for welcome message... Response: 220---------- Welcome to Pure-FTPd [privsep] [TLS] ---------- Response: 220-You are user number 5 of 150 allowed. Response: 220-Local time is now 04:49. Server port: 21. Response: 220-This is a private system - No anonymous login Response: 220-IPv6 connections are also welcome on this server. Response: 220 You will be disconnected after 30 minutes of inactivity. Command: AUTH TLS Response: 502 AUTH TLS OK. Command: AUTH SSL Error: Could not read from socket: ECONNRESET - Connection reset by peer Error: Could not connect to server


Here is the dialog text for SUCCESSFUL CONNECTION using DSL:


Status: Resolving address of ecbiz198.inmotionhosting.com Status: Connecting to 209.182.196.149:21... Status: Connection established, waiting for welcome message... Status: Initializing TLS... Status: Verifying certificate... Status: TLS connection established. Status: Logged in Status: Retrieving directory listing... Status: Directory listing of "/" successful


I tried the two other "secure" protocols available in FileZilla (using the ATT Fixed Wireless network) and the result was the same unsuccessful connection attempt. Then I tried the standard unencrypted FTP over Port 21 and that worked fine (e.g. the ATT Fixed Wireless successfully connected me to my server using vanilla FTP, but would not work with any secure method).

I did not try SFTP because I have never been successful in getting that set up on the server or client side.

It is hard to believe this is not something I can resolve with a tweak to an existing setting (which I do not know about), but if not, it seems to me that is is going to prevent me from using FileZilla and I certainly hope that is not the outcome, because the ATT Fixed Wireless connection is 20 times faster than my now-disconnected DSL.

#12095 VMS directories sometimes shown as files Bug report normal FileZilla Client wontfix
Description

Server is OpenVMS 8.4.

On access, directories are correctly shown as folders. In some occasions however, directories are shown as files, but with correct extension (.DIR) and version number (;1). Security, ownership etc are the same for all directories. Debug log does not show this; Image 1 shows the correct type of information, inmage 2 shows files that are actually directories but are shown as files.

#12100 FileZilla crashes on launch and newest version can't be opened Bug report normal FileZilla Client worksforme
Description

FileZilla 3.45.1 was the only version I could start on my Mac, but now it crashes on launch. At the bottom of the message there is the report. All other newer versions, after installation, return the message "The application could not be opened"

Crash Report Process: filezilla [2641] Path: /Users/USER/Desktop/FileZilla.app/Contents/MacOS/filezilla Identifier: org.filezilla-project.filezilla Version: ??? Code Type: X86-64 (Native) Parent Process: ??? [1] Responsible: filezilla [2641] User ID: 501

Date/Time: 2020-01-30 09:59:52.787 +0100 OS Version: Mac OS X 10.14.6 (18G2022) Report Version: 12 Anonymous UUID: 01707240-4EEC-3652-E2D3-4CF3A5C4FA75

Time Awake Since Boot: 1200 seconds

System Integrity Protection: enabled

Crashed Thread: 0

Exception Type: EXC_CRASH (Code Signature Invalid) Exception Codes: 0x0000000000000000, 0x0000000000000000 Exception Note: EXC_CORPSE_NOTIFY

Termination Reason: Namespace CODESIGNING, Code 0x1

kernel messages:

VM Regions Near 0 (cr2): -->

TEXT 0000000105cd8000-00000001067c9000 [ 10.9M] r-x/rwx SM=COW

Thread 0 Crashed: 0 0x000000010e54c000 _dyld_start + 0

Thread 0 crashed with X86 Thread State (64-bit):

rax: 0x0000000000000000 rbx: 0x0000000000000000 rcx: 0x0000000000000000 rdx: 0x0000000000000000 rdi: 0x0000000000000000 rsi: 0x0000000000000000 rbp: 0x0000000000000000 rsp: 0x00007ffee9f27bc8

r8: 0x0000000000000000 r9: 0x0000000000000000 r10: 0x0000000000000000 r11: 0x0000000000000000

r12: 0x0000000000000000 r13: 0x0000000000000000 r14: 0x0000000000000000 r15: 0x0000000000000000 rip: 0x000000010e54c000 rfl: 0x0000000000000200 cr2: 0x0000000000000000

Logical CPU: 0 Error Code: 0x00000000 Trap Number: 0

Binary Images:

0x105cd8000 - 0x1067c8ff7 + (0) <2AA5D23A-5618-3011-9FE0-EB563ED44B45> 0x10e54b000 - 0x10e5b570f + (655.1.1) <B3D9DDCB-5AA7-3674-9608-16B5AA4AA494>

External Modification Summary:

Calls made by other processes targeting this process:

task_for_pid: 0 thread_create: 0 thread_set_state: 0

Calls made by this process:

task_for_pid: 0 thread_create: 0 thread_set_state: 0

Calls made by all processes on this machine:

task_for_pid: 489 thread_create: 0 thread_set_state: 0

VM Region Summary: ReadOnly portion of Libraries: Total=13.9M resident=0K(0%) swapped_out_or_unallocated=13.9M(100%) Writable regions: Total=8500K written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=8500K(100%)

VIRTUAL REGION

REGION TYPE SIZE COUNT (non-coalesced) =========== ======= ======= STACK GUARD 56.0M 1 Stack 8192K 1 DATA 1016K 4 LINKEDIT 2556K 2 TEXT 11.4M 2 shared memory 8K 2 =========== ======= ======= TOTAL 78.9M 12

Model: iMac18,3, BootROM 179.0.0.0.0, 4 processors, Intel Core i5, 3,8 GHz, 16 GB, SMC 2.41f1 Graphics: kHW_AMDRadeonPro580Item, Radeon Pro 580, spdisplays_pcie_device, 8 GB Memory Module: BANK 0/DIMM0, 8 GB, DDR4, 2400 MHz, 0x80AD, 0x484D413831475336414652384E2D554820202020 Memory Module: BANK 1/DIMM0, 8 GB, DDR4, 2400 MHz, 0x80AD, 0x484D413831475336414652384E2D554820202020 AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x16F), Broadcom BCM43xx 1.0 (7.77.61.3 AirPortDriverBrcmNIC-1305.9) Bluetooth: Version 6.0.14d3, 3 services, 27 devices, 1 incoming serial ports Network Service: Ethernet, Ethernet, en0 Serial ATA Device: APPLE HDD ST3000DM001, 3 TB USB Device: USB 3.0 Bus USB Device: External USB 3.0 USB Device: My Book 1234 USB Device: M3 Portable USB Device: Bluetooth USB Host Controller USB Device: FaceTime HD Camera (Built-in) Thunderbolt Bus: iMac, Apple Inc., 41.1

#12102 SFTP uploads to Cerberus Server of 1GB+ fail Bug report normal FileZilla Client rejected
Description

Our clients cannot upload large files to our Cerberus server v11 - anything 1 Byte over 1GB from a fileshare fails. Connection seems to reset and FZPro thinks the file is already there and asks to overwrite etc. If the file is on the computer local to FZPro the transfer works.

As far as I can tell this issue started with v3.46.1 – 3.46.0 worked OK. Issue happens with older versions of Cerberus too – tried a rolledback version of our server using v10 and the same issue.

A quick fix is to turn FileZilla's default connection timeout of 20 seconds off but our client does not see that as an acceptable solution (their users are prevented from making changes in the client - they are a financial institution).

Logs attached of a failed transfer (filezilla20sectimeout.log), a successful transfer (filezilla20sectimeout) and the corresponding Cerberus server log. File used was a 4GB Windows 10 installer – tested the successful upload by downloading it and doing an install from it.

Filezilla version is Filezilla Pro 3.46.3 and Cerberus version is 11.0.8.0 on a fully patched Windows Server 2019 AWS instance.

#12106 Hide file/folder view Feature request normal FileZilla Client rejected
Description

Hi, it's possible to add a option for hide the left panel ? I always use drag&drop for transfer my files.

(I know i can hide tree folder but i need to hide file view panel in left)

Thanks.

#12109 Reopen/follow up to ticket #12102 SFTP uploads to Cerberus Server of 1GB+ fail Bug report normal FileZilla Client duplicate
Description

Hello

Can I follow up on the closed case #12102 please. I consulted with my sftp server vendor re the issues you found in the case - primarily your finding that the window being opened was too big and that the Filezilla client was waiting for a long time to do something.

Your reply seems to say that it is the server setting the windows so large and that the upload should start immediately. They are saying it is FileZilla setting the windows so large and that they are waiting for the client to something.

So their questions are:

  1. Why is the setting of the window to be so large (2GB?) a problem and
  2. Is Filezilla expecting some sort of a response from the server once all the key exchange etc. has completed before starting to upload?

They are quite keen to resolve the issue with you. It is only manifesting with FileZilla - other Putty based clients (WinSCP) seem OK. Indeed Cerberus with other clients is fine and FileZilla with other servers is fine - it just seems to be the combination of the two having the issue.

Thanks Neil

#12110 Opening too large a window when uploading - transfers fail Bug report normal FileZilla Client duplicate
Description

When uploading from a windows fileshare the transfer fails as FileZilla is opening to large a window for the connection to the server.

#12111 TLS 1.3 key exchange inaccurate Bug report normal FileZilla Client fixed
Description

In the certificate details, if you're using TLS 1.3 and an ECDSA certificate, the key exchange will show "ECDHE-RSA", when it should be showing "ECDHE-ECDSA".

It only seems to happen when using TLS 1.3, prior TLS versions correctly display "ECDHE-ECDSA".

#12112 release 3.47.0_rc1 fails to build due to some missing headers in source Bug report normal FileZilla Client fixed
Description

Hi,

I tried on Mageia Cauldron to build latest 3.47.0_rc1 release but it fails to build due to some missing headers in source:

-D_FILE_OFFSET_BITS=64 -DWXUSINGDLL -D__WXGTK__  -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/harfbuzz -I/usr/include/fribidi -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/uuid -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/libdrm -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/at-spi-2.0 -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include -pthread   -I/usr/lib/wx/include/ -I/usr/lib/wx/include/gtk3-unicode-3.1 -I/usr/include/wx-3.1 -D_FILE_OFFSET_BITS=64 -DWXUSINGDLL -D__WXGTK__ -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fomit-frame-pointer -march=i586 -mtune=generic -fasynchronous-unwind-tables -Wall -c -o filezilla-aboutdialog.o `test -f 'aboutdialog.cpp' || echo './'`aboutdialog.cpp
aboutdialog.cpp:1:10: fatal error: filezilla.h: No such file or directory
    1 | #include <filezilla.h>
      |          ^~~~~~~~~~~~~
compilation terminated.
make[4]: *** [Makefile:1191: filezilla-aboutdialog.o] Error 1
make[4]: Leaving directory '/home/iurt/rpmbuild/BUILD/filezilla-3.47.0-rc1/src/interface'
make[4]: *** Waiting for unfinished jobs....

If you look at "src/interface/" there are not any "*.h" headers files.

Regards, David

#12114 Update 3.47.0 FileZilla Client Bug report normal FileZilla Client rejected
Description

Norton (antivirus) allowed update today -- then claimed there were "issues" and dispatched entire Filezilla program(!) and won't allow fresh download of Filezilla without (terrifying to me) override. I use Filezilla only occasionally, but rely on it totally. thank you...

#12116 Priority Settings added doesn't work while downloading files. Bug report normal FileZilla Client rejected
Description

Priority Settings added doesn't work while downloading files.

If priority of a one file download is set at highest and another is set at lowest then highest gets downloaded at lesser speed then lowest priority one. This should not happen otherwise there seems no other use for this field

#12118 Minimum requirements jumped 2 os's up Other normal FileZilla Client fixed
Description

I noticed today i cant run the newer version no more. As ive seen others post about the update frequency, it also seemed to be missing minimal requirements in the history.

Last time it showed this was in 2019; 3.43.0-rc1 (2019-06-19) https://filezilla-project.org/versions.php

I dont understand why it made this big jump in a couple months and also why this is nowhere stated?

#12130 AES-256-CBC unsupported for password-protected private keys for SFTP Bug report normal FileZilla Client fixed
Description

FileZilla client appears to have a bug in importing password-protected private keys for SFTP when encrypted with AES-256-CBC. I found no mention in docs re: the intentional exclusion of this cipher combination, plus no error message is returned, which suggests that this may be a bug. There are no relevant log entries or terminal output, even in debug mode. This was tested and confirmed on Linux, Mac OS X and Windows 10.

You can test by importing the following key through Settings > SFTP > Add key file...:


Proc-Type: 4,ENCRYPTED DEK-Info: AES-256-CBC,e2baef8c24ab9008854a80cae86f33ed

WT4xwn5Y4tgKp6qpFYOwJlzE22uJuw7dwbzmGqogC/nLeAOfl3SuUsWuNM5ORYh/ 29YbHN5BqeyiY9ANbz7777/gp5T2PdckdoVbMvFOYlgwq7DbDzrUBEJM3cq1quqe hHqKkcvOAX+XSnSMI4OTzBaN1Qd1V7QP+aFMeSWfzQdq8SHn9lxWqolTdLeYmEOR CFouROSf7YdD/HYx9gOmiNAwVtwZ+oSZY9hHPo7pfJ3DLO0oq+hbjYUexYZxQfUB 5x7ceJbbl+MyNr1n4juAf3e99c8BTTzEZBls7osXo/z+Rnn8qhYC8MfCt1RuFc xxClGlWvs0c2A14+epKwAcZq1aOueNgjKu5G9mQHkv7YmbK3dw60VEKhVh9imUuR oT2yGTOSH0B9B89T2wqz71xbGw0bPfbU9tRxx7oUeLSAVOant3DnAW+dcp2xQHjx r4l3NHy1+mtEpG0siqzLyM48YRam/I0y0dvExlvUuVZGCKazDKweOHvROfNRbL8g BYs8ept2qHj0xItqBLU+h1ikduEa9Pye1xalWW4KkX1D7QfACal3dO8HeM+bbMED SnSZ1Ujg1kvwPp1QrKzYF3DCTIhygtVmjc9THwUkV2qr9EZJwZAinUf+ijvHKmUw /wQCXsD0sDd/uZX4tE0hBgWuH2X/AAnD4tqYFY9aFhta9O37LE8X1PXSHcsDrcN/ Wc9AOlEFymJpohYGXDN3UxCy5W92Ht5w5RrnkYLVOLOhH2QtU5+2QaokUgXQINQ8 VKIgM+luBtnIFlv/jEL73ILUnkWqIpZZRKTKXDDndyYnF3w+47Y+YyK6fczPaf2q lv6LFJoZfK58lNP6XApnwCdwpzXIpE7FljlRlrgFW7y/bJ87lcs2u4uL4KODEBqt xsY0UGxrNuGfVY8OcNXGTSnakPGP4kKitMknu4WKfKU4NwcJ7v9kEwObt1zcpkM5 HM8BOwgnbXdS4CWZGJ5ximCYrPQ17URitvKktQ+FS1l0R5gvCmNhMmUx373VqOG6 K4I890jzvCdXRuTx0/2hbpJHHOqXD6thiTAKOQUOiRrt83iBKOxt0sOlSApxuCr6 3aYv1EbHAJLTnV1TUzg78Yh6GzUGdsoxD3WFjVIsw7EKb+VuCQbTEcu+kaz17U8G mBvoCHDRJAos6TMsJOF8IQHZFyAg7XfFTdTOuIc1zz6E7h+8j9foh9tR2Ct5K6s1 XlkP9kFmu2bqNQu6tkEb14f/S1cCBxoXCVs4ne75Oq/VLp1QO+U54QnabiVlv3H1 /89jGi/Sa/gSnyyCqyO2q65XUQ4GYoLWMurIWIqA8QcBQW3OB4GFvD0K0ilNfQQo Ytt+4xVBsHG+uFb89rnV0gzY94jltUq4CkB33AuzvxBwnGs5pPqrkF7XvhYIyrZR VxEQ2QMBDrHtjOBmO8/ihUDDP/nQTwVOga7gaj2sO7/acsjeZkp0ZxPcpXzXJzr+ xcVPkELhaJjBd+IEysPETk9HppaiA9NeYVm+0XFIHgKaWIRDtXG0mhkttjlssAYU 2amt78Mtt5RnAf+3mfP4O26d2GgfU/os3eTaD0ldO5DEdu+bukoAOl8QVUq6p9Wa


It does not return any error messages, nor any feedback whatsoever. A key encrypted with AES-128-CBC is imported successfully - it reports that it needs to be converted in PPK format, and then asks for a passphrase:


Proc-Type: 4,ENCRYPTED DEK-Info: AES-128-CBC,D05FFBBB1E6D76BBF75EFA96C24A3BD9

loGvARZjfLa2d/DQS3rQHAxdIe4g/UytBR3kdtKO65juYhZP6ntNvKBFbIMOJFZY KPabYyof8zYvQTXEIqAypmAMXU3J6/GISzW3wXe3ZvC/uTaFiTVSXCIRkfk72cOd 6aTAuo5xMXelmbdqwKu0FkrZgAMG7lDumClshTMG47+g7BxHrszr4yo3FkiRs5fN kFSJ+499wAZV0NOThkkQi28H/+6LzQ+5siNErJXkWTNk+G/f72xRfSkT9k5roQ/L ycS91sd8Xvrt1ywtvMvx7K1mta1rvHuqOMmGazsS4jVAo8xPn18KztyZLkyckDFE TpqP8Zji0+n7O+aCJmmWdqWLs4QeiovIlzO6BLXGkGAEf7AsB8qyTbEq9FRGPi7p fC6Ei+7zIquQy75A4H41NXMMoyMgOg0X1j6Mc9Hq/6tWhxrsAYEGygVE6WVG8YAD 01bTYuXf064v/lXPmtXOdbEFcGFgXtQ2OzRVTRvdF4v8uxlsdc0KmeqzuOD6Ux9r N+WDF5wAvab8P/S4zruxOnCqPJwKNTTZ/lFbD93BZqHu+kIvQwKna4oFIzT0Au6J u5+ZqCXSbdMdRO9goiVvGEXfJEGkMZG+GWp+whg/xnMmnUy0h0bLWSB1ERKSUvdA M9H5yCJungXUU1BPQ5h7OiA2b452S+ayMbmin+G3nuqcBQDoPH9kLakXjQCRRCd7 3I6QR7rsDFpkCGgwnEcKLpNteEb19Ce1PDpyXUhFypH2MHbuYRATP0FF++uvvxjf NUOvriQ54pw8jYve8L156DsH6x83xyXM1Q3/3rTjmKbi11qa+WpxTEbSe/Q/GXO5 ebhPWGSUKsnukQi+WMmW99nh2/WyTZpLF8Kc09LfVVHDHRiBZUDNzX3hfpRgaffs yL17jn6UgxVjGOXbQtBIlJs1J2UMg6wC7sClGmNviQNAvzrYxWwS2ewebVK6IB5w x/jLMEz85GuJkHljpml6FuSvVQQmNM8wC6y6NY90veTy38082Yz558RPvJlYRWJb VVHq3kjKjmULAfgSBGFtmh+kJ1YVACwEdzdj71DVDGyagsTiAVNEyvAn+gCOhxV/ umood21YxZyqxSD3MtTTwPAvMqf0LDJws7wTl+fuDd2E43LEXlh2ATyMe4+mvtTF zYYmSJGZeZekdxvyB8B8v0vEEQ7ontfKzloZkibJPq9610R7tQ1HvWmkiNUq9io+ iXUEeTLLL75jbAYpcyzJNIgu+98eeVQkDdkwbYIG4MKNvBv6vafLn0KqnPuo9T71 yRe4Ut0Uxz8kFOD4MLHae62HiL27V6RsntwSnhGDWmA9KgC16SJwqiSzIxjiKnnJ S3pgBSQ7vxMjr3DsKS6f/ZEPlq/Py3UCwjH0hXgI+NnD2WsS5Hfpf9eXOz/FIztq axe4JnzGyDZfb42G47Gll114lVVYUd2PEWUlFRT/OrgETsy/QN0QFbp2hQdWzb3u XxXpu6+yHb/mj+DhnohAN3cLlYxwAeJhTE2RZ2QhJmpFy19EFlmbxsiTxe7Puesu Wb8dxwcCrgoscxjzlCf9k6zNntCpm6al2uEtuEgjdd3KCbEoeSSwu+QO8NbTeO


Passphrase for both keys is test2020.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.