Custom Query (4044 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (2101 - 2200 of 4044)

Ticket Summary Owner Priority Resolution Created Modified
#8275 German umlauts in proxy user password produce error normal fixed 12 years 11 years
Description

Usage of german (öäü) umlauts in proxy user passwords produce an error in FileZilla. If the proxy user password contains such umlauts a "normal" could not connect message is shown.

If the proxy user password doesn't contain umlauts it works normally again.

FileZilla Version: 3.5.3

#8277 Filezilla sftp download is not handling EOF properly normal outdated 11 years 7 years
Description

Filezilla 3.5.3.

When downloading a file using SFTP, the EOF is not handled properly.

Example: downloading a 1564 bytes file.

  • stat: server returns size 1564
  • open
  • read offset 0, len 32768: server returns 1564 data (as expected)

Now starts the stuff I think is not correct:

  • read offset 32768, 32768: server returns EOF (issue 1: offset should be 1564, issue 2: the transfer should stop here)

And now keeps going up to 1 MB:

  • read offset 65536, 32768: server returns EOF
  • read offset 98304, 32768: server returns EOF
  • ...
  • read offset 1048576, 32768: server returns EOF
  • close

About issue 1, I haven't found where's the problem. The offset of the request should always be adjusted to rr->retlen.

About issue 2, checking trunk/src/putty/sftp.c:1259, in xfer_download_gotpkt:

1273 	if ((rr->retlen < 0 && fxp_error_type()==SSH_FX_EOF) || rr->retlen == 0) {
1274 	xfer->eof = TRUE;
1275 	rr->complete = -1;
1276 	#ifdef DEBUG_DOWNLOAD
1277 	printf("setting eof\n");
1278 	#endif
1279 	} else if (rr->retlen < 0) {
1280 	/* some error other than EOF; signal it back to caller */
1281 	xfer_set_error(xfer);
1282 	rr->complete = -1;
1283 	return -1;
1284 	}
1285 	
1286 	rr->complete = 1;

So rr->complete is set to -1 when EOF is detected, but then that it's ignored and set to 1. I believe a return 1 is missing after setting complete to -1.

#8278 File size transferred for large file is way over the original size normal outdated 11 years 11 years
Description

TECHNICAL INFORMATION FTP Server: Windows server 2003 R2 x86 Client operating system: Windows 7 x64 File Zilla: 3.5.3, Build date: 2012-01-08 Server and client filesystem: NTFS Connection: VPN tunnel using native windows client to ISA 2006 server running on Windows 2003 R2 x86 with shared key L2TPipsec connection. FileZilla set to transfer binary file.

FILE INFORMATION File type: VMware vmdk file. Server side size using Windows Explorer: 2,687,200 KB Server side size using Windows 7 native FTP client: 2,751,692,288 Server side using filezilla: 2,751,692,288

TRANSFER INFORMATION: Size of transferred file using filezilla interface: 4,636,080,127 Size of transferred file using Windows cmd: same

DESCRIPTION: The file size is reported correctly by FileZilla. Starting the transfer by dragging the file to the client window correctly starts the transfer. The time of transfer seems to be correctly reported using the file size and the transfer speeed (as displayed). When the progress window reaches the original file size, it reports zero time left. However, the transfter continues and in the case creates a much bigger file.

To me this seems like some kind of bug.

#8293 Message box will crash the icon and menu bar normal rejected 11 years 11 years
Description

I am using 3.5.3 on Windows 7 (32-bit).

Whenever I login a FTP site, the message box will show the system message but it will roll up and crash the icon bar and menu bar, making icon bar and menu bar invisible. If I use a mouse to move over those icons or menu, that part will display the original graphic.

Seems the message box buffer display size is larger than the message box area.

#8295 Crash after entering host containing forward slash normal fixed 11 years 10 years
Description

FileZilla crashes if the entered host contains a forward slash, even it is just the forward slash. This happens no matter whether I use the quickconnect bar, the site manager or the manual transfer dialog.

If the forward slash is part of the protocol prefix it does not crash, so ftp://ftp.mozilla.org works and ftp://ftp.mozilla.org/ crashes.

This happens reproducibly on my desktop computer with FileZilla 3.6.0-rc1. I could not reproduce the crash with FileZilla 3.5.3 or with FileZilla 3.6.0-beta1. My environment is Windows 7 SP1 (32bit) and Windows 8 (64bit) on Intel Pentium D.

However, I could not reproduce the issue on my laptop with Windows XP SP3 on Intel Core 2 Duo.

#8308 PAPERCUT: "copy" button in "Site manager" panel normal fixed 11 years 11 years
Description

LOCATION: "Site manager" dialog box, bottom-right "Copy" button under the left-hand browser panel.

ISSUE: The function performed by "Copy" button is different from the commonly known "copy" function (from Copy/cut/paste set of commands) which might be confusing to users.

In "site manager", "Copy" button performs "make a copy" or "duplicate" function. In contrast, commonly seen "copy" command performs "copy to clipboard" function.

SOLUTION SUGGESTION: Re-labelling the "Copy" button to: "Duplicate"

OPINION: In common English the verb "to copy" actually fits well the function "site manager's" "copy" button performs (i.e. creating a duplicate or a facsimile), right? But unfortunately, this verb entered computer GUI terminology as short for "copy to clipboard". Beh...

#8309 PAPERCUT: Filezilla user Interface's behavior when a file/directory is dragged onto itself. normal fixed 11 years 11 years
Description

ISSUE: Dragging a file or a folder onto itself in local and remote filelists and tree-views results in inconsistent behavior from FileZilla.

a) Behavior when dragging directories in tree views: REMOTE TREE VIEW: Dragging a directory onto itself in remote tree-view: "Message: A directory cannot be dragged into one of its subdirectories." LOCAL TREE VIEW: "Error 13: permission denied" when dragging a system folder and "Error 22: invalid argument" when dragging a "regular" folder.

b) Behavior when dragging directories in filelists: REMOTE FILELIST: Dragging a file onto itself: "Message: Source and target of the drop operation are identical". Dragging a directory onto itself: "Message: A directory cannot be dragged into one of its subdirectories."

LOCAL FILELIST: Dragging a file onto itself: nothing happens (this is expected behavior). Dragging a directory onto itself: "Error 22: invalid argument" or "Error 13: permission denied", depending on permissions.

SOLUTION SUGGESTION: When a file or directory is dragged onto itself error message boxes don't have to appear at all. Dragging a file or a directory onto itself in any situation should not result in any feedback from from FileZilla. i.e. FileZilla should ignore any attempt to drag a file or a directory onto itself.

RATIONALE: I believe that the suggested behavior is common across many windowed platforms that use tree-views and file lists for file management. Dragging a file onto itself can be considered involuntary or accidental action. This kind of accidental action is especially common with users using pen tablets where a click with the pen tip often is accompanied with some dragging motion.

Additionally, removing the message/error boxes would streamline the interaction for the user a little, and also reduce a couple of GUI points that demand translation and maintenance.

#8313 Ver 3.6 upgrade from 3.53 GnuTLS error-15 normal rejected 11 years 10 years
Description

I just upgrade from 3.53 to the current 3.6 Before the upgrade I could connect to one of my ftp sites, after the upgrade with no changes in site manager I get the error below.

This was an issue from 3.52 to 3.53 I believe (which I fixed on my server by a few certificate changes) What do I need to do to fix the below. This gets very tiring when the security scheme keeps changing over and over again.

Status: Resolving address of qedmrf.com Status: Connecting to ipaddress:21... Status: Connection established, waiting for welcome message... Response: 220 Welcome to XXX Technologies FTP service. For authorized users only. Command: AUTH TLS Response: 234 Proceed with negotiation. Status: Initializing TLS... Status: Verifying certificate... Command: USER Fuzeycompany Status: TLS/SSL connection established. Response: 331 Please specify the password. Command: PASS Response: 230 Login successful. Command: SYST Response: 215 UNIX Type: L8 Command: FEAT Response: 211-Features: Response: AUTH SSL Response: AUTH TLS Response: EPRT Response: EPSV Response: MDTM Response: PASV Response: PBSZ Response: PROT Response: REST STREAM Response: SIZE Response: TVFS Response: UTF8 Response: 211 End Command: OPTS UTF8 ON Response: 200 Always in UTF8 mode. Command: PBSZ 0 Response: 200 PBSZ set to 0. Command: PROT P Response: 200 PROT now Private. Status: Connected Status: Retrieving directory listing... Command: PWD Response: 257 "/" Command: TYPE I Response: 200 Switching to Binary mode. Command: PASV Response: 227 Entering Passive Mode (22,22,22,166,195,86) (NOTE ADDRESS IS MUNGED) Command: LIST Response: 150 Here comes the directory listing. Error: GnuTLS error -15: An unexpected TLS packet was received. Error: Disconnected from server: ECONNABORTED - Connection aborted Error: Failed to retrieve directory listing

---and at this point the connection breaks

#8318 Filezilla compression bug during upload normal duplicate 11 years 11 years
Description

Imagine the code:

PHP code PHP code PHP code comment from developer - this line does X PHP code

Filezilla modifies files to this: PHP code PHP code PHP code comment from developer this line does X PHP code

where last PHP code becomes comment! In all the files.

And why do you turn that compression on by default by the way? It doesn't speed up website - it only makes code less readable.

#8319 Filename with ¾ (that's 3/4) in it normal rejected 11 years 11 years
Description

ftp://leginfo.ca.gov/pub/code/gov/66001-67000/66499.11-66499.20¾

Username: anonymous Password: karl@…

This file, with the ¾ (that's 3/4) in the filename, shows in the list of files but won't transfer, at least not in ascii mode. I didn't try any other mode.

My system: P/C with Windows 7, 64 bit version. FileZilla version 3.6.0

#8321 Quick Connect bar obstructed by the panel content below normal duplicate 11 years 11 years
Description

bug at gui when connecting and scrolling log connection, field host, username, and pass are disappear.

#8322 Client cannot connect using Require explicit FTP over TLS normal duplicate 11 years 10 years
Description

CLIENT SIDE:

FileZilla Client


Version: 3.6.0.1

Build information:

Compiled for: i586-pc-mingw32msvc Compiled on: x86_64-unknown-linux-gnu Build date: 2012-11-18 Compiled with: i586-mingw32msvc-gcc (GCC) 4.2.1-sjlj (mingw32-2) Compiler flags: -g -O2 -Wall -g -fexceptions

Linked against:

wxWidgets: 2.8.12 GnuTLS: 3.1.4 SQLite: 3.7.6.2

Operating system:

Name: Windows XP (build 2600, Service Pack 3) Version: 5.1 Platform: 32 bit system

SERVER SIDE:

vsftpd-2.2.2-11.el6.i686 on CentOS 6.3 x86 configured with:

tcp_wrappers=YES pasv_enable=YES ssl_enable=YES force_local_logins_ssl=YES force_local_data_ssl=YES

CLIENT DEBUG LOG: 13:18:36 Trace: CControlSocket::DoClose(64) 13:18:36 Trace: CControlSocket::DoClose(64) 13:18:36 Status: Resolving address of xxx.sk 13:18:36 Status: Connecting to 213.xxx:21... 13:18:36 Status: Connection established, waiting for welcome message... 13:18:36 Trace: CFtpControlSocket::OnReceive() 13:18:36 Response: 220 Welcome to FTP PB service. 13:18:36 Trace: CFtpControlSocket::SendNextCommand() 13:18:36 Command: AUTH TLS 13:18:36 Trace: CFtpControlSocket::OnReceive() 13:18:36 Response: 234 Proceed with negotiation. 13:18:36 Status: Initializing TLS... 13:18:36 Trace: CTlsSocket::Handshake() 13:18:36 Trace: CTlsSocket::ContinueHandshake() 13:18:36 Trace: CTlsSocket::OnSend() 13:18:36 Trace: CTlsSocket::OnRead() 13:18:36 Trace: CTlsSocket::ContinueHandshake() 13:18:37 Trace: CTlsSocket::OnRead() 13:18:37 Trace: CTlsSocket::ContinueHandshake() 13:18:37 Trace: CTlsSocket::Failure(-12, 10053) 13:18:37 Trace: GnuTLS alert 40: Handshake failed 13:18:37 Error: GnuTLS error -12: A TLS fatal alert has been received. 13:18:37 Trace: CRealControlSocket::OnClose(10053) 13:18:37 Trace: CControlSocket::DoClose(64) 13:18:37 Trace: CFtpControlSocket::ResetOperation(66) 13:18:37 Trace: CControlSocket::ResetOperation(66) 13:18:37 Error: Could not connect to server 13:18:37 Trace: CFileZillaEnginePrivate::ResetOperation(66) 13:18:37 Status: Waiting to retry...

SERVER VSFTPD.LOG: Mon Nov 19 14:05:00 2012 [pid 15066] CONNECT: Client "10.10.102.6" Mon Nov 19 14:05:00 2012 [pid 15066] FTP response: Client "10.10.102.6", "220 Welcome to FTP PB service." Mon Nov 19 14:05:00 2012 [pid 15066] FTP command: Client "10.10.102.6", "AUTH TLS" Mon Nov 19 14:05:00 2012 [pid 15066] FTP response: Client "10.10.102.6", "234 Proceed with negotiation." Mon Nov 19 14:05:01 2012 [pid 15066] DEBUG: Client "10.10.102.6", "SSL_accept failed: error:1408A0C1:SSL routines:SSL3_GET_CLIENT_HELLO:no shared cipher"

HISTORY: 3.6.0.1 - does not connect 3.6.0 - worked fine! 3.5.3 - does not connect 3.5.2 (and older) - worked fine!

ADDITIONAL INFO: There was no change in server configuration between trying FileZilla Client 3.6.0 and 3.6.0.1 - I tried 3.6.0 this morning and 3.6.0.1 this afternoon. I have not old VSFTPD.LOG with Client 2.5.3, so I'm not sure if there was same error message "no shared cipher".

#8323 Connection normal rejected 11 years 11 years
Description

I enter FileZilla with Host (ftp.acilballetto.com), my user name (acilballetto) and my password. The answer, after correct user authentication (331 User acilballetto.com OK. Password required) is : 530 Login authentication failed. So I don't have possibility to connect my account. What can I do? Thank you for answer.

#8326 FileZilla cannot transfer files with a leading space! normal outdated 11 years 8 years
Description

I would like to re-open this ticket. http://trac.filezilla-project.org/ticket/5210

Three years ago it is claimed this was a "rejected ticket." And yet the exact same problem still exists.

"To solve this issue, simply upgrade to a modern server supporting the MLSD command o refrain from using leading spaces."

This is not true. Even servers completely up to date still have the problem with leading spaces and files that cannot be transferred. The main question is how come I can log into the same server with ANY OTHER FTP PROGRAM and the file will transfer perfectly. But using FileZilla and the files are displayed incorrectly and the transfer FAILS. I don't think this bug should just be rejected. IT IS A BUG THAT SHOULD BE FIXED!

I'm using version 3.6.0.1 and I don't see how someone can say this isn't really a bug when ALL other programs handle these files perfectly. Why can't FileZilla???

Please someone fix this! It is very annoying finding 50 files with leading spaces and then having to load up another ftp program and transfer each file manually... Thank you to whoever fixed this!!!!!

#8329 PAPERCUT: Updating wizard's "back" button is never active normal fixed 11 years 8 years
Description

LOCATION Updating wizard is accessible via "Main menubar/Help/Check for Updates..."

ISSUE Possible redundancy in user interface. The FileZilla update wizard has a set of Back/Next buttons in the bottom of the wizard dialog box. As far as I can tell, "Back" button is never active. i.e. it is "grayed out" in all the steps of updating process.

SOLUTION SUGGESTION If "back" button really is not accessible at any moment during the updating process, perhaps it should be removed. This would imply another question: Is "wizard" approach to updating is the best one.

NOTE This papercut is present both on WinXP and OSX FileZilla Client versions.

#8334 Real slow normal duplicate 11 years 11 years
Description

Recently, do not know when it really started, I use it daily. Maybe 5 days ago now, I have Filezilla on the task bar which I hit and it always popped right up. Everything on there pops right up. But recenlty, it can take up to 45 seconds for it to start. Any idea what has happen. It does come up, but takes so long to start, you think you didn't hit the icon, so I hit it again. Then I end up with 2 of them. Any idea what is wrong.This is the only program that is slow like this. I tons of memory, 12 gig, 12 CPU cores, should not be doing that. Do I need to reload it. Do not think this is associated with any recent updates.

#8338 Filezilla can't open .php files in External Editor (Dreamweaver)? normal duplicate 11 years 11 years
Description

I recently installed FileZilla on my Windows 7 OS (had previously used it without issue on a Mac) and I am getting the following message when trying to edit .php files with Dreamweaver as an external editor (I am using the latest version of Filezilla (3.6.0.1) and Dreamweaver CS5.5):

The file 'index.php' cannot be opened: The associated program (WX_DDE#"F:\Program Files\Adobe\Adobe Dreamweaver CS5.5\Dreamweaver.exe", "index.php"##System#) could not be found. Please check your filetype associations

(This occurs with ANY .php file not just the index.php that is in the above message)

I did see an unsolved ticket that was opened 3 years ago about the same type of issue.

The only way that I was able to get around this was to do the following:

Go to Edit -> Settings -> Filetype Associations, manually add the following line and click ok:

php "F:\Program Files\Adobe\Adobe Dreamweaver CS5.5\Dreamweaver.exe" -open

I believe this appears to be some sort of bug because as mentioned prior when working with Filezilla on a Mac system (using Dreamweaver CS4) it all works fine and doesn't require this workaround.

#8342 Sin conexion Lorena normal outdated 11 years 11 years
Description

El filezil andaba muy bien hasta q me pidio la actualizacion, lo actualize y no anduvo mas.... necesito un respuesta inmediata ya que es parte de mi trabajo..

#8352 GNU TLS ERROR persists in ver 3.6.0.1 Debug log (4) in line normal duplicate 11 years 10 years
Description

I had hoped this error was fixed in 3.6.0.1 It's now affecting our customers if they make the mistake of updating from 3.5.3

Is there a work around?

Status: Resolving address of qedmrf.com Status: Connecting to 64.39.191.166:21... Status: Connection established, waiting for welcome message... Trace: CFtpControlSocket::OnReceive() Response: 220 Welcome to Technologies FTP service. For authorized users only. Trace: CFtpControlSocket::SendNextCommand() Command: AUTH TLS Trace: CFtpControlSocket::OnReceive() Response: 234 Proceed with negotiation. Status: Initializing TLS... Trace: CTlsSocket::Handshake() Trace: CTlsSocket::ContinueHandshake() Trace: CTlsSocket::OnSend() Trace: CTlsSocket::OnRead() Trace: CTlsSocket::ContinueHandshake() Trace: CTlsSocket::OnRead() Trace: CTlsSocket::ContinueHandshake() Trace: CTlsSocket::OnRead() Trace: CTlsSocket::ContinueHandshake() Trace: TLS Handshake successful Trace: Cipher: AES-256-CBC, MAC: SHA1 Status: Verifying certificate... Trace: CFtpControlSocket::SendNextCommand() Command: USER Fuzh Status: TLS/SSL connection established. Trace: CTlsSocket::OnRead() Trace: CFtpControlSocket::OnReceive() Response: 331 Please specify the password. Trace: CFtpControlSocket::SendNextCommand() Command: PASS Trace: CTlsSocket::OnRead() Trace: CFtpControlSocket::OnReceive() Response: 230 Login successful. Trace: CFtpControlSocket::SendNextCommand() Command: SYST Trace: CTlsSocket::OnRead() Trace: CFtpControlSocket::OnReceive() Response: 215 UNIX Type: L8 Trace: CFtpControlSocket::SendNextCommand() Command: FEAT Trace: CTlsSocket::OnRead() Trace: CFtpControlSocket::OnReceive() Response: 211-Features: Trace: CTlsSocket::OnRead() Trace: CFtpControlSocket::OnReceive() Response: AUTH SSL Response: AUTH TLS Response: EPRT Response: EPSV Trace: CTlsSocket::OnRead() Trace: CFtpControlSocket::OnReceive() Response: MDTM Response: PASV Response: PBSZ Response: PROT Response: REST STREAM Response: SIZE Response: TVFS Response: UTF8 Response: 211 End Trace: CFtpControlSocket::SendNextCommand() Command: OPTS UTF8 ON Trace: CTlsSocket::OnRead() Trace: CFtpControlSocket::OnReceive() Response: 200 Always in UTF8 mode. Trace: CFtpControlSocket::SendNextCommand() Command: PBSZ 0 Trace: CTlsSocket::OnRead() Trace: CFtpControlSocket::OnReceive() Response: 200 PBSZ set to 0. Trace: CFtpControlSocket::SendNextCommand() Command: PROT P Trace: CTlsSocket::OnRead() Trace: CFtpControlSocket::OnReceive() Response: 200 PROT now Private. Status: Connected Trace: CFtpControlSocket::ResetOperation(0) Trace: CControlSocket::ResetOperation(0) Trace: CFileZillaEnginePrivate::ResetOperation(0) Status: Retrieving directory listing... Trace: CFtpControlSocket::SendNextCommand() Trace: CFtpControlSocket::ChangeDirSend() Command: PWD Trace: CTlsSocket::OnRead() Trace: CFtpControlSocket::OnReceive() Response: 257 "/" Trace: CFtpControlSocket::ResetOperation(0) Trace: CControlSocket::ResetOperation(0) Trace: CFtpControlSocket::ParseSubcommandResult(0) Trace: CFtpControlSocket::ListSubcommandResult() Trace: state = 1 Trace: CFtpControlSocket::SendNextCommand() Trace: CFtpControlSocket::TransferSend() Trace: state = 1 Command: TYPE I Trace: CTlsSocket::OnRead() Trace: CFtpControlSocket::OnReceive() Response: 200 Switching to Binary mode. Trace: CFtpControlSocket::TransferParseResponse() Trace: code = 2 Trace: state = 1 Trace: CFtpControlSocket::SendNextCommand() Trace: CFtpControlSocket::TransferSend() Trace: state = 2 Command: PASV Trace: CTlsSocket::OnRead() Trace: CFtpControlSocket::OnReceive() Response: 227 Entering Passive Mode (74,39,191,166,195,85) Trace: CFtpControlSocket::TransferParseResponse() Trace: code = 2 Trace: state = 2 Trace: CFtpControlSocket::SendNextCommand() Trace: CFtpControlSocket::TransferSend() Trace: state = 4 Command: LIST Trace: CTransferSocket::OnConnect Trace: CTlsSocket::Handshake() Trace: Trying to resume existing TLS session. Trace: CTlsSocket::ContinueHandshake() Trace: CTlsSocket::OnSend() Trace: CTlsSocket::OnSend() Trace: CTlsSocket::OnRead() Trace: CTlsSocket::ContinueHandshake() Trace: CTlsSocket::OnRead() Trace: CFtpControlSocket::OnReceive() Response: 150 Here comes the directory listing. Trace: CFtpControlSocket::TransferParseResponse() Trace: code = 1 Trace: state = 4 Trace: CFtpControlSocket::SendNextCommand() Trace: CFtpControlSocket::TransferSend() Trace: state = 5 Trace: CTlsSocket::OnRead() Trace: CTlsSocket::Failure(-15, 10053) HERE'S THE LINE WHERE IT DIES AND THE CONNECTION IS LOST Error: GnuTLS error -15: An unexpected TLS packet was received. Trace: CRealControlSocket::OnClose(10053) Error: Disconnected from server: ECONNABORTED - Connection aborted Trace: CControlSocket::DoClose(64) Trace: CFtpControlSocket::ResetOperation(66) Trace: CControlSocket::ResetOperation(66) Trace: CFtpControlSocket::ResetOperation(66) Trace: CControlSocket::ResetOperation(66) Error: Failed to retrieve directory listing Trace: CFileZillaEnginePrivate::ResetOperation(66)

#8356 Can't connect to Windows Server 2012 (IIS 8) FTP when using FTPES normal fixed 11 years 11 years
Description

Using FileZilla, I cannot connect to any of my Windows Server 2012 machines when using FTPES on IIS 8.

FileZilla 3.6.0.2 debug level 4 log:

Trace:	CControlSocket::DoClose(64)
Trace:	CControlSocket::DoClose(64)
Status:	Resolving address of mysite.mydomain.com
Status:	Connecting to 1.1.1.1:21...
Status:	Connection established, waiting for welcome message...
Trace:	CFtpControlSocket::OnReceive()
Response:	220-Microsoft FTP Service
Trace:	CFtpControlSocket::OnReceive()
Response:	220 MyFtpService
Trace:	CFtpControlSocket::SendNextCommand()
Command:	AUTH TLS
Trace:	CFtpControlSocket::OnReceive()
Response:	234 AUTH command ok. Expecting TLS Negotiation.
Status:	Initializing TLS...
Trace:	CTlsSocket::Handshake()
Trace:	CTlsSocket::ContinueHandshake()
Trace:	CTlsSocket::OnSend()
Trace:	CTlsSocket::OnRead()
Trace:	CTlsSocket::ContinueHandshake()
Trace:	CTlsSocket::OnRead()
Trace:	CTlsSocket::ContinueHandshake()
Trace:	CTlsSocket::Failure(-110, 10053)
Error:	GnuTLS error -110: The TLS connection was non-properly terminated.
Trace:	CTlsSocket::OnSocketEvent(): close event received
Trace:	CRealControlSocket::OnClose(10053)
Trace:	CControlSocket::DoClose(64)
Trace:	CFtpControlSocket::ResetOperation(66)
Trace:	CControlSocket::ResetOperation(66)
Error:	Could not connect to server
Trace:	CFileZillaEnginePrivate::ResetOperation(66)

I have already tried reordering cipher suites as desribed here, but it didn't help: http://blogs.msdn.com/b/kaushal/archive/2011/10/03/taming-the-beast-browser-exploit-against-ssl-tls.aspx

Changing certificates on the FTP site doesn't help as well. I think the error happens before certificate is received.

WS_FTP and some other FTP clients work fine, while WinSCP makes a connection but throws errors on file transfer (something about invalid signature). It did help with file transfers when I prioritized TLS_RSA_WITH_RC4_128_SHA on the server SSL Cipher Suite Order.

It is worth noting that a version of FileZilla from a few weeks ago (I don't know which one exactly) connected fine, but was not able to transfer files (also a lot of errors), exactly what WinSCP does now.

Connecting to my Windows Server 2008 R2 (IIS 7.5) machines works perfectly. FTP sites are configured the same way as they are in the IIS 8 installation.

#8357 Disappearing User Interface When Connecting to the Server normal duplicate 11 years 11 years
Description

Hello,

When connecting to either a single or multiple servers, the user interface above the message log (the toolbar) randomly disappears. In order to get it back, I have to hover my mouse cursor over the toolbar to get individual buttons back.

This only happens with the OpenCrystal theme. With every other theme, this does not happen.

Here is a screenshot of the bug in action:

http://dylricho.com/dump/misc/filezilla-bug.PNG

Dylan. --

FileZilla Client 3.6.0.2 Windows 7 Ultimate x86 + SP1 Intel Celeron M 575 (Merom-2M)

#8366 Missing port in sitemanager.xml makes troubles normal rejected 11 years 7 years
Description

If in the file sitemanager.xml the port missing like "<Port>21</Port>" FileZilla doesn't show the related entry in the server list. I think FileZilla should fill this information automatically with port 21 if it is missing like it is already done with the other configuration values.

#8374 Filezilla will not start/open normal outdated 11 years 7 years
Description

I try to open filezilla through unity in Ubuntu 12.04 and the program doesn't open. I tried several times, looked at system monitor and I see multiple instances open, if I close them all and try again nothing opens.

I tried via command line and it just hangs.

$ filezilla -v FileZilla 3.5.3, compiled on 2012-03-28

#8377 Whole internet onnection breaks down when uploading normal outdated 11 years 11 years
Description

Everytime I am uploading something (joomla in this case) after a certain time (around 1-2 minutes) the whole Internet connection brakes down -> Router is blinking; Windows says that there is a problem with the DNS Server etc. So, then it'll take some time again (up to 10-60(!) minutes, even with a router reset) until the internet connection is working again.

In fact, I copied the corresponding files from my USB stick onto my system hard disc (Desktop) [regarding: http://forum.wdlxtv.com/viewtopic.php?f=3&t=2796] and set an upload limit to 300 KiB/s ... Didn't change anything.

#8381 Transfer - Speed Limits - Enable Checked State Incorrect on Restart normal fixed 11 years 10 years
Description

To reproduce...

  1. Enable speed limits
  2. Exit Client
  3. Restart Client

The menu item is not checked but speed limits are seemingly enabled. Selecting the menu item will not set check on. Selecting the menu item again will set check on.

#8390 "new filter" button renames filter instead of creating a new one. normal outdated 11 years 10 years
Description

BUG: Pressing "New" button in "Edit filters" panel, while a filter is highlighted, renames the filter.

EXPECTED BEHAVIOR: Pressing the "New" button in "Edit filters" panel should create a new filter, instead of renaming the existing one.

DESCRIPTION:

  • Create a new filter and name it.
  • Select it in the chooser to the right so that it is highlighted.
  • Now, click on the "New" button (located just below the chooser).
  • Instead of creating a new filter, FileZilla renames the existing, previously selected filter.
#8392 Authentication failure when using Quest Authentication Services on UNIX normal invalid 11 years 11 years
Description

We use Quest Authentication Services (QAS) on unix to authenticate users. Using filezilla 3.0.6.2 (client) on windows 7. Trying to connect to UNIX HPUX Version 11.31 running Quest Authentican Services for login authentication

#8401 Client crash when open non-English local folder/directory using "Open" in the right-click pop-up context menu normal fixed 11 years 11 years
Description

Client version: 3.6.0.2 Character set for non-Unicode programs: Traditional Chinese - Taiwan (950)

Crash happens when try to open a local folder with non-English path in Windows Explorer, using the "Open" function in the right-click pop-up context menu. Crash happens both in the file pane and the directory pane.

Specifically, crash happens when opening the folder path that contains non-English and not-within-the-default-language characters. For example, when opening the folder path contains Simplified Chinese or Japanese characters, the client crashes. But when opening the folder path contains Traditional Chinese characters, the client does not crash, but still does not open the folder in Windows Explorer.

I tried this bug on two different computers, and both has this problem. Both machines are using Windows 7 Pro SP1 x64.

#8403 Connection timed out normal invalid 11 years 10 years
Description

I have been logging in for year and half no problem - 2 weeks ago connection just sits there and then after a moment says timed out. I had ATT work on it from there end (see below) but still getting the same error timed out messages

have run the ping test from your modem and here are the results.

It is coming back with no errors. I have changed some of your firewall setting on your modem to allow FTP

#8410 Reverting to old version dhzaenglein normal fixed 11 years 11 years
Description

Hello.

Win 7 64-bit OS.

I install Filezilla - latest version - everything seems OK.

Next usage, it's reverted. Latest example - installed 3.6.0.2 yesterday. Today, it's 3.3.5.1 - offering an upgrade to 3.6.0.2.

Help!

Thanks and Regards,

Kerry

#8412 Folder shortcuts are handled incorrectly in local site browser normal outdated 11 years 11 years
Description

In local site browser, when I double click a folder shortcut which is placed on my desktop, the program uploads it to the server instead of opening the related folder in local site browser.

#8414 PAPERCUT: File filter condition "by filesize" does not state which filesize unit is used normal fixed 11 years 11 years
Description

When setting up a filter condition using "filesize" user is allowed to enter a number (e.g. 3). This number represents a filesize, but, unfortunately it is not clear which unit is considered. MB/KB/...?

Moreover, if a user explicitly states the unit in the filter condition's input box (e.g. 3MB) the filter condition fails to validate.

SUGGESTION: Either suggest to user which unit is considered when entering filesize, or allow user to explicitly state or choose the unit.

#8417 Error 550- Can't access file normal rejected 11 years 11 years
Description

Starting upload of D:\ProjectsVSS\ATWPL_B2B\B2B\Flight\SpecialRoundTrip.aspx Status: Retrieving directory listing... Command: PASV Response: 227 Entering Passive Mode (50,22,228,18,25,105) Command: MLSD Response: 150 Connection accepted Response: 226 Transfer OK Command: PASV Response: 227 Entering Passive Mode (50,22,228,18,25,106) Command: STOR SpecialRoundTrip.aspx Response: 150 Connection accepted Response: 550 can't access file. Error: File transfer failed

i am getting error 550 can't access file, In the same folder when I am trying to upload 4 files in the server, one file is uploaded successfully other three are failed.

#8440 GnuTLS error -54: Error in the pull function normal fixed 11 years 10 years
Description

We have a hosting setup where we allow ftp using ftps. On one of our server while connecting over ftp we encounter following error.

This problem has not been encountered on any other server and we have many of them having same ftp setup/configuration.

This problem occurs with version 3.6,3.6.0.2 and 3.6.0.1 on archlinux.but on downgrading to version 3.5.3 there was no such problem.

I also found that one of our user on windows xp using version 3.3.2.1 also encountered this error.

This error was not encountered when using other ftp clients namely fireftp and coreftp.

I also tried downgrading gnutls but it didnt helped the problem persisted.

Status:	Resolving address of ******************
Status:	Connecting to *************:21...
Status:	Connection established, waiting for welcome message...
Trace:	CFtpControlSocket::OnReceive()
Response:	220---------- Welcome to Pure-FTPd [privsep] [TLS] ----------
Response:	220-You are user number 6 of 150 allowed.
Response:	220-Local time is now 12:16. 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 5 minutes of inactivity.
Trace:	CFtpControlSocket::SendNextCommand()
Command:	AUTH TLS
Trace:	CFtpControlSocket::OnReceive()
Response:	234 AUTH TLS OK.
Status:	Initializing TLS...
Trace:	CTlsSocket::Handshake()
Trace:	CTlsSocket::ContinueHandshake()
Trace:	CTlsSocket::OnSend()
Trace:	CTlsSocket::OnRead()
Trace:	CTlsSocket::ContinueHandshake()
Trace:	CTlsSocket::OnRead()
Trace:	CTlsSocket::ContinueHandshake()
Trace:	TLS Handshake successful
Trace:	Cipher: AES-256-CBC, MAC: SHA1
Status:	Verifying certificate...
Trace:	CFtpControlSocket::SendNextCommand()
Command:	USER *******
Status:	TLS/SSL connection established.
Trace:	CTlsSocket::OnRead()
Trace:	CFtpControlSocket::OnReceive()
Response:	331 User migrate OK. Password required
Trace:	CFtpControlSocket::SendNextCommand()
Command:	PASS ************
Trace:	CTlsSocket::OnRead()
Trace:	CFtpControlSocket::OnReceive()
Response:	230 OK. Current restricted directory is /
Status:	Server does not support non-ASCII characters.
Trace:	CFtpControlSocket::SendNextCommand()
Command:	PBSZ 0
Trace:	CTlsSocket::OnRead()
Trace:	CFtpControlSocket::OnReceive()
Response:	200 PBSZ=0
Trace:	CFtpControlSocket::SendNextCommand()
Command:	PROT P
Trace:	CTlsSocket::OnRead()
Trace:	CFtpControlSocket::OnReceive()
Response:	200 Data protection level set to "private"
Status:	Connected
Trace:	CFtpControlSocket::ResetOperation(0)
Trace:	CControlSocket::ResetOperation(0)
Trace:	CFileZillaEnginePrivate::ResetOperation(0)
Trace:	Measured latency of 23 ms
Status:	Retrieving directory listing...
Trace:	CFtpControlSocket::SendNextCommand()
Trace:	CFtpControlSocket::ChangeDirSend()
Command:	PWD
Trace:	CTlsSocket::OnRead()
Trace:	CFtpControlSocket::OnReceive()
Response:	257 "/" is your current location
Trace:	CFtpControlSocket::ResetOperation(0)
Trace:	CControlSocket::ResetOperation(0)
Trace:	CFtpControlSocket::ParseSubcommandResult(0)
Trace:	CFtpControlSocket::ListSubcommandResult()
Trace:	  state = 1
Trace:	CFtpControlSocket::SendNextCommand()
Trace:	CFtpControlSocket::TransferSend()
Trace:	  state = 1
Command:	TYPE I
Trace:	CTlsSocket::OnRead()
Trace:	CFtpControlSocket::OnReceive()
Response:	200 TYPE is now 8-bit binary
Trace:	CFtpControlSocket::TransferParseResponse()
Trace:	  code = 2
Trace:	  state = 1
Trace:	CFtpControlSocket::SendNextCommand()
Trace:	CFtpControlSocket::TransferSend()
Trace:	  state = 2
Command:	PASV
Trace:	CTlsSocket::OnRead()
Trace:	CFtpControlSocket::OnReceive()
Response:	227 Entering Passive Mode (**************,189)
Trace:	CFtpControlSocket::TransferParseResponse()
Trace:	  code = 2
Trace:	  state = 2
Trace:	CFtpControlSocket::SendNextCommand()
Trace:	CFtpControlSocket::TransferSend()
Trace:	  state = 4
Command:	MLSD
Trace:	CTransferSocket::OnConnect
Trace:	CTlsSocket::Handshake()
Trace:	Trying to resume existing TLS session.
Trace:	CTlsSocket::ContinueHandshake()
Trace:	CTlsSocket::OnSend()
Trace:	CTlsSocket::OnSend()
Trace:	CTlsSocket::OnRead()
Trace:	CFtpControlSocket::OnReceive()
Response:	150 Accepted data connection
Trace:	CFtpControlSocket::TransferParseResponse()
Trace:	  code = 1
Trace:	  state = 4
Trace:	CFtpControlSocket::SendNextCommand()
Trace:	CFtpControlSocket::TransferSend()
Trace:	  state = 5
Trace:	CTlsSocket::OnRead()
Trace:	CTlsSocket::ContinueHandshake()
Trace:	CTlsSocket::Failure(-54, 103)
Error:	GnuTLS error -54: Error in the pull function.
Trace:	CTransferSocket::OnClose(103)
Error:	Transfer connection interrupted: ECONNABORTED - Connection aborted
Trace:	CTransferSocket::TransferEnd(3)
Trace:	CFtpControlSocket::TransferEnd()
Trace:	CTlsSocket::OnRead()
Trace:	CTlsSocket::Failure(-110, 103)
Error:	GnuTLS error -110: The TLS connection was non-properly terminated.
Trace:	CRealControlSocket::OnClose(103)
Error:	Disconnected from server: ECONNABORTED - Connection aborted
Trace:	CControlSocket::DoClose(64)
Trace:	CFtpControlSocket::ResetOperation(66)
Trace:	CControlSocket::ResetOperation(66)
Trace:	CFtpControlSocket::ResetOperation(66)
Trace:	CControlSocket::ResetOperation(66)
Error:	Failed to retrieve directory listing
Trace:	CFileZillaEnginePrivate::ResetOperation(66)
Trace:	CControlSocket::DoClose(64)
Trace:	CControlSocket::DoClose(64)
#8441 "Cancel" button is disabled during transfer, "Toggles processing of the transfer queue" button actually cancels the transfer normal rejected 11 years 11 years
Description

I start a file transfer from remote FTP site to local machine, and during the transfer "Toggles processing of the transfer queue" is enabled and "pushed down", and "Cancels the current operation" button is disabled (see attached screenshot). And when I press "Toggles processing..." button, the transfer is actually cancelled.

What I actually expect is "Cancels..." button is enabled and cancels the current/last active transfer.

#8442 Resume creating larger file than the original file normal rejected 11 years 11 years
Description

I have several files sized 734,003,200 bytes (split of a larger file.) If the download is interrupted (by my network changing on my laptop), and the download "resumed", every time the resulting file is larger than the original file. I don't recall the exact size of the resulting file, but it is around 1-10MB more. When the status shows [ > 100% ] and the file is larger than expected, I decide to stop. This happened about 7 times with none being resumed successfully.

FileZilla Client


Version: 3.6.0.2

Build information:

Compiled for: i586-pc-mingw32msvc Compiled on: x86_64-unknown-linux-gnu Build date: 2012-11-29 Compiled with: i586-mingw32msvc-gcc (GCC) 4.2.1-sjlj (mingw32-2) Compiler flags: -g -O2 -Wall -g -fexceptions

Linked against:

wxWidgets: 2.8.12 GnuTLS: 3.1.4 SQLite: 3.7.6.2

Operating system:

Name: Windows NT 6.1 (build 7601, Service Pack 1) Version: 6.1 Platform: 64 bit system

#8458 files with filenames including german characters are not transferred normal outdated 11 years 11 years
Description

Hi, I have found a bug which causes that files with filenames including german characters (i.e. ä, ö, ü, etc.) are not transferred. Is there a solution to it? many thanks

#8459 Client over SFTP, reports upload errors. Some spurious. normal outdated 11 years 11 years
Description

Using client 6.6.02, Win 7 Pro client machine. target machine is Red Hat Enterprise server. SFTP.

Filezilla reports errors when it needs to create a directory. it then creates the dir OK, and then reports errors on a file upload to the new dir. Then uploads file OK later.

The errors appear to be spurious but continally demand cross-checking that files did actually upload. These errors are consistent and completely repeatable. They are not random upload errors as might normally occur. Log excerpt below.

Other FTP clients do not do this in exactly the same situation - same machines, protocol, SFTP user etc.

Other FTP clients do not do this in exactly the same situation - same machines, protocol, SFTP user etc.

All the best folks.

#8465 WSAEADDRNOTAVAIL normal outdated 11 years 11 years
Description

I am try to connect FTP Server but getting following erroe Connection attempt failed with "WSAEADDRNOTAVAIL - Cannot assign requested address".

I am using DataCard for internet connection

#8473 File corruption when transfering file to QNX Neutrino Host normal outdated 11 years 7 years
Description

Hi,

I've found a reproducible issue regarding corruption when transferring files.

How to reproduce:

1) Install FileZilla 3.6.0.2 client on Mac or Windows 7 - both reproduce this issue.

2) Install QNX Neutrino 6.5.0 SP1 OS in a VM or native on an x86 machine. Easiest way is to download the Virtual Machine posted here: http://www.qnx.com/download/group.html?programid=20905.

Once QNX is installed, edit /etc/inetd.conf and uncomment the line of text beginning with "ftp". Then run "inetd" if it is not already running. Also note the IP address.

3) Open FileZilla client and transfer the attached binary file "helloworld" to the FTP server running on the QNX host.

4) Checksum the file (cksum utility) before and after transferring. You'll see that the checksum is different!

5) You can copy the file from QNX back to your machine by tarring the file, e.g. "tar cvf helloworld.tar helloworld" then using FileZilla to transfer the file, or by using any FTP client other than FileZilla to ensure the file doesn't get corrupted a second time. You can then hex dump the files to see the specific differences before and after the corruption.

Notes:

  • I've used other FTP clients before, never seen this problem. For example from a Mac you can use the built in ftp client and there is no corruption.
  • I tried copying the same file to an Ubuntu 10.04 Virtual Machine running vsftpd but the corruption did not occur.
  • I created the helloworld file by writing a C file which prints hello world and compiling using the QNX toolchain. There's got to be other files that reproduce this issue but I haven't found any others yet.
#8483 FileZilla is not disconnecting properly normal outdated 11 years 11 years
Description

I get connection errors when trying to connect. I have set the connection to auto. I found out from my web hosting provider that I have 7-8 connections that are going on simultaenously. It doesn't disconnect properly.

#8504 550 Failed to change directory. normal rejected 11 years 11 years
Description

Hi. Everything seems to be working fine, but I'm getting the "Failed To Retrieve Directory Listing" error for only one particular file. I can't download the file and I can't open it to look at the contents. It's puzzling because out of the hundreds of files I've downloaded, this is the only one that has given me a problem. Here is what I see on the log if this helps:

Command: CWD Fangoria Response: 550 Failed to change directory. Error: Failed to retrieve directory listing Status: Retrieving directory listing... Command: CWD /files Response: 250 Directory successfully changed. Command: CWD Fangoria Response: 550 Failed to change directory. Error: Failed to retrieve directory listing

Any information you may be able to give would be greatly appreciated. Again, it's only ever happened with this one dang file! Thanks, Steve.

#8506 Log in error issues after downloaded newest version of Filezilla normal outdated 11 years 11 years
Description

I d/l the newest version of Filezilla upon the automatic prompt today when I opened Filezilla. Afterwards, I was unable to quick connect. I entered in my user / pw and am still unable to connect. I get a CRITICAL ERROR message.

I admit I am not very FTP savy...but unsure how to proceed. I have my username/pw written down, so I feel I am entering correct information.

#8510 file name error? normal outdated 11 years 11 years
Description

file and directory name are error.

#8513 fz v3.6.02 no sftp with password normal outdated 11 years 11 years
Description

Try ftp connect with username and password - connect will be ok - password is saved within servermanager.

Now choose SFTP from Protokoll and try to connect. You will see connection errors but no connect. Using Filezilla 3.6.02 will not.

Error: Server sent disconnect message Error: type 2 (protocol error):

Using WinSCP will work doing the same thing.

#8514 Can't upload or download files or folders with Ver 3.6.0.2 normal invalid 11 years 11 years
Description

After loading update 3.6.0.2, I can't upload or download files or folders. The update was delivered automatically.

When I right click a file or folder, "Download" and "Add files to queue" are grayed out. Double clicking the file or folder doesn't work either.

This happens on both a Win7 Professional with Service Pack 1 machine and an XP Professional 2002 with Service Pack 3 machine.

#8516 Program causes display driver to crash often during transfer of files. normal duplicate 11 years 10 years
#8517 I cant log onto my filezilla zccount. has been working fine till 2 days ago normal rejected 11 years 11 years
Description

If I try to connect through site manager i get the following errors

Status: Resolving address of heatingnation.net Status: Connecting to 66.96.147.103:80... Status: Connection established, waiting for welcome message... Error: Connection timed out Error: Could not connect to server

if i try to connect through quick connect i get the following errors

Response: 220 Ipage FTP Server ready Command: USER heatingnationnet Response: 331 Password required for heatingnationnet Command: PASS * Response: 530 Login incorrect. Error: Critical error Error: Could not connect to server

#8528 Downloaded files truncated to 1MB normal outdated 11 years 11 years
Description

Every file downloaded from a ftp server (fileapp on iPad) whose size is > 1MB, is truncated to 1MB.

For example a file whose size on ipad is 1.467.023 byte when downloaded is truncated to 1.048.576 byte.

Downloading it with another client (command line on OSX, or explorer on Win7) works well.

The 2 hosts (ipad and ftp client) are on the same ip network (no routing) without any proxy.

Filezilla doesn't display any error message and the transfer is ended succesfully, even if it truncate the file.

Regards Alessandro

#8531 IPv6 address causes error Invalid port given. normal worksforme 11 years 11 years
Description

I entered an IPv6 address into the host block and it gives me the following error: Could not parse server address: Invalid Port given. The port has to be a value from 1 to 65535.

I verified that my address was valid by pinging the address with the -6 switch to force IPv6. Received replies back.

Tried with port blank and set to 21. Get the same results.

Set debug level to 3 but don't see any logs, probably because it never connected.

#8532 IPv6 address causes error Invalid port given. normal duplicate 11 years 11 years
Description

I entered an IPv6 address into the host block and it gives me the following error: Could not parse server address: Invalid Port given. The port has to be a value from 1 to 65535.

I verified that my address was valid by pinging the address with the -6 switch to force IPv6. Received replies back.

Tried with port blank and set to 21. Get the same results.

Set debug level to 3 but don't see any logs, probably because it never connected.

#8539 Filezilla crashes on close normal outdated 11 years 10 years
Description

Hello,

Everytime I close FileZilla, it crashes. I'm currently using the latest version avaible (3.6.0.2).

I think those crashes started around v3.5.

Thanks,

#8540 Filezilla Client accesses redirected directories instead of real ones normal wontfix 11 years 11 years
Description

Try to launch FileZilla Client (without "run as admin") and go to Windows\system32 folder on 64bit system (i.e. Windows 7). List your local files and try to identify aclui.dll. Note the size. Launch cmd.exe as admin and try to dir \windows\system32\aclui.dll. Compare sizes of your files. Now try to dir \windows\syswow64\aclui.dll As you can see Filezilla tells that displays data from system32 and in fact displays the content of syswow64. The application should be 64bit aware and use real folders without redirection. Look at http://msdn.microsoft.com/en-us/library/windows/desktop/aa384187(v=vs.85).aspx for additional info.

#8541 Site Manager not saving SFTP protocols normal rejected 11 years 11 years
Description

Adding profile on Site Manager Host: ftps://ftp.site.com Port: 990 Protocol: SFTP -SSH File

After entering the values and hitting connect on the site manager it connects, but when re pulling the profile up again it saves as Protocol: FTP with no port. If I don't specify ftps:// on the host it fails to connect. If I try adding ftps://ftp.site.com from an imported profile it adds [] around the host and pops a warning "Invalid protocol specified. Value protocols are: ftp: for normal FTP....."

#8548 Port Configuration Issue normal outdated 11 years 11 years
Description

Good morning, I recently downloaded Office 365 to my office computers and now when we try to open an Excel Spreadsheet in the FTP, it comes up blank. I spoke with Office 365 Support and they said that I needed to contact you all because there was an issue with the port configuration. Can you all help me with this? I cannot perform my duties until this is resolved.

#8553 I can not enter my website normal fixed 11 years 11 years
Description

Hi, It accepts the login & password, but then hangs on command MLSD

#8555 Directory name causing listing failure normal outdated 11 years 11 years
Description

Hello,

I'm failing to get a directory listing under special circumstances.

How to Reproduce:

1.) Create a directory named test test test ""d'test test"" test 2.) Place any file into the directory. 3.) Go into the directory and attempt to refresh the listing.

You should be presented with this error:

16:18:49 Command: CWD /test test test """"d'test test"""" test 16:18:49 Response: 550 Failed to change directory. 16:18:49 Error: Failed to retrieve directory listing

#8557 Restricting the number of retries of uploading normal outdated 11 years 11 years
Description

Hello Sir,

I am trying to upload a file through FileZilla Client to customized Apache FTP Server. If the upload fails due to any of the business decisions made on server[connection is not lost], FileZilla client tries to upload the file repeatedly multiple times.

Is there any setting in FileZilla client that can restrict the number of retries to 0 for uploading the file. If the setting is not in FileZilla Client, Could you suggest a way out.

Regards, Gulshan

#8565 Windows 8 OS crash upon transfer of >2GB file normal rejected 11 years 10 years
Description

This issue is 100% reproducible. Windows 8 64-bit will crash during the following conditions.

  1. Have a file larger than 2GB available. (Test file I used was 2.4GB). Be connected to a valid remote FTP site.
  2. Use FileZilla Portable 3.6.0.2.
  3. From the OS (not from the "Local Site" pane in FileZilla), drag the file to the "Remote Site" window.
  4. Watch as the Windows 8 operating system crashes and your computer reboots.

I have attached an example minidump file for analysis.

#8579 Will not "release" from a connection. normal outdated 11 years 11 years
Description

ver. 3.6.0.2 Running Win 7 Ultimate

I have 7 domains spread across 2 IP addresses. If I ftp to one, then go to another to ftp something else, FileZilla will not release from the first connection no matter what I do. The only way I can disconnect from the initial ftp connection is to completely shut FileZilla down, then restart.

#8581 Unable to connect to FileZilla Servers normal outdated 11 years 11 years
Description

Whenever I try to connect to a Server, I get "Connection Timed Out" followed by "Could not connect to the server" errors. Other users in my office do not have this problem. I tried to reinstall the program and this did not help anything.

#8586 open menu command doesn't open folder on left side normal outdated 11 years 11 years
Description

filezilla client v3.6.0.2

in left side folder pane, right-click a folder, choose open, nothing happens.

i expected explorer to open with the folder in a window.

#8591 Cannot connect while using latest Filezilla version 3.6.0.2 normal worksforme 11 years 10 years
Description

I downloaded the latest version of Filezilla and was trying to connect to my site - reemagination.com using the FTP username/pswd provided by the hosting site. I am not able to connect. Here is the log being produced --


Status: Connecting to 74.208.182.70:21... Status: Connection attempt failed with "EACCES - Permission denied". Error: Could not connect to server Status: Waiting to retry... Status: Delaying connection for 1 second due to previously failed connection attempt... Status: Connecting to 74.208.182.70:21... Status: Connection attempt failed with "EACCES - Permission denied". Error: Could not connect to server Status: Resolving address of reemagination Status: Connection attempt failed with "EAI_NODATA - No address associated with nodename". Error: Could not connect to server Status: Waiting to retry... Status: Delaying connection for 1 second due to previously failed connection attempt... Status: Resolving address of reemagination Status: Connection attempt failed with "EAI_NODATA - No address associated with nodename". Error: Could not connect to server Status: Resolving address of www.reemagination.com Status: Connecting to 74.208.182.70:21... Status: Connection attempt failed with "EACCES - Permission denied". Error: Could not connect to server Status: Waiting to retry... Status: Delaying connection for 1 second due to previously failed connection attempt... Status: Resolving address of www.reemagination.com Status: Connecting to 74.208.182.70:21... Status: Connection attempt failed with "EACCES - Permission denied". Error: Could not connect to server Status: Resolving address of reemagination.com Status: Connecting to 74.208.182.70:21... Status: Connection attempt failed with "EACCES - Permission denied". Error: Could not connect to server Status: Waiting to retry... Status: Delaying connection for 1 second due to previously failed connection attempt... Status: Resolving address of reemagination.com Status: Connecting to 74.208.182.70:21... Status: Connection attempt failed with "EACCES - Permission denied". Error: Could not connect to server


On my work computer, I have an older version of Filezilla - 3.5.3 and I tried connecting there with the same username/pswd and it connects just fine. I was even able to upload my updated source code to the site.

Looks like a bug in the new version?

#8594 Cannot Reconnect to last connection normal fixed 11 years 8 years
Description

I try reconnect to my last site Taruhan Bola but always failure, i already to uninstall but keep failed.

my filezilla version 3.6.0.2

#8595 UTF-16 line endings get corrupted by uploading and downloading normal wontfix 11 years 11 years
Description

I uploaded a UTF-16 text file with the following content:

FF FE 48 00 65 00 6C 00 6C 00 6F 00 0D 00 0A 00 57 00 6F 00 72 00 6C 00 64 00

Note the correct BOM for UTF-16 little endian and that every second byte in the text is set to zero.

After downloading it again the content changes like this:

FF FE 48 00 65 00 6C 00 6C 00 6F 00 0D 00 0D 0A 00 57 00 6F 00 72 00 6C 00 64 00

FileZilla transmits the file in text mode and because of that the UTF-16 line ending chars get corrupted to 8 bit ASCII line endings. In this case only 0A 00 got corrupted to 0D 0A 00, because of Windows -> Unix -> Windows.

The file is now 1 byte longer (an odd byte count for UTF-16 files is already invalid) and the content is broken.

Uploading in binary mode avoids this problem, so I suggest that FileZilla detects UTF-16 using BOM or line endings in 0D 00 0A 00 format and uses binary mode for these files by default to avoid corruption.

#8601 Unable to download ± character normal outdated 11 years 10 years
Description

I get an error every time I try to download the ± character. It is not a foreign language, just something I come across often with technical people. Can you please include support for this?

Thank you. I love this program otherwise.

Below are my details:

FileZilla Client


Version: 3.6.0.2 Build information:

Compiled for: i586-pc-mingw32msvc Compiled on: x86_64-unknown-linux-gnu Build date: 2012-11-29 Compiled with: i586-mingw32msvc-gcc (GCC) 4.2.1-sjlj (mingw32-2) Compiler flags: -g -O2 -Wall -g -fexceptions

Linked against:

wxWidgets: 2.8.12 GnuTLS: 3.1.4 SQLite: 3.7.6.2

Operating system:

Name: Windows Server 2003 (build 3790, Service Pack 2) Version: 5.2 Platform: 64 bit system

Status: Connecting to [deleted]... Status: Connection established, waiting for welcome message... Response: 220 (vsFTPd 2.3.4) Command: USER [deleted] Response: 331 Please specify the password. Command: PASS Response: 230 Login successful. Command: SYST Response: 215 UNIX Type: L8 Command: FEAT Response: 211-Features: Response: EPRT Response: EPSV Response: MDTM Response: PASV Response: REST STREAM Response: SIZE Response: TVFS Response: UTF8 Response: 211 End Command: OPTS UTF8 ON Response: 200 Always in UTF8 mode. Status: Connected Status: Retrieving directory listing... Command: PWD Response: 257 "/" Command: TYPE I Response: 200 Switching to Binary mode. Command: PASV Response: 227 Entering Passive Mode ([deleted]) Command: LIST Response: 150 Here comes the directory listing. Response: 226 Directory send OK. Status: Invalid character sequence received, disabling UTF-8. Select UTF-8 option in site manager to force UTF-8. Status: Calculating timezone offset of server... Command: MDTM 524120092A5034A17±pg04.dwg Response: 213 20130408195423 Status: Timezone offsets: Server: 0 seconds. Local: -25200 seconds. Difference: -25200 seconds. Status: Directory listing successful Status: Connecting to [deleted]... Status: Connection established, waiting for welcome message... Response: 220 (vsFTPd 2.3.4) Command: USER [deleted] Response: 331 Please specify the password. Command: PASS Response: 230 Login successful. Command: OPTS UTF8 ON Response: 200 Always in UTF8 mode. Status: Connected Status: Starting download of /524120092A5034A17±pg04.dwg Command: CWD / Response: 250 Directory successfully changed. Command: PWD Response: 257 "/" Command: TYPE I Response: 200 Switching to Binary mode. Command: PASV Response: 227 Entering Passive Mode ([deleted]) Command: RETR 524120092A5034A17±pg04.dwg Response: 550 Failed to open file. Error: Critical file transfer error Status: Disconnected from server

#8607 Out of memory normal outdated 11 years 9 years
Description

When transferring huge amounts of data (Filezilla Client) I get out of memory errors.

I can see in the taskmanager that FZ is using more and more memory. It starts reporting out of memory after slowly climbing from 57.000 kb to 340.000 kb in taskmanager. I am copying around 50 domains with WordPress sites.

It does not make any difference to free up memory by killing processes after FZ has started.

#8620 Queue item cleared anyway when transfer fails due to permission denied on target normal invalid 11 years 11 years
Description

Queue item cleared anyway when transfer fails due to permission denied on target.

The "Critical file transfer error" message is difficult to spot in the log window when transferring a lot of files.

Preferred behaviour would be for item to remain in the queue, with status reflecting the appropriate error, so user can detect this easily.

#8630 Site FTP list is broken in secondary monitor normal outdated 11 years 11 years
Description

The Site FTP list get out of the monitor in my secondary monitor, this happens because the resolution is lower than the primary monitor.

If I move the window to the primary, the list will show just fine.

#8633 Freeze with 2 Servers "Limit number of simultaneous connections" Tim Kosse normal fixed 11 years 10 years
Description

Description:

FileZilla freezes when downloading multiple files with "Limit number of simultaneous connections" set to 1 from two servers when one file finishes.

Steps to reproduce:

  1. Open connections manager
  2. Add an FTP account, set "Limit number of simultaneous connections" to 1
  3. Add another FTP account, set "Limit number of simultaneous connections" to 1
  4. Connect to account 1
  5. Connect to account 2
  6. Start downloading at least two bigger files from server 1
  7. Start a download of at least one file from server 2 (while the queue on server one has at least one download that has not yet started)
  8. As soon as the download from server 1 finishes, FileZilla crashes.
#8647 Problems with downloading files whose names have non-ANSI characters normal invalid 11 years 10 years
Description

I have been downloading music module files from ftp.modland.com. Some of the files there have non-standard names and may be really good for testing. Here are my observations:

  1. FileZilla sometimes can download files with national characters, and sometimes it cannot. I am not sure why the bug is not always reproducible but it seems to depend on the fact if the file is downloaded as the first one, or not. FileZilla seems to set itself to the codepage - but if the codepage is already set, there is no way to download a file except when after restarting the program. Examples: /pub/modules/Fasttracker 2/Walkah/tehdastyöläinen.xm Note ä, ö letters in the name of the file. I would expect that FileZilla behaviour would be more stable or possible to be set manually.
  1. Such files are sometimes downloaded with correct names, and sometimes not. For example: /pub/modules/Ad Lib/AdLib Tracker 2/Nula/gummi björnarna.a2m or gummi björnarna.a2m . I have tried downloading them twice, and I have two versions now.
  1. Yet more serious problems have been spotted with ANSI-named files in non-ANSI named folders. Example: /pub/modules/Fasttracker 2/Roger Skagerström/time files away.xm (note "o umlaut")or /pub/modules/Maniacs Of Noise Old/Johannes Bjerregård/tusker title.xm (note "a ring" that is not even prestnt in Windows 1250 codepage used on my OS in its native version). Such a file is listed as unsuccessful transfer, or the file can be downloaded with no contents (i.e. it is 0 bytes long on my computer). Files like those are not listed as errors, so the only way to find them is to check your disk manually, searching for zero-length files.
  1. Sometimes the FileZilla behaviour is even destructive. I can download the file like in point 2 manually (e.g. with a browser) and place it in the right place in the folder tree on my disk. When I run FileZilla and set it to download only files that differs in length or are newer, then it replace the correct file with a new version of 0 bytes length. In other words, FileZilla works destructively - destroys good files with bad ones. It seems that FileZilla tries to download such files even if they are neither newer nor with different size - and because the downloaded file is 0 bytes long, the program treats it as a different length.
  1. FileZilla is completely helpless with files whose names start from a dot. Examples: "/pub/modules/Fasttracker 2/Walkah/. s e.xm" or even mor bizarre: "/pub/modules/Fasttracker 2/Cosmic Eclipse/. . . - - - . . .xm" - it is good that FileZilla can see this file at all (ex. Mozilla Firefox cannot see them), but it is bad that FileZilla cannot download them under any conditions. To tell the truth, I have no program that would do it. All I can to obtain such strange-named-files is to use mirrors like http://ftp.amigascne.org/cgi-bin/search_archive.cgi - but I would like to download them with FileZilla.
#8662 FZ now won't launch - gives Error code "F4MDamageTitleStr" normal outdated 11 years 11 years
Description

My FZ app had worked for past 4 months, thankyou.

For the last 2 weeks upon attempting to launch it falls over leaving an Error message "F4MDamageTitleStr" followed by "F4MDamageMessageStr".

To try to work around the problem, I have on four occasions:

  1. uninstalled and trashed the original app
  2. downloaded the currently available zip file (FileZilla_3.6.0.2_i686-apple-darwin9.app.tar) from your site
  3. unzipped it
  4. attempted to launch, but
  5. it doesn't. It just displays Error message "F4MDamageTitleStr (followed by) F4MDamageMessageStr" for 10 seconds
  6. sometimes followed by "FZ quit unexpectedly..."

I now don't know whether I was originally using 3.6.0.1 or 3.6.0.2 (and at any rate 3.6.0.1 isn't now available on your web-site). I have since also downloaded the new "FileZilla_3.7.0-rc1_i686-apple-darwin9.app.tar" but it gives me the same problem.

Mac support tell me they can't recognise it as Mac-related and believe it's software related. Can you help please as it was such a good FTP app. Hopeful, Rob

#8672 When trying to view a gif file it opens up in Internet Explorer instead of Windows Picture and fax viewer normal outdated 11 years 10 years
Description

When trying to view a gif file on the server (right hand pane) the file is downloaded and is opened in Internet Explorer not in Windows Picture and Fax viewer like jpg files are. When trying to edit the file type association settings Filezilla does not allow for the correct file location syntax to be typed in.

I am using Filezilla version 3.6.0.2

#8680 FTP doesn't connect to server normal outdated 11 years 11 years
Description

During login procedure I put in 'Domain Name', User Name', 'Password'. Then I press Quickconnect and I get a message "Critical Error" :Could Not Connect To Server". I have updated to the latest version, something like 7.3.0 or whatever. Thanks.

#8685 cannot set permissions to 777 for the folders and files normal rejected 11 years 11 years
Description

I can not understand. Simple command CHMOD in FileZilla doesn't work.

#8697 Beginning and trailing spaces are trimmed from directory names on remote folders normal wontfix 11 years 11 years
Description

If a directory name on a remote server begins or ends with a space, FileZilla appears to trim the space(s) and the user is unable to work with the directory (list contents, rename, etc.)

I have tested and was able to reproduce on Windows, OS X and CentOS 6.4.

To reproduce, create a folder with a name that starts with or ends with a space. Attempt to list the contents of this folder from FileZilla.

The log window reads:

Status: Retrieving directory listing... Command: CWD / Response: 250 Directory successfully changed. Command: CWD Testing with Space Response: 550 Failed to change directory. Error: Failed to retrieve directory listing

#8698 Expansion of connection pane covering toolbars normal duplicate 11 years 11 years
Description

Hi, When connecting to a server, the connection pane expands upwards and causes the quick connect bar and the toolbar above it to disappear, I had hoped the latest version would cure the issue but it has not. I am running 64bit Win7 Pro with FileZilla 3.7.0.1 I have appended a screenshot of a typical instance of the pane overrun upwards. Any suggestions as to how to keep it in order would be appreciated! Many thanks for your help and product. Andy

#8700 Local site is not uploading to remote site normal invalid 11 years 11 years
Description

I have tried many times to upload this new site, hosted by Godaddy.com, www.z27-ss350-1971-Camaro.com. IP address, 50.62.255.1. After two weeks, the site is still not uploaded. Help! Dr. Ron Dalrymple drrondal@…

#8704 dos to unix/linux line endings conversion for SFTP normal duplicate 11 years 11 years
Description

I am using sftp mode and when I transfer a dos text file from Windows to Linux the line endings are not being converted for Linux.

#8708 Greek Directory Names become garbage in Remote Site's directory list (tree view) normal duplicate 11 years 11 years
Description

When displaying a directory list of the remote site, the directories written in Greek initially appear OK, but when clicking on them the directory name in the tree view becomes garbage and a correct copy of the directory name appears again !! (lower in the tree view, I will call this entry "phantom").

When clicking the "phantom" directory entry, the cursor jumps an selects again the garbaged directory name.

In any case the contents of the directory appear correctly (Filename in Greek, size etc).

https://www.dropbox.com/s/3izs065t7xjzq2e/Img.jpg

#8712 difficulty on release resolved normal fixed 11 years 11 years
Description

Main Tips To Make Use Of Adult Dating Web-sites

Alone individuals wrongly assume they are going to stay lonesome for a long time. Without a doubt, for lots of people it's amazingly challenging to find a spouses. Self conscious individuals have got certain emotional difficulties. But, dating online could fix a lot of these difficulties. Of course, no-one assures that you may discover a lover. But, most likely that you may discover someone having the same hobbies and targets. Herein we are going to talk about dating online, its advantages and disadvantages, diverse secrets to look for spouses on the web and so forth.

Thus, let’s start with picking out an excellent relationship web site. You can find a lot of web sites around, for folks having diverse tastes and also targets. As an example, you can find web sites for older persons (there is the delusion that elderly people happen to be bound to stay lonely) or for pupils. To paraphrase, you'll be able to discover sites with the crowd that has the same opinions, interests and so forth. It boosts odds to find the second half.

Web sites might be cost-free. In reality, you can find a lot of cost-free relationship web sites on the web. The vast majority of cost-free web sites are trustworthy. But, lots of relationship web sites don't lots of lots of members. It implies that you may rarely find someone who desires to date you. Everyone knows, at modern day relationship web sites you could search for spouses based on diverse standards: your age, locale, hobbies and so forth. This way, it's preferable to restrict the results and begin talking with your soulmates. You actually would certainly agree that it is preferable to talk to someone that has the same hobbies, adores the same popular music and so forth.

When choosing relationship web sites take note of their particular opinions. Deceitful web sites infrequently have favorable opinions from consumers. On the contrary, fantastic relationship web sites have got outstanding popularity. Furthermore, you may comfortably discover testimonies on the web, thus it's not really a challenge! An excellent relationship web site must have lots of members. It should as well offer a lot of lookup as well as interaction instruments.

Relationship web sites are great as well as individuals which join know very well what they desire. That implies that in the event you located a female who wishes to enjoy long lasting relationships, she actually needs it. That makes clear rise in popularity of dating online. Furthermore, even in the event you aren't seeking long lasting partnerships, you'll be able to nonetheless apply relationship web sites. The vast majority of individuals have got related targets - affairs.

Relationship on the web might be exciting, sure, in the event you tend to be a professional. Listed below are some ideas:

  • don't hook up to lots of individuals. At times it's challenging to make a decision what person is the perfect fit for your needs.
  • do not sign up at web sites with lower than one million consumers. These types of web sites tend to be unsuccessful, and you may not necessarily discover spouses, specifically in the event you live in a tiny town.

Relationship on the web is certainly amazing as you could discover advertising from escort firms and related organizations, for example escort girls ukraine.

#8714 Newer version of Filezilla shows truncated filename. normal invalid 11 years 11 years
Description

Good afternoon,

I am using Filezilla 2.2.27 and looking into a folder containing the filename pay_by_day_KD.pdf. I have a client who is using Filezilla 3.1.3. When they look into the exact same folder, the same file is shown with the filename "PAY_~JVF.PDF"

Do you know what could be causing this discrepancy in the filename between our two versions?

Thanks for your time,

-Scott

#8715 FileZilla Crashes on connecting attempt normal fixed 11 years 11 years
Description

Hello, I am trying to connect to ftpes account. I was previously connecting to it. But I have updated to the latest version recently and the application is crashing when ever I try to connect. It comes to the step Initialising TLS and crashes. Below is the error report:

Process: filezilla [2033] Path: /Applications/FileZilla.app/Contents/MacOS/filezilla Identifier: de.filezilla Version: 3.7.0.2 (3.7.0.2) Code Type: X86 (Native) Parent Process: launchd [235] User ID: 501

Date/Time: 2013-05-30 00:07:32.462 +0530 OS Version: Mac OS X 10.8.3 (12D78) Report Version: 10

Interval Since Last Report: 16520 sec Crashes Since Last Report: 4 Per-App Interval Since Last Report: 824 sec Per-App Crashes Since Last Report: 4 Anonymous UUID: F464DBA8-4864-4DDE-1A37-B312481947A9

Crashed Thread: 0 Dispatch queue: com.apple.main-thread

Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Codes: KERN_INVALID_ADDRESS at 0x00000000fffffff4

VM Regions Near 0xfffffff4: --> shared memory 00000000ffff2000-00000000ffff3000 [ 4K] r-x/r-x SM=SHM

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread 0 de.filezilla 0x004715f3 wxStringBase::operator=(wxStringBase const&) + 35 1 de.filezilla 0x001a984f CCertificate::CCertificate(CCertificate const&) + 175 2 de.filezilla 0x0011c802 CState::SetSecurityInfo(CCertificateNotification const&) + 386 3 de.filezilla 0x00077832 CMainFrame::OnEngineEvent(wxEvent&) + 1154 4 de.filezilla 0x0048d363 wxEvtHandler::ProcessEventIfMatches(wxEventTableEntryBase const&, wxEvtHandler*, wxEvent&) + 131 5 de.filezilla 0x0048dad1 wxEventHashTable::HandleEvent(wxEvent&, wxEvtHandler*) + 113 6 de.filezilla 0x0048de9f wxEvtHandler::ProcessEvent(wxEvent&) + 207 7 de.filezilla 0x0048dd0b wxEvtHandler::ProcessPendingEvents() + 123 8 de.filezilla 0x004223d9 wxAppConsole::ProcessPendingEvents() + 105 9 de.filezilla 0x00487152 wxMacProcessNotifierAndPendingEvents + 34 10 de.filezilla 0x00334042 wxApp::MacHandleOneEvent(void*) + 50 11 de.filezilla 0x0033486b wxApp::MacDoOneEvent() + 123 12 de.filezilla 0x0034c563 wxEventLoop::Dispatch() + 35 13 de.filezilla 0x003bdbb8 wxEventLoopManual::Run() + 136 14 de.filezilla 0x003aa463 wxAppBase::MainLoop() + 83 15 de.filezilla 0x00453290 wxEntry(int&, wchar_t) + 160 16 de.filezilla 0x00036e28 main + 24 17 de.filezilla 0x00002476 start + 54

Thread 1:: Dispatch queue: com.apple.libdispatch-manager 0 libsystem_kernel.dylib 0x9a0719ae kevent + 10 1 libdispatch.dylib 0x97a9dc71 _dispatch_mgr_invoke + 993 2 libdispatch.dylib 0x97a9d7a9 _dispatch_mgr_thread + 53

Thread 2: 0 libsystem_kernel.dylib 0x9a0710ee workq_kernreturn + 10 1 libsystem_c.dylib 0x909920ac _pthread_workq_return + 45 2 libsystem_c.dylib 0x90991e79 _pthread_wqthread + 448 3 libsystem_c.dylib 0x90979d2a start_wqthread + 30

Thread 3: 0 libsystem_kernel.dylib 0x9a0710ee workq_kernreturn + 10 1 libsystem_c.dylib 0x909920ac _pthread_workq_return + 45 2 libsystem_c.dylib 0x90991e79 _pthread_wqthread + 448 3 libsystem_c.dylib 0x90979d2a start_wqthread + 30

Thread 4: 0 libsystem_kernel.dylib 0x9a0710ee workq_kernreturn + 10 1 libsystem_c.dylib 0x909920ac _pthread_workq_return + 45 2 libsystem_c.dylib 0x90991e79 _pthread_wqthread + 448 3 libsystem_c.dylib 0x90979d2a start_wqthread + 30

Thread 5: 0 libsystem_kernel.dylib 0x9a06e826 semaphore_timedwait_trap + 10 1 com.apple.CoreServices.CarbonCore 0x93225810 MPWaitOnSemaphore + 106 2 de.filezilla 0x0048563b wxSemaphoreInternal::WaitTimeout(unsigned long) + 27 3 de.filezilla 0x004856f4 wxSemaphore::Wait() + 36 4 de.filezilla 0x00485a1d wxConditionInternal::Wait() + 45 5 de.filezilla 0x001ce707 CSocketThread::Entry() + 263 6 de.filezilla 0x001d6026 wxThreadExImpl::Entry() + 22 7 de.filezilla 0x00486c60 wxThreadInternal::MacThreadStart(void*) + 96 8 com.apple.CoreServices.CarbonCore 0x93225a7b PrivateMPEntryPoint + 68 9 libsystem_c.dylib 0x9098f5b7 _pthread_start + 344 10 libsystem_c.dylib 0x90979d4e thread_start + 34

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

eax: 0x02e1b2e4 ebx: 0x004715e4 ecx: 0x00000000 edx: 0x005c2f34 edi: 0x02e1b2e4 esi: 0x02e16dd4 ebp: 0xbffff918 esp: 0xbffff8f0

ss: 0x00000023 efl: 0x00210202 eip: 0x004715f3 cs: 0x0000001b ds: 0x00000023 es: 0x00000023 fs: 0x00000000 gs: 0x0000000f

cr2: 0xfffffff4

Logical CPU: 1

Binary Images:

0x1000 - 0x6b2ff3 +de.filezilla (3.7.0.2 - 3.7.0.2) <D3A154DC-66CF-E9C0-77A1-8C24A5498EF8> /Applications/FileZilla.app/Contents/MacOS/filezilla

0x89a000 - 0x9b9ffb com.apple.WebKit (8536 - 8536.28.10) <C181C3FB-91E3-38AB-A709-6B61935B3AD8> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit 0xa6a000 - 0x16fdffb com.apple.WebCore (8536 - 8536.28.10) <AA738A8C-808D-302A-B58D-404C58075C45> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore

0x2a00000 - 0x2abeff3 ColorSyncDeprecated.dylib (400) <35E3054C-5DF1-30D4-A368-C4FDB0992373> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib 0x2b02000 - 0x2b03ffd com.apple.textencoding.unicode (2.5 - 2.5) <4E2ABBEB-1F0D-3C06-BA0C-C3CEDDF17BD2> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings 0x2f78000 - 0x2f85ff3 com.apple.Librarian (1.1 - 1) <68F8F983-5F16-3BA5-BDA7-1A5451CC02BB> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian 0x3cce000 - 0x3cdfff7 com.apple.FCP Uncompressed 422.component (2.0.1 - 5757.41) <B7A08A5D-EEF4-3FCE-B9E4-B3828C5A32FC> /Library/QuickTime/FCP Uncompressed 422.component/Contents/MacOS/FCP Uncompressed 422 0x3ce4000 - 0x3cebffc com.apple.AppleGVAHW.component (1.1 - 1) <5DB91F15-3FD3-308F-8FC5-662562F3EA78> /System/Library/QuickTime/AppleGVAHW.component/Contents/MacOS/AppleGVAHW 0x3fe8000 - 0x3fecfff com.apple.CommonCocoaPanels (4.0 - 16) <7676B15F-69E2-39D2-9F35-9D2959A99079> /System/Library/CoreServices/CommonCocoaPanels.bundle/Contents/MacOS/CommonCocoaPanels 0x96ce000 - 0x96e5ff3 +net.telestream.license (1.1.0.1 -GC - 1.1.0.1 -GC) <4E228E42-930D-3FDF-B1EC-A871594A9BD8> /Library/Frameworks/TSLicense.framework/Versions/A/TSLicense 0xa70a000 - 0xa744fff com.apple.QuickTimeFireWireDV.component (7.7.1 - 2599.24) <1E9A8E7C-A9FD-34FD-AB7C-C3784BAB821F> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTimeFireWireDV 0xa750000 - 0xa861fef +net.telestream.wmv.import (3.2.0.16 - 3.2.0.16) <103E5A8B-B974-3501-B592-354F3BE438EA> /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import 0xa891000 - 0xaa57ffb +net.telestream.wmv.advanced (3.2.0.16 - 3.2.0.16) <4F35D162-7339-31C9-A954-038B56FDEC40> /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced 0xaaa2000 - 0xaad5ff7 com.apple.AppleAVCIntraCodec (2.1 - 6010.16) <DE2D1FF9-DAD0-32A1-A3A1-236E7007FDA1> /Library/QuickTime/AppleAVCIntraCodec.component/Contents/MacOS/AppleAVCIntraCodec 0xaae1000 - 0xab68ff7 com.apple.AppleProResCodec (3.0.3 - 5758.41) <14F2114C-6713-333D-B8A3-8C7FB5E5E066> /Library/QuickTime/AppleProResCodec.component/Contents/MacOS/AppleProResCodec 0xaba7000 - 0xabf0fff com.apple.AppleVAH264HW.component (3.0 - 3.0) <FDF1C720-ED0E-323E-BA44-21423DE18D61> /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH264HW 0xacb4000 - 0xadfffff com.apple.AppleGVAFramework (5.0.6 - 5.0.6) <103CBDDD-E0C2-3B62-923B-AA46F2AB3CD7> /System/Library/PrivateFrameworks/AppleGVA.framework/Versions/A/AppleGVA 0xae1b000 - 0xae58ff3 com.apple.DVCPROHDCodec (2.0.1 - 5708) <A7A316BF-4EC5-366E-AAAE-A3D337FE50C8> /Library/QuickTime/DVCPROHDCodec.component/Contents/MacOS/DVCPROHDCodec 0xae68000 - 0xaf05fff com.apple.AppleHDVCodec (2.0.3 - 5905.97) <24C4772E-1256-39E3-9E56-0223C2FFE080> /Library/QuickTime/AppleHDVCodec.component/Contents/MacOS/AppleHDVCodec 0xaf21000 - 0xaf42fe7 com.apple.AppleIntermediateCodec (2.0.1 - 5718) <A16F6FC6-BC4B-3E05-8340-840D64CE277C> /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleIntermediateCodec 0xaf51000 - 0xaf67ffb com.apple.IMXCodec (2.0.1 - 5708) <BCCDCFDE-527B-3634-ABB9-E8588C91E407> /Library/QuickTime/IMXCodec.component/Contents/MacOS/IMXCodec 0xaf79000 - 0xaf91ff2 com.apple.applepixletvideo (1.2.31 - 1.2d31) <B5622D90-ADF3-3DB2-B64B-5F4AF7C274E3> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixletVideo 0xaf96000 - 0xafa4fff com.apple.iokit.IOHIDLib (1.8.1 - 1.8.1) <21036C5A-1951-38F3-9C86-0CED7F3094B0> /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin/Contents/MacOS/IOHIDLib

0x8fecc000 - 0x8fefee57 dyld (210.2.3) <23DBDBB1-1D21-342C-AC2A-0E55F27E6A1F> /usr/lib/dyld 0x90033000 - 0x90041ff7 libz.1.dylib (43) <245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib 0x90042000 - 0x902beff7 com.apple.QuickTime (7.7.1 - 2599.24) <5B1CA228-A6B3-39DF-A5CC-F981E59DAD1D> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime 0x902c4000 - 0x902c8fff com.apple.IOSurface (86.0.4 - 86.0.4) <6431ACB6-561B-314F-9A2A-FAC1578FCC86> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface 0x902c9000 - 0x90522ff8 com.apple.JavaScriptCore (8536 - 8536.28.10) <B02A662A-7DE6-3C9D-AB08-AA746D48FF2B> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore 0x90523000 - 0x90548ffb com.apple.framework.familycontrols (4.1 - 410) <B1755756-BEA2-3205-ADAA-68FCC32E60BD> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls 0x90549000 - 0x9054bfff libdyld.dylib (210.2.3) <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib 0x9054c000 - 0x9054cfff libkeymgr.dylib (25) <D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib 0x9054d000 - 0x9065aff3 com.apple.ImageIO.framework (3.2.0 - 849) <B34C2380-51F6-38B1-BB6C-C2E5185D90EF> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO 0x90698000 - 0x906a8ff2 com.apple.LangAnalysis (1.7.0 - 1.7.0) <875363E7-6D02-3229-A9DD-E5A5568A7D61> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis 0x906a9000 - 0x90801ffb com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <0D36953C-9897-3E9B-8C70-847E90B203A2> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 0x90802000 - 0x90824fff libc++abi.dylib (26) <3AAA8D55-F5F6-362B-BA3C-CCAF0D3C8E27> /usr/lib/libc++abi.dylib 0x90825000 - 0x9082ffff libsystem_notify.dylib (98.5) <7EEE9475-18F8-3099-B0ED-23A3E528ABE0> /usr/lib/system/libsystem_notify.dylib 0x90830000 - 0x90847ff4 com.apple.CoreMediaAuthoring (2.1 - 914) <8D71DE7D-7F53-3052-9FAF-132CB61BA9F5> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring 0x90856000 - 0x90873fff libCRFSuite.dylib (33) <C9D72D0C-871A-39A2-8AFB-682D11AE7D0D> /usr/lib/libCRFSuite.dylib 0x90874000 - 0x9087fffb com.apple.DirectoryService.Framework (10.8 - 151.10) <234F4A14-60ED-300B-93B2-D5052878558F> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService 0x90880000 - 0x90896fff com.apple.CFOpenDirectory (10.8 - 151.10) <3640B988-F915-3E0D-897C-CB04C95BA601> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory 0x90897000 - 0x90911ff3 com.apple.securityfoundation (6.0 - 55115.4) <8A3DA1FE-1985-3ECB-945A-6B1E853B4BDC> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation 0x9096a000 - 0x90978fff com.apple.opengl (1.8.7 - 1.8.7) <0631EC1D-833B-39D2-A907-A9F7617E5504> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL 0x90979000 - 0x90a36feb libsystem_c.dylib (825.26) <6E35A83F-1A5B-3AF9-8C6D-D7B57B25FB63> /usr/lib/system/libsystem_c.dylib 0x912b5000 - 0x912bbfff com.apple.phonenumbers (1.1 - 47) <DD22B3D1-DA4B-3794-9D73-E90D49A1F88E> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumbers 0x912bc000 - 0x913f7ff7 libBLAS.dylib (1073.4) <FF74A147-05E1-37C4-BC10-7DEB57FE5326> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib 0x913f8000 - 0x913fbffc libpam.2.dylib (20) <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib 0x913fc000 - 0x9144cff7 com.apple.CoreMediaIO (307.0 - 4155) <49D36F54-D414-3745-8194-69FC3B632ED3> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO 0x9144d000 - 0x9144effd libunc.dylib (25) <58599CBF-E262-3CEA-AFE1-35560E0177DC> /usr/lib/system/libunc.dylib 0x9144f000 - 0x914e7fff com.apple.CoreServices.OSServices (557.6 - 557.6) <E1600639-3EEC-3DF8-BD40-747BB2117988> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices 0x914e8000 - 0x917a8ff3 com.apple.security (7.0 - 55179.11) <165A3105-9ADF-329B-93FC-3C8EFAEDDD13> /System/Library/Frameworks/Security.framework/Versions/A/Security 0x917ac000 - 0x917b6fff com.apple.DisplayServicesFW (2.7.2 - 357) <76D33A58-C39E-398A-9597-389A9B1FE76D> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices 0x917b7000 - 0x917b7fff com.apple.CoreServices (57 - 57) <956C6C6D-A5DD-314F-9C57-4A61D41F30CE> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 0x91a2a000 - 0x91a81ff3 com.apple.HIServices (1.20 - 417) <561A770B-8523-3D09-A763-11F872779A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices 0x91a82000 - 0x91ad0ff3 com.apple.SystemConfiguration (1.12.2 - 1.12.2) <6E858B9F-337A-314E-88B7-24A274ACE568> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration 0x91ad1000 - 0x91bde057 libobjc.A.dylib (532.2) <FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib 0x91bdf000 - 0x91c08ff7 libRIP.A.dylib (331.0.4) <FE496AFC-420A-3712-BC79-FC8C63ADB73D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib 0x91c09000 - 0x91c38ff7 com.apple.securityinterface (6.0 - 55024.4) <7C5E28DC-F8BE-3238-883F-E1646A2AF895> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface 0x91c39000 - 0x92056fff FaceCoreLight (2.4.1) <571DE3F8-CA8A-3E71-9AF4-F06FFE721CE6> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight 0x92057000 - 0x92d8ffff com.apple.QuickTimeComponents.component (7.7.1 - 2599.24) <51BE2DF8-7B3B-36F5-8860-50071A8702E4> /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTimeComponents 0x92d90000 - 0x92df6ffc com.apple.ISSupport (1.9.8 - 56) <D2AC4E10-0B3C-3194-AEB7-1E9964CBC0D0> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport 0x92df7000 - 0x92e07ff7 libsasl2.2.dylib (166) <D9080BA2-A365-351E-9FF2-7E0D4E8B1339> /usr/lib/libsasl2.2.dylib 0x92e08000 - 0x92eb7ff7 com.apple.CoreText (260.0 - 275.16) <873ADCD9-D361-3753-A220-CDD289196AD8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText 0x92eb8000 - 0x92ebbffc libCoreVMClient.dylib (32.3) <35B63A60-DF0A-3FB3-ABB8-164B246A43CC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib 0x92ebc000 - 0x92f03ff3 com.apple.CoreMedia (1.0 - 926.87) <713B7213-D695-3162-9852-DBC114C26178> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia 0x92f04000 - 0x92f43ff7 com.apple.bom (12.0 - 192) <0637E52C-D151-37B3-904F-8656B2FD44DD> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom 0x92f44000 - 0x92f48fff com.apple.CommonPanels (1.2.5 - 94) <6B3E7E53-7708-3DA2-8C50-59C2B4735DE1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels 0x92f49000 - 0x93160fff com.apple.CoreData (106.1 - 407.7) <17FD06D6-AD7C-345A-8FA4-1F0FBFF4DAE1> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 0x93161000 - 0x93164ff7 com.apple.TCC (1.0 - 1) <437D76CD-6437-3B55-BE2C-A53508858256> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC 0x93165000 - 0x93168ff7 libcompiler_rt.dylib (30) <CE5DBDB4-0124-3E2B-9105-989DF98DD108> /usr/lib/system/libcompiler_rt.dylib 0x9318f000 - 0x93494ff7 com.apple.CoreServices.CarbonCore (1037.5 - 1037.5) <356AE2DF-ABB0-319C-8B5B-2F33D693889F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore 0x93495000 - 0x93495ffd com.apple.audio.units.AudioUnit (1.8 - 1.8) <D35BA73D-1E56-3A1D-9F9F-971F3BF8C136> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 0x93496000 - 0x934a4fff libxar.1.dylib (105) <343E4A3B-1D04-34A3-94C2-8C7C9A8F736B> /usr/lib/libxar.1.dylib 0x934a5000 - 0x934a6fff libDiagnosticMessagesClient.dylib (8) <39B3D25A-148A-3936-B800-0D393A00E64F> /usr/lib/libDiagnosticMessagesClient.dylib 0x934a7000 - 0x934a7ffe com.apple.AOSMigrate (1.0 - 1) <4EA0829E-6AE5-3877-A5B6-032AFDF28D39> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate 0x934a8000 - 0x934cdff7 com.apple.quartzfilters (1.8.0 - 1.7.0) <F6A88D89-AB4A-3217-9D65-C2C259B5F09B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters 0x934e3000 - 0x934e4fff libsystem_sandbox.dylib (220.2) <61A79095-1978-3AAA-B0E0-658BC8E5F045> /usr/lib/system/libsystem_sandbox.dylib 0x934e5000 - 0x93540fff com.apple.htmlrendering (77 - 1.1.4) <5C0C669F-AE07-3983-B38F-EB829B5CE609> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering 0x93541000 - 0x93548ffe com.apple.agl (3.2.1 - AGL-3.2.1) <D0A9B878-7F1F-3210-B6AF-91D2DBEFF21B> /System/Library/Frameworks/AGL.framework/Versions/A/AGL 0x93553000 - 0x93553fff libsystem_blocks.dylib (59) <3A743C5D-CFA5-37D8-80A8-B6795A9DB04F> /usr/lib/system/libsystem_blocks.dylib 0x93554000 - 0x9355ffff libcommonCrypto.dylib (60027) <8EE30FA5-AA8D-3FA6-AB0F-05DA8B0425D9> /usr/lib/system/libcommonCrypto.dylib 0x93560000 - 0x93567ff3 com.apple.NetFS (5.0 - 4.0) <1F7041F2-4E97-368C-8F5D-24153D81BBDB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS 0x93568000 - 0x935b4fff libcorecrypto.dylib (106.2) <20EBADBA-D6D6-36F0-AE80-168E9AF13DB6> /usr/lib/system/libcorecrypto.dylib 0x935b5000 - 0x935cafff com.apple.ImageCapture (8.0 - 8.0) <B8BD421F-D5A9-3FB4-8E89-AD5CFC0D4030> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture 0x935cb000 - 0x93622ff7 com.apple.ScalableUserInterface (1.0 - 1) <2B5E454B-BC49-3E85-B54D-1950397C448C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterface.framework/Versions/A/ScalableUserInterface 0x93666000 - 0x9375eff9 libsqlite3.dylib (138.1) <AD7C5914-35F0-37A3-9238-A29D2E26C755> /usr/lib/libsqlite3.dylib 0x937a0000 - 0x93804fff com.apple.datadetectorscore (4.1 - 269.2) <B4D53047-C613-32F8-9E08-0154EA81B487> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore 0x93805000 - 0x93807ffc com.apple.QuickTimeH264.component (7.7.1 - 2599.24) <54598D54-DBFC-3EA1-9712-05F4052A79E2> /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264 0x93808000 - 0x93808fff com.apple.quartzframework (1.5 - 1.5) <9018BE5B-4070-320E-8091-6584CC17F798> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz 0x93809000 - 0x93885ff3 com.apple.Metadata (10.7.0 - 707.5) <F2BC2AB4-A87A-3D37-A496-AC21EF3E1244> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata 0x93886000 - 0x93890fff libCSync.A.dylib (331.0.4) <71A7B331-C8A2-322C-AFB0-062EE9C3B848> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib 0x93891000 - 0x938a0fff libGL.dylib (8.7.25) <818E3E6B-9B00-3117-8157-9E95CB59A47B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x938a1000 - 0x939bdffb com.apple.desktopservices (1.7.3 - 1.7.3) <7157C51D-C695-3C9E-B532-F551E7E55B56> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv 0x939be000 - 0x939c2fff com.apple.OpenDirectory (10.8 - 151.10) <A1858D81-086F-3BF5-87E3-9B70409FFDF6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory 0x939c3000 - 0x93a2bfe7 libvDSP.dylib (380.6) <55780308-4DCA-3B10-9703-EAFC3E13A3FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib 0x93a2c000 - 0x93a2effb libRadiance.dylib (849) <EAF7C74F-2A71-3A07-82E1-4FADEAFCF201> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib 0x93a2f000 - 0x93a4dff3 com.apple.openscripting (1.3.6 - 148.3) <F3422C02-5ACB-343A-987B-A2D58EA2F5A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting 0x93a4e000 - 0x93ab2ff3 libstdc++.6.dylib (56) <F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib 0x93ab3000 - 0x9466fff7 com.apple.AppKit (6.8 - 1187.37) <6FBB3467-04F9-395F-8EA8-C84347C5BE43> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x94670000 - 0x94673fff com.apple.help (1.3.2 - 42) <AD7EB1F0-A068-3A2C-9D59-38E59CEC0D96> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help 0x94674000 - 0x946b6ff7 libauto.dylib (185.1) <B2B5B639-6778-352A-828D-FD8B64A3E8B3> /usr/lib/libauto.dylib 0x946b7000 - 0x946d7ffd com.apple.ChunkingLibrary (2.0 - 133.3) <FA45EAE8-BB10-3AEE-9FDC-C0C3A533FF48> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary 0x946d8000 - 0x946e4ff8 libbz2.1.0.dylib (29) <7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib 0x946e5000 - 0x9476dfff com.apple.PDFKit (2.7.3 - 2.7.3) <3E1B3BB0-4137-3C99-9C7D-4B34C8943F22> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit 0x9476e000 - 0x9478dff3 com.apple.Ubiquity (1.2 - 243.15) <E10A2937-D671-3D14-AF8D-BA25E601F458> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity 0x9478e000 - 0x9478efff com.apple.Accelerate (1.8 - Accelerate 1.8) <4EC0548E-3A3F-310D-A366-47B51D5B6398> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate 0x9478f000 - 0x947c2ff5 libssl.0.9.8.dylib (47) <3224FBB3-3074-3022-AD9A-187703680C03> /usr/lib/libssl.0.9.8.dylib 0x94f5f000 - 0x94f69fff com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <B855E8B4-2EE3-3BFF-8547-98A0F084F9AF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition 0x94f6a000 - 0x94fc5ff7 com.apple.AppleVAFramework (5.0.19 - 5.0.19) <3C43A555-0A22-3D7C-A3FB-CFADDDA43E9B> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA 0x94fc6000 - 0x94fcdfff liblaunch.dylib (442.26.2) <310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib 0x94fce000 - 0x9502cff7 com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <953DD669-8C6E-387D-AB3F-D8C8965347DF> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x9502d000 - 0x951b6ff7 com.apple.vImage (6.0 - 6.0) <1D1F67FE-4F75-3689-BEF6-4A46C8039E70> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage 0x951b7000 - 0x95275ff3 com.apple.ColorSync (4.8.0 - 4.8.0) <EFEDCB37-4F20-3CEC-A185-5D2976E11BAC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync 0x95276000 - 0x956b8ff3 com.apple.CoreGraphics (1.600.0 - 331.0.4) <BC041647-FB5A-3D07-A253-F3D34E25BF6C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 0x956b9000 - 0x957d1ff7 com.apple.coreavchd (5.6.0 - 5600.4.16) <F024C78B-4FAA-38F1-A182-AD0A0A596CBE> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD 0x957d2000 - 0x95872ff7 com.apple.QD (3.42 - 285) <1B8307C6-AFA8-312E-BA5B-679070EF2CA1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD 0x95873000 - 0x95ae0ffb com.apple.imageKit (2.2 - 670) <E5D08218-C9FC-32ED-B461-4725B2456404> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit 0x95e5a000 - 0x95e5dff3 com.apple.AppleSystemInfo (2.0 - 2) <4639D755-8A68-31C9-95C4-7E7F70C233FA> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo 0x95e5e000 - 0x95e5efff com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <908B8D40-3FB5-3047-B482-3DF95025ECFC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib 0x95e6a000 - 0x95e6afff libSystem.B.dylib (169.3) <F479E729-89C7-3B4C-9731-678EB673A861> /usr/lib/libSystem.B.dylib 0x95eb1000 - 0x95ebdffe libkxld.dylib (2050.22.13) <ED37AAAA-B1C0-3ADF-A897-3D580A845843> /usr/lib/system/libkxld.dylib 0x95ebe000 - 0x95ec8ffe com.apple.bsd.ServiceManagement (2.0 - 2.0) <9732BA61-D6F6-3644-82DA-FF0D6FEEFC69> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement 0x95fc7000 - 0x95fd0ffe com.apple.aps.framework (3.0 - 3.0) <F4EF9C03-5B1B-3559-A77D-BD1B2D11167E> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService 0x95fd1000 - 0x95fd7fff libGFXShared.dylib (8.7.25) <4268BFAF-4529-3B40-A8B9-66F176AC20CF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib 0x95fd8000 - 0x96073fff com.apple.CoreSymbolication (3.0 - 117) <F705A8CD-A04A-3A84-970A-7B04BC05DA97> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication 0x96074000 - 0x9617fff7 libJP2.dylib (849) <B2D0E844-C390-376C-91D9-F3501B5C7A83> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib 0x96180000 - 0x961b6ffb com.apple.DebugSymbols (98 - 98) <9A9ADA0A-E487-3C8F-9998-286EE04C235A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols 0x961b7000 - 0x961e3ff7 libsystem_info.dylib (406.17) <AA5611DB-A944-3072-B6BE-ACAB08689547> /usr/lib/system/libsystem_info.dylib 0x961e4000 - 0x96219fff libTrueTypeScaler.dylib (84.6) <B7DB746B-7A61-38EF-8CA7-408ED9C14A02> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib 0x96257000 - 0x96575ff3 com.apple.Foundation (6.8 - 945.16) <C4D95341-B4FF-30AC-815A-A23C019C57A3> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x96578000 - 0x965c2ff7 com.apple.framework.CoreWLAN (3.0.2 - 302.12) <1D7CB11D-C28C-3A25-865A-4AD6EE40D493> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN 0x965c3000 - 0x965d6ff9 com.apple.MultitouchSupport.framework (235.29 - 235.29) <451701B6-03CE-3F26-9FF0-92D8DA1467EE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport 0x965d7000 - 0x96630fff com.apple.QuickLookFramework (4.0 - 555.5) <4E381B7B-7EB5-37FD-9BA7-517DB48D07A7> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook 0x96631000 - 0x9663afff com.apple.DiskArbitration (2.5.2 - 2.5.2) <89822A83-B450-3363-8E9C-9B80CB4450B1> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration 0x9663b000 - 0x9669dfff libc++.1.dylib (65.1) <C0CFF9FF-5D52-3EAE-B921-6AE1DA00A135> /usr/lib/libc++.1.dylib 0x9669e000 - 0x9669efff com.apple.ApplicationServices (45 - 45) <677C4ACC-9D12-366F-8A87-B898AC806DD9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices 0x96778000 - 0x96960ffb com.apple.CoreFoundation (6.8 - 744.18) <68AFEE40-0078-347E-9DEE-32CFE0062A10> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x96961000 - 0x96965ffe libcache.dylib (57) <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib 0x96966000 - 0x96967fff liblangid.dylib (116) <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib 0x96968000 - 0x96999fff com.apple.DictionaryServices (1.2 - 184.4) <0D5BE86F-F40A-3E39-8569-19FCA5EDF9D3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices 0x9699a000 - 0x9699effc libGIF.dylib (849) <2F1DE1C6-4779-35A6-8ED5-BBF8ADD5962A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 0x9699f000 - 0x9702bff3 com.apple.CoreAUC (6.16.13 - 6.16.13) <3DCF4456-AF8D-3E87-B00C-C56055AF9B8E> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC 0x9706c000 - 0x97089fff libxpc.dylib (140.42) <1E419D55-C5C1-33FF-B52E-6C7FFBEA5E1F> /usr/lib/system/libxpc.dylib 0x9708a000 - 0x9708bfff libdnsinfo.dylib (453.19) <3B523729-84A8-3D0B-B58C-3FC185060E67> /usr/lib/system/libdnsinfo.dylib 0x97095000 - 0x97251ffd libicucore.A.dylib (491.11.2) <59A23F06-16AD-35F8-BA58-D17305232402> /usr/lib/libicucore.A.dylib 0x97252000 - 0x974f5ff3 com.apple.CoreImage (8.2.4 - 1.0.1) <BA4EE8D7-FE72-3CC3-801F-B69D8A8B426F> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage 0x974f6000 - 0x978d9fff com.apple.HIToolbox (2.0 - 626.1) <ECC3F04F-C4B7-35BF-B10E-183B749DAB92> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox 0x978da000 - 0x97949ffb com.apple.Heimdal (3.0 - 2.0) <964D9952-B0F2-34F6-8265-1823C0D5EAB8> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal 0x979a1000 - 0x979aafff com.apple.CommerceCore (1.0 - 26.1) <8C28115C-6EC1-316D-9237-F4FBCBB778C5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore 0x979ab000 - 0x97a05fff com.apple.ImageCaptureCore (5.0.2 - 5.0.2) <BB0D85EE-A85D-3E7B-B04E-720886553258> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore 0x97a06000 - 0x97a06ffd libOpenScriptingUtil.dylib (148.3) <87895E27-88E2-3249-8D0E-B17E76FB00C1> /usr/lib/libOpenScriptingUtil.dylib 0x97a07000 - 0x97a10ffd com.apple.audio.SoundManager (4.0 - 4.0) <ABC5FE40-B222-36EB-9905-5C8C4BFD8C87> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound 0x97a11000 - 0x97a8aff0 com.apple.CorePDF (2.0 - 2) <6B5BF755-F336-359C-9A99-F006F61442CF> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF 0x97a8b000 - 0x97a98ff7 com.apple.AppleFSCompression (49 - 1.0) <166AA1F8-E50A-3533-A3B5-8737C5118CC3> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression 0x97a99000 - 0x97aabff7 libdispatch.dylib (228.23) <86EF7D45-2D97-3465-A449-95038AE5DABA> /usr/lib/system/libdispatch.dylib 0x97aac000 - 0x97d97ff7 com.apple.AOSKit (1.05 - 152.2) <9FDCE5E4-B68D-38F6-A5DB-D1597D5C4252> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit 0x97d98000 - 0x97d99ffd com.apple.TrustEvaluationAgent (2.0 - 23) <E42347C0-2D3C-36A4-9200-757FFA61B388> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent 0x97d9d000 - 0x97d9efff libquarantine.dylib (52) <D526310F-DC77-37EA-8F5F-83928EFA3262> /usr/lib/system/libquarantine.dylib 0x97d9f000 - 0x97df9fff com.apple.Symbolication (1.3 - 93) <A839CFC2-F870-3652-B353-15A55D88F88D> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication 0x97dfa000 - 0x97dfdff9 libCGXType.A.dylib (331.0.4) <981B13D6-4E8B-3468-92D3-FE436B48C0DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib 0x97dfe000 - 0x97eb5ff3 com.apple.QuickTimeMPEG4.component (7.7.1 - 2599.24) <E79C5B16-E004-33C2-B5C0-17AD66F283E3> /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG4 0x97eb6000 - 0x97eedffa com.apple.LDAPFramework (2.4.28 - 194.5) <B7BAC5B9-ABA9-3799-B8B5-D2DED9383C24> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP 0x97eee000 - 0x97f13ff7 com.apple.CoreVideo (1.8 - 99.4) <A26DE896-32E0-3D5E-BA89-02AD23FA96B3> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo 0x97f14000 - 0x97fc8fff com.apple.coreui (2.0 - 181.1) <C15ABF35-B7F5-34ED-A461-386DAF65D96B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI 0x97fc9000 - 0x98018ff6 libTIFF.dylib (849) <229EBA67-A2D3-30B7-8177-3CA5503360EC> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib 0x98019000 - 0x980fafff libcrypto.0.9.8.dylib (47) <D4EFFCFB-206D-3E3D-ADB5-CBAF04EB8838> /usr/lib/libcrypto.0.9.8.dylib 0x980fb000 - 0x98102fff libsystem_dnssd.dylib (379.37) <49A44FB3-559D-3C7E-AA40-23F5A8E612AC> /usr/lib/system/libsystem_dnssd.dylib 0x98103000 - 0x9814bff5 com.apple.opencl (2.2.18 - 2.2.18) <004A1DE4-49C6-3938-8B54-CD1DC23BDBE5> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL 0x9817d000 - 0x98186ff9 com.apple.CommonAuth (3.0 - 2.0) <34C4768C-EF8D-3DBA-AFB7-09148C8672DB> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth 0x9818b000 - 0x981b4fff libxslt.1.dylib (11.3) <0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib 0x981b5000 - 0x981b7ffd libCVMSPluginSupport.dylib (8.7.25) <C8FC6227-5209-3138-89CD-03CAD11F3EC3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib 0x981b8000 - 0x981d1fff com.apple.Kerberos (2.0 - 1) <9BDE8F4D-DBC3-34D1-852C-898D3655A611> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 0x981d2000 - 0x98565ff3 com.apple.MediaToolbox (1.0 - 926.87) <F3623474-03AD-3A7F-8BD1-46A44A12E74E> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox 0x98604000 - 0x98619fff com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis 0x9861a000 - 0x98718ff7 libFontParser.dylib (84.6) <7D3EB3CC-527E-3A74-816A-59CAFD2260A4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib 0x98765000 - 0x987f7ffb libvMisc.dylib (380.6) <6DA3A03F-20BE-300D-A664-B50A7B4E4B1A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib 0x987f8000 - 0x9883aff7 libcups.2.dylib (327.3) <C7A4A315-FA15-354B-8BC9-BE824C4EFF6D> /usr/lib/libcups.2.dylib 0x9883b000 - 0x9883bfff com.apple.Cocoa (6.7 - 19) <354094F0-F36B-36F9-BF5F-FD60590FBEB9> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa 0x9883c000 - 0x988a4ff7 com.apple.framework.IOKit (2.0.1 - 755.22.5) <F9A70D23-1108-3616-9DE3-6C5730CA7AB2> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x988a5000 - 0x988cfff9 com.apple.framework.Apple80211 (8.3.2 - 832.18.1) <69AD5C5E-14A2-3E2B-AE28-2C7A7E4F5D0A> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211 0x988d0000 - 0x98936fff com.apple.print.framework.PrintCore (8.3 - 387.2) <0F7665F5-33F0-3661-9BE2-7DD2890E304B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore 0x98937000 - 0x9896affb com.apple.GSS (3.0 - 2.0) <9566A96D-C296-3ABD-A12A-E274C81C0B25> /System/Library/Frameworks/GSS.framework/Versions/A/GSS 0x98a0d000 - 0x98b1dff3 com.apple.QuickTimeImporters.component (7.7.1 - 2599.24) <3DBEE5E4-4C40-3390-8405-0D9E271084B2> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTimeImporters 0x98b1e000 - 0x98db8fff com.apple.AddressBook.framework (7.1 - 1169) <AF50144A-A327-3367-81B1-95B3D46E56F0> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook 0x98db9000 - 0x98dc7ff3 libsystem_network.dylib (77.10) <7FBF5A15-97BA-3721-943E-E77F0C40DBE1> /usr/lib/system/libsystem_network.dylib 0x98dc8000 - 0x98f16fff com.apple.CFNetwork (596.3.3 - 596.3.3) <EC7EF37B-B00E-374D-9E8F-E4E22D741059> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x98f17000 - 0x98f1dfff com.apple.print.framework.Print (8.0 - 258) <12AEAD24-6924-3923-9E4A-C5D21231E639> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print 0x98f1e000 - 0x98f9affb libType1Scaler.dylib (101.1) <0D94D786-29F7-33DB-B64B-B264FA5EACD2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libType1Scaler.dylib 0x98f9b000 - 0x98f9bfff com.apple.vecLib (3.8 - vecLib 3.8) <83160DD1-5614-3E34-80EB-97041016EF1F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib 0x98f9c000 - 0x98fb9ff7 libresolv.9.dylib (51) <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib 0x98fba000 - 0x98fd1fff com.apple.GenerationalStorage (1.1 - 132.3) <DD0AA3DB-376D-37F3-AC5B-17AC9B9E0A63> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage 0x98fd2000 - 0x9914aff5 com.apple.QuartzCore (1.8 - 304.2) <FB737C74-C460-32A3-9107-D2112BAE6EBC> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x9914b000 - 0x991f5fff com.apple.LaunchServices (539.7 - 539.7) <AF33EBD3-BC0B-30B5-B7DA-5CCCF12D7EDD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices 0x991f6000 - 0x99223ffb com.apple.CoreServicesInternal (154.2 - 154.2) <DCCF604B-1DB8-3F09-8122-545E2E7F466D> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal 0x99253000 - 0x9928efef libGLImage.dylib (8.7.25) <6C0B2148-032A-3911-AB21-2E07606E3D9A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib 0x99291000 - 0x9937aff7 libxml2.2.dylib (22.3) <015A4FA6-5BB9-3F95-AFB8-B9281E22685B> /usr/lib/libxml2.2.dylib 0x9937b000 - 0x9937bfff com.apple.Carbon (154 - 155) <C0A26E7B-28F1-3C7E-879E-A3CF3ED5111C> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon 0x9937c000 - 0x99395ffb com.apple.frameworks.preferencepanes (15.1 - 15.1) <D788C8BE-5A13-3EA3-93FA-9B5CEEFE249B> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes 0x99396000 - 0x993bafff com.apple.PerformanceAnalysis (1.16 - 16) <18DE0F9F-1264-394D-AC56-6B2A1771DFBE> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis 0x993bb000 - 0x99518ffb com.apple.QTKit (7.7.1 - 2599.24) <39CC892D-2874-33FE-BE30-87FE07D875BD> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit 0x99519000 - 0x9951dff7 libmacho.dylib (829) <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib 0x9951e000 - 0x99520fff com.apple.securityhi (4.0 - 55002) <79E3B880-3AB7-3BF3-9CDF-117A45599545> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI 0x99521000 - 0x99545fff libJPEG.dylib (849) <CD42C17E-6B13-35BE-B585-9AE69CEA534F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib 0x99546000 - 0x9963aff3 com.apple.QuickLookUIFramework (4.0 - 555.5) <5A62C87F-5F74-380B-8B86-8CE3D8788603> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI 0x9963b000 - 0x9967fff7 libGLU.dylib (8.7.25) <0CC1A4D8-C095-3F2B-B55C-FDEBEA0E9CFE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 0x99680000 - 0x99a38ffa libLAPACK.dylib (1073.4) <9A6E5EAD-F2F2-3D5C-B655-2B536DB477F2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib 0x99a39000 - 0x99b2affc libiconv.2.dylib (34) <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib 0x99b2b000 - 0x99c5eff3 com.apple.MediaControlSender (1.7 - 170.20) <7B1AC317-AFDB-394F-8026-9561930E696B> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSender 0x99c5f000 - 0x9a05bfeb com.apple.VideoToolbox (1.0 - 926.87) <D6460276-E1CF-317D-B32F-80EAE916168C> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox 0x9a05c000 - 0x9a076ffc libsystem_kernel.dylib (2050.22.13) <70C520E8-0394-3DFB-823B-FE8C251C169A> /usr/lib/system/libsystem_kernel.dylib 0x9a077000 - 0x9a10eff7 com.apple.ink.framework (10.8.2 - 150) <D90FF7BC-6B90-39F1-AC52-670269947C58> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink 0x9a10f000 - 0x9a110fff libremovefile.dylib (23.2) <9813B2DB-2374-3AA2-99B6-AA2E9897B249> /usr/lib/system/libremovefile.dylib 0x9a111000 - 0x9a196ff7 com.apple.SearchKit (1.4.0 - 1.4.0) <454E950F-291C-3E95-8F35-05CA0AD6B327> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit 0x9a197000 - 0x9a19ffff libcopyfile.dylib (89) <4963541B-0254-371B-B29A-B6806888949B> /usr/lib/system/libcopyfile.dylib 0x9a1a0000 - 0x9a3d0fff com.apple.QuartzComposer (5.1 - 284) <4E8682B7-EBAE-3C40-ABDB-8705EC7952BD> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer 0x9a3d1000 - 0x9a412ff7 com.apple.framework.CoreWiFi (1.2.2 - 122.12) <D9479FFE-2D79-373C-9F73-E746664ACD5C> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi 0x9a413000 - 0x9a461ffb libFontRegistry.dylib (100) <3B8350C2-4D8F-38C4-A22E-2F855D7E83D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib 0x9a464000 - 0x9a4a9ff7 com.apple.NavigationServices (3.7 - 200) <F6531764-6E43-3AF3-ACDD-8A5551EF016A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices 0x9a4aa000 - 0x9a504ffb com.apple.AE (645.6 - 645.6) <44556FF7-A869-399A-AEBB-F4E9263D9152> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE 0x9a505000 - 0x9a5d9ff3 com.apple.backup.framework (1.4.2 - 1.4.2) <0473EB45-E9BF-3C10-B235-A6E2B960A88F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup 0x9a5da000 - 0x9a5ecfff libbsm.0.dylib (32) <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib 0x9a5ed000 - 0x9a622ff7 com.apple.framework.internetaccounts (2.1 - 210) <553BF1E7-B26F-3BE7-BAA9-D80E53E73B0D> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/InternetAccounts 0x9a623000 - 0x9a62affb libunwind.dylib (35.1) <E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib 0x9a62b000 - 0x9a637ffa com.apple.CrashReporterSupport (10.8.3 - 417) <A4A45B14-8992-3739-82BC-3C5E5C2686F9> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport 0x9a63c000 - 0x9a67effb com.apple.RemoteViewServices (2.0 - 80.6) <AE962502-4539-3893-A2EB-9D384652AEAC> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices 0x9a67f000 - 0x9a69bfff libPng.dylib (849) <BF2CB6F5-A2F1-35A4-93F7-ACA6D7F02084> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib 0x9a69c000 - 0x9a6a8ff7 com.apple.NetAuth (4.0 - 4.0) <4983C4B8-9D95-3C4D-897E-07743326487E> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth 0x9a6a9000 - 0x9a6d6ffe libsystem_m.dylib (3022.6) <9975D9C3-3B71-38E3-AA21-C5C5F9D9C431> /usr/lib/system/libsystem_m.dylib 0x9a6d7000 - 0x9a74cff7 com.apple.ApplicationServices.ATS (332 - 341.1) <95206704-F9C9-33C4-AF25-FE9890E160B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS

External Modification Summary:

Calls made by other processes targeting this process:

task_for_pid: 2 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: 1896 thread_create: 2 thread_set_state: 0

VM Region Summary: ReadOnly portion of Libraries: Total=206.0M resident=127.6M(62%) swapped_out_or_unallocated=78.4M(38%) Writable regions: Total=115.6M written=2956K(2%) resident=19.4M(17%) swapped_out=1544K(1%) unallocated=96.2M(83%) REGION TYPE VIRTUAL =========== ======= ATS (font support) 32.9M ATS (font support) (reserved) 4K reserved VM address space (unallocated) CG backing stores 9652K CG raster data 56K CG shared images 1216K CoreServices 2000K IOKit 8K MALLOC 43.8M MALLOC guard page 48K Memory tag=240 4K Memory tag=242 12K Memory tag=249 156K Memory tag=35 2456K Stack 66.5M VM_ALLOCATE 16.2M DATA 11.8M DATA/OBJC 272K IMAGE 528K IMPORT 16K LINKEDIT 39.1M OBJC 2964K OBJC/DATA 48K PAGEZERO 4K TEXT 166.9M UNICODE 544K mapped file 72.0M shared memory 308K =========== ======= TOTAL 469.1M TOTAL, minus reserved VM space 469.1M

Model: MacBookPro8,1, BootROM MBP81.0047.B27, 2 processors, Intel Core i5, 2.4 GHz, 4 GB, SMC 1.68f99 Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353737334448302D4348392020 Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353737334448302D4348392020 AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 (5.106.98.100.16) Bluetooth: Version 4.1.3f3 11349, 2 service, 11 devices, 1 incoming serial ports Network Service: Wi-Fi, AirPort, en1 Serial ATA Device: TOSHIBA MK5065GSXF, 500.11 GB Serial ATA Device: MATSHITADVD-R UJ-8A8 USB Device: hub_device, 0x0424 (SMSC), 0x2513, 0xfa100000 / 3 USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0252, 0xfa120000 / 5 USB Device: BRCM2070 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0xfa110000 / 4 USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821a, 0xfa113000 / 8 USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8509, 0xfa200000 / 2 USB Device: hub_device, 0x0424 (SMSC), 0x2513, 0xfd100000 / 2 USB Device: GT-I9082, 0x04e8 (Samsung Electronics Co., Ltd.), 0x6865, 0xfd120000 / 4 USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd110000 / 3

#8717 Space as first character in file name normal wontfix 11 years 11 years
Description

Filezilla does not seem to be able to handle a file on a remote FTP site that starts with a space as the first character. It displays the file in the listing with the space trimmed off, however any operations (download, delete, rename) fail due to it sending the command with the trimmed version of the filename.

#8720 Dragging files from explorer corrupts them normal outdated 11 years 11 years
Description

When I drag an mp4 video file from windows explorer to the server side of filezilla, it appears to upload fine. However, when I play the file in the website (from the server), it will be corrupted in some parts, sections will skip, audio will cut out, or the image will be visually distorted.

I believe the problem is rooted as described above because:

  • If I refresh the page it always glitches in the exact same way at the exact same time.
  • Then, when I rename the file on my computer and upload it again the same way, then refresh the browser page with the new file linked, the glitch will be different.
  • I discovered that browsing to the file location from within Filezilla (not Windows Explorer) and dragging from filezilla local window to server appears to transfer okay.

This problem happens around 80% of the mp4 files I upload, regardless of how I render them. The files also play fine before uploading.

Thanks

#8732 Fail while retrieving directory listing, failed to parse returned path normal outdated 11 years 11 years
Description

Status: Connecting to 10.14.33.100:21... Status: Connection established, waiting for welcome message... Response: 220 10.14.33.100 pSOSystem FTP server (Network Utilities for /68k-MRI/2.2.5 - Network Utility) ready. Command: USER PHICOMS Response: 331 Password required for PHICOMS. Command: PASS * Response: 230 User PHICOMS logged in. Command: SYST Response: 215 pSOSytem Type: L8 Command: FEAT Response: 500 'FEAT': command not understood. Status: Server does not support non-ASCII characters. Status: Connected Status: Retrieving directory listing... Command: PWD Response: 257 "20.0" Error: Failed to parse returned path. Error: Failed to retrieve directory listing

The last version of FileZilla that worked with this device was 2.2.32

#8734 public_html and public_ftp folders doesn´t appear normal outdated 11 years 11 years
Description

Hi there.

Well, since the last update the folders public_html and public_fpt doesn´t appear in filezilla ftp client. I´ve verified at my server and the folders are there.

I attach pics about it.

Thanks in advise.

#8737 "Overwrite files if size differs or source file is newer" dosen't work well if there are about >2000 file in a folder. normal rejected 11 years 11 years
Description

Steps:

  1. upload a folder with about 2,500 files.
  2. upload the folder again.

first 2,000(approx.) will skip, but the 2,001~2,500 will reupload again...

#8740 cannot reset lost password normal invalid 11 years 11 years
Description

I've been using Filezilla since mouting my website, but have lost my password and cannot reset

#8743 crash when server ssl certificate has expired normal fixed 11 years 11 years
Description

Trying to connect to a server via tls in which the certificate has expired on the server. The app crashes with a crash report. I rolled back to version to 3.7.0.1 and when I connect I get the expected screen informing me that the certificate has expired and asking me if I still want to accept the certificate. Below is the crash log generated by the OS if it is of any help to you.

CRASH LOG: Process: filezilla [29279] Path: /Applications/FileZilla.app/Contents/MacOS/filezilla Identifier: de.filezilla Version: 3.7.0.2 (3.7.0.2) Code Type: X86 (Native) Parent Process: launchd [270] User ID: 501

Date/Time: 2013-06-09 05:25:14.883 -0600 OS Version: Mac OS X 10.8.4 (12E55) Report Version: 10

Interval Since Last Report: 176212 sec Crashes Since Last Report: 3 Per-App Interval Since Last Report: 43 sec Per-App Crashes Since Last Report: 3 Anonymous UUID: 77463DB4-893F-5FF8-589C-03AC232C1860

Crashed Thread: 0 Dispatch queue: com.apple.main-thread

Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Codes: KERN_INVALID_ADDRESS at 0x00000000fffffff4

VM Regions Near 0xfffffff4: --> shared memory 00000000ffffa000-00000000ffffb000 [ 4K] r-x/r-x SM=SHM

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread 0 de.filezilla 0x004715f3 wxStringBase::operator=(wxStringBase const&) + 35 1 de.filezilla 0x001a9861 CCertificate::CCertificate(CCertificate const&) + 193 2 de.filezilla 0x0011c802 CState::SetSecurityInfo(CCertificateNotification const&) + 386 3 de.filezilla 0x00077832 CMainFrame::OnEngineEvent(wxEvent&) + 1154 4 de.filezilla 0x0048d363 wxEvtHandler::ProcessEventIfMatches(wxEventTableEntryBase const&, wxEvtHandler*, wxEvent&) + 131 5 de.filezilla 0x0048dad1 wxEventHashTable::HandleEvent(wxEvent&, wxEvtHandler*) + 113 6 de.filezilla 0x0048de9f wxEvtHandler::ProcessEvent(wxEvent&) + 207 7 de.filezilla 0x0048dd0b wxEvtHandler::ProcessPendingEvents() + 123 8 de.filezilla 0x004223d9 wxAppConsole::ProcessPendingEvents() + 105 9 de.filezilla 0x00487152 wxMacProcessNotifierAndPendingEvents + 34 10 de.filezilla 0x00334042 wxApp::MacHandleOneEvent(void*) + 50 11 de.filezilla 0x0033486b wxApp::MacDoOneEvent() + 123 12 de.filezilla 0x0034c563 wxEventLoop::Dispatch() + 35 13 de.filezilla 0x003bdbb8 wxEventLoopManual::Run() + 136 14 de.filezilla 0x003aa463 wxAppBase::MainLoop() + 83 15 de.filezilla 0x00453290 wxEntry(int&, wchar_t) + 160 16 de.filezilla 0x00036e28 main + 24 17 de.filezilla 0x00002476 start + 54

Thread 1:: Dispatch queue: com.apple.libdispatch-manager 0 libsystem_kernel.dylib 0x954da9ae kevent + 10 1 libdispatch.dylib 0x99bd0c71 _dispatch_mgr_invoke + 993 2 libdispatch.dylib 0x99bd07a9 _dispatch_mgr_thread + 53

Thread 2: 0 libsystem_kernel.dylib 0x954da0ee workq_kernreturn + 10 1 libsystem_c.dylib 0x919310ac _pthread_workq_return + 45 2 libsystem_c.dylib 0x91930e79 _pthread_wqthread + 448 3 libsystem_c.dylib 0x91918d2a start_wqthread + 30

Thread 3: 0 libsystem_kernel.dylib 0x954da0ee workq_kernreturn + 10 1 libsystem_c.dylib 0x919310ac _pthread_workq_return + 45 2 libsystem_c.dylib 0x91930e79 _pthread_wqthread + 448 3 libsystem_c.dylib 0x91918d2a start_wqthread + 30

Thread 4: 0 libsystem_kernel.dylib 0x954da0ee workq_kernreturn + 10 1 libsystem_c.dylib 0x919310ac _pthread_workq_return + 45 2 libsystem_c.dylib 0x91930e79 _pthread_wqthread + 448 3 libsystem_c.dylib 0x91918d2a start_wqthread + 30

Thread 5: 0 libsystem_kernel.dylib 0x954d7826 semaphore_timedwait_trap + 10 1 com.apple.CoreServices.CarbonCore 0x975ea810 MPWaitOnSemaphore + 106 2 de.filezilla 0x0048563b wxSemaphoreInternal::WaitTimeout(unsigned long) + 27 3 de.filezilla 0x004856f4 wxSemaphore::Wait() + 36 4 de.filezilla 0x00485a1d wxConditionInternal::Wait() + 45 5 de.filezilla 0x001ce707 CSocketThread::Entry() + 263 6 de.filezilla 0x001d6026 wxThreadExImpl::Entry() + 22 7 de.filezilla 0x00486c60 wxThreadInternal::MacThreadStart(void*) + 96 8 com.apple.CoreServices.CarbonCore 0x975eaa7b PrivateMPEntryPoint + 68 9 libsystem_c.dylib 0x9192e5b7 _pthread_start + 344 10 libsystem_c.dylib 0x91918d4e thread_start + 34

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

eax: 0x01fe3d48 ebx: 0x004715e4 ecx: 0x00000000 edx: 0x005c2f34 edi: 0x01fe3d48 esi: 0x01fd4b58 ebp: 0xbffff938 esp: 0xbffff910

ss: 0x00000023 efl: 0x00210202 eip: 0x004715f3 cs: 0x0000001b ds: 0x00000023 es: 0x00000023 fs: 0x00000000 gs: 0x0000000f

cr2: 0xfffffff4

Logical CPU: 0

Binary Images:

0x1000 - 0x6b2ff3 +de.filezilla (3.7.0.2 - 3.7.0.2) <D3A154DC-66CF-E9C0-77A1-8C24A5498EF8> /Applications/FileZilla.app/Contents/MacOS/filezilla

0x89a000 - 0x9b9ffb com.apple.WebKit (8536 - 8536.30.1) <4A5E9136-681F-3AB1-AD69-B59F2B9126E7> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit 0xa6a000 - 0x16ffff3 com.apple.WebCore (8536 - 8536.30.2) <D644997F-5F1A-34B4-AF32-DD427E9043E2> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore

0x2a00000 - 0x2abeff3 ColorSyncDeprecated.dylib (400) <35E3054C-5DF1-30D4-A368-C4FDB0992373> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib 0x2b02000 - 0x2b03ffd com.apple.textencoding.unicode (2.5 - 2.5) <4E2ABBEB-1F0D-3C06-BA0C-C3CEDDF17BD2> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings 0x2f9c000 - 0x2fa9ff3 com.apple.Librarian (1.1 - 1) <68F8F983-5F16-3BA5-BDA7-1A5451CC02BB> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian 0x3fe2000 - 0x3fe9ffc com.apple.AppleGVAHW.component (1.1 - 1) <5DB91F15-3FD3-308F-8FC5-662562F3EA78> /System/Library/QuickTime/AppleGVAHW.component/Contents/MacOS/AppleGVAHW 0x3ff0000 - 0x3ff4ff7 com.apple.AppleMPEG2Codec (1.0.2 - 220.1) <08137D06-718F-30B1-8BF3-9498BEAFA5C6> /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec 0xa6c9000 - 0xa703fff com.apple.QuickTimeFireWireDV.component (7.7.1 - 2599.31) <586904D8-4781-392C-9AD5-C9F547E1C65D> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTimeFireWireDV 0xa70f000 - 0xa777feb com.apple.AppleProResDecoder (3.0.2 - 5718) <4442CBCE-7163-3E6A-8511-A52E9F6D8AFC> /System/Library/QuickTime/AppleProResDecoder.component/Contents/MacOS/AppleProResDecoder 0xa7a8000 - 0xa7f1fff com.apple.AppleVAH264HW.component (3.0 - 3.0) <DC2A8842-FDE5-32F8-B2D6-00683394AEE3> /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH264HW 0xa8b5000 - 0xaa00fff com.apple.AppleGVAFramework (5.0.6 - 5.0.6) <103CBDDD-E0C2-3B62-923B-AA46F2AB3CD7> /System/Library/PrivateFrameworks/AppleGVA.framework/Versions/A/AppleGVA 0xaa1c000 - 0xaa3dfff com.apple.AppleIntermediateCodec (2.0.1 - 5718) <6A70694B-21C7-381B-8DE3-CD6490C70A77> /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleIntermediateCodec 0xaa4c000 - 0xaa64ff2 com.apple.applepixletvideo (1.2.31 - 1.2d31) <B5622D90-ADF3-3DB2-B64B-5F4AF7C274E3> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixletVideo 0xaa69000 - 0xaa6dfff com.apple.CommonCocoaPanels (4.0 - 16) <7676B15F-69E2-39D2-9F35-9D2959A99079> /System/Library/CoreServices/CommonCocoaPanels.bundle/Contents/MacOS/CommonCocoaPanels 0xaa73000 - 0xaa81fff com.apple.iokit.IOHIDLib (1.8.1 - 1.8.1) <C47149AC-AE13-37B9-A244-567E644F040A> /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin/Contents/MacOS/IOHIDLib

0x8fe64000 - 0x8fe96e57 dyld (210.2.3) <23516BE4-29BE-350C-91C9-F36E7999F0F1> /usr/lib/dyld 0x900e2000 - 0x900fefff libPng.dylib (850) <26AD967A-D55E-3C5A-A643-D9953136DE58> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib 0x90140000 - 0x90140fff libkeymgr.dylib (25) <D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib 0x90141000 - 0x9018fffb libFontRegistry.dylib (100) <3B8350C2-4D8F-38C4-A22E-2F855D7E83D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib 0x90190000 - 0x9019bfff libcommonCrypto.dylib (60027) <8EE30FA5-AA8D-3FA6-AB0F-05DA8B0425D9> /usr/lib/system/libcommonCrypto.dylib 0x901cd000 - 0x901f2ff7 com.apple.CoreVideo (1.8 - 99.4) <A26DE896-32E0-3D5E-BA89-02AD23FA96B3> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo 0x9020e000 - 0x9022bfff libCRFSuite.dylib (33) <C9D72D0C-871A-39A2-8AFB-682D11AE7D0D> /usr/lib/libCRFSuite.dylib 0x90495000 - 0x904c0ff9 com.apple.framework.Apple80211 (8.4 - 840.22.1) <DBC31BEB-B771-315F-852D-66ADC3BD75A1> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211 0x904c1000 - 0x904c2fff liblangid.dylib (116) <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib 0x904c3000 - 0x9107fff3 com.apple.AppKit (6.8 - 1187.39) <ACA24416-D910-39B8-9387-52A6C6A561F8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x9117e000 - 0x911c0fff libauto.dylib (185.4) <3098A75E-438E-3F18-BAAC-CD8F1CC7C2F7> /usr/lib/libauto.dylib 0x911ed000 - 0x91212ffb com.apple.framework.familycontrols (4.1 - 410) <B1755756-BEA2-3205-ADAA-68FCC32E60BD> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls 0x91213000 - 0x91231ff3 com.apple.openscripting (1.3.6 - 148.3) <F3422C02-5ACB-343A-987B-A2D58EA2F5A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting 0x91232000 - 0x91276ff7 libGLU.dylib (8.9.2) <F33F6C73-7F89-3B5B-A50F-2AB57BBA314D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 0x912a8000 - 0x912bafff libbsm.0.dylib (32) <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib 0x912fb000 - 0x91347fff libcorecrypto.dylib (106.2) <20EBADBA-D6D6-36F0-AE80-168E9AF13DB6> /usr/lib/system/libcorecrypto.dylib 0x91348000 - 0x91349fff libsystem_sandbox.dylib (220.3) <C532F6A6-7E85-38F3-8660-EC1066DF67BE> /usr/lib/system/libsystem_sandbox.dylib 0x9134a000 - 0x91357ff7 com.apple.AppleFSCompression (49 - 1.0) <166AA1F8-E50A-3533-A3B5-8737C5118CC3> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression 0x91364000 - 0x9136efff com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <B855E8B4-2EE3-3BFF-8547-98A0F084F9AF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition 0x9136f000 - 0x9137bffa com.apple.CrashReporterSupport (10.8.3 - 418) <03BC564E-35FE-384E-87D6-6E0C55DF16E3> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport 0x9137c000 - 0x91383ffb libunwind.dylib (35.1) <E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib 0x915f7000 - 0x91917ff3 com.apple.Foundation (6.8 - 945.18) <BDC56A93-45C5-3459-B307-65A1CCE702C5> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x91918000 - 0x919d5feb libsystem_c.dylib (825.26) <6E35A83F-1A5B-3AF9-8C6D-D7B57B25FB63> /usr/lib/system/libsystem_c.dylib 0x919d6000 - 0x919dffff com.apple.DiskArbitration (2.5.2 - 2.5.2) <89822A83-B450-3363-8E9C-9B80CB4450B1> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration 0x919e0000 - 0x919e1fff libDiagnosticMessagesClient.dylib (8) <39B3D25A-148A-3936-B800-0D393A00E64F> /usr/lib/libDiagnosticMessagesClient.dylib 0x919e2000 - 0x91b6bff7 com.apple.vImage (6.0 - 6.0) <1D1F67FE-4F75-3689-BEF6-4A46C8039E70> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage 0x91dda000 - 0x91ddafff com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <908B8D40-3FB5-3047-B482-3DF95025ECFC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib 0x91ddb000 - 0x91de9ff3 libsystem_network.dylib (77.10) <7FBF5A15-97BA-3721-943E-E77F0C40DBE1> /usr/lib/system/libsystem_network.dylib 0x91dea000 - 0x91ee2ff9 libsqlite3.dylib (138.1) <AD7C5914-35F0-37A3-9238-A29D2E26C755> /usr/lib/libsqlite3.dylib 0x91ee3000 - 0x91f83ff7 com.apple.QD (3.42.1 - 285.1) <BAAC13D2-1312-33C0-A255-FAB1D314C324> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD 0x91f84000 - 0x91f87ff7 com.apple.TCC (1.0 - 1) <437D76CD-6437-3B55-BE2C-A53508858256> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC 0x91f88000 - 0x921e1ff5 com.apple.JavaScriptCore (8536 - 8536.30) <24A2ACA7-6E51-30C6-B9AE-17A77E511735> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore 0x921e2000 - 0x921e3fff libquarantine.dylib (52.1) <094A1501-373E-3397-B632-8F7C5AC8EFD5> /usr/lib/system/libquarantine.dylib 0x921e4000 - 0x921f7ff9 com.apple.MultitouchSupport.framework (235.29 - 235.29) <451701B6-03CE-3F26-9FF0-92D8DA1467EE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport 0x921f8000 - 0x92274ffb libType1Scaler.dylib (101.1) <0D94D786-29F7-33DB-B64B-B264FA5EACD2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libType1Scaler.dylib 0x92275000 - 0x92275fff com.apple.Cocoa (6.7 - 19) <354094F0-F36B-36F9-BF5F-FD60590FBEB9> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa 0x92276000 - 0x92280fff libCSync.A.dylib (332) <86C5C84F-11EC-39C0-9FAC-A93FDEEC3117> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib 0x92281000 - 0x922b4ffb com.apple.GSS (3.0 - 2.0) <9566A96D-C296-3ABD-A12A-E274C81C0B25> /System/Library/Frameworks/GSS.framework/Versions/A/GSS 0x922b5000 - 0x9249dffb com.apple.CoreFoundation (6.8 - 744.19) <DDD3AA21-5B5F-3D8F-B137-AD95FCA89064> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x9249e000 - 0x924d4ffb com.apple.DebugSymbols (98 - 98) <9A9ADA0A-E487-3C8F-9998-286EE04C235A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols 0x924d5000 - 0x928d1feb com.apple.VideoToolbox (1.0 - 926.104) <4275B89E-F826-3F65-ACE1-89052A9CAC6B> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox 0x928d2000 - 0x928d2fff libSystem.B.dylib (169.3) <81C58EAB-0E76-3EAB-BDFD-C5A6FE95536F> /usr/lib/libSystem.B.dylib 0x928d3000 - 0x928d4ffd libunc.dylib (25) <58599CBF-E262-3CEA-AFE1-35560E0177DC> /usr/lib/system/libunc.dylib 0x928d5000 - 0x9294fff7 com.apple.securityfoundation (6.0 - 55115.4) <A959B2F5-9D9D-3C93-A62A-7399594CF238> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation 0x92950000 - 0x9295efff libxar.1.dylib (105) <343E4A3B-1D04-34A3-94C2-8C7C9A8F736B> /usr/lib/libxar.1.dylib 0x9295f000 - 0x929b9fff com.apple.Symbolication (1.3 - 93) <684ECF0D-D416-3DF8-8B5B-3902953853A8> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication 0x929fa000 - 0x92c11fff com.apple.CoreData (106.1 - 407.7) <17FD06D6-AD7C-345A-8FA4-1F0FBFF4DAE1> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 0x92c20000 - 0x92c20fff com.apple.ApplicationServices (45 - 45) <677C4ACC-9D12-366F-8A87-B898AC806DD9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices 0x92c21000 - 0x92c31ff2 com.apple.LangAnalysis (1.7.0 - 1.7.0) <875363E7-6D02-3229-A9DD-E5A5568A7D61> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis 0x92c32000 - 0x92c39fff liblaunch.dylib (442.26.2) <310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib 0x92c3a000 - 0x92c3dff7 libcompiler_rt.dylib (30) <CE5DBDB4-0124-3E2B-9105-989DF98DD108> /usr/lib/system/libcompiler_rt.dylib 0x92cd6000 - 0x92ce0ffe com.apple.bsd.ServiceManagement (2.0 - 2.0) <9732BA61-D6F6-3644-82DA-FF0D6FEEFC69> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement 0x92ce1000 - 0x92d3bffb com.apple.AE (645.6 - 645.6) <44556FF7-A869-399A-AEBB-F4E9263D9152> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE 0x92d3c000 - 0x92d51fff com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis 0x92d52000 - 0x92d74fff libc++abi.dylib (26) <3AAA8D55-F5F6-362B-BA3C-CCAF0D3C8E27> /usr/lib/libc++abi.dylib 0x92d75000 - 0x92e33ff3 com.apple.ColorSync (4.8.0 - 4.8.0) <EFEDCB37-4F20-3CEC-A185-5D2976E11BAC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync 0x92e34000 - 0x92e4bff4 com.apple.CoreMediaAuthoring (2.1 - 914) <37C0A2C7-73B3-39BC-8DE1-4A6B75F115FC> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring 0x936ca000 - 0x936fffff libTrueTypeScaler.dylib (84.6) <B7DB746B-7A61-38EF-8CA7-408ED9C14A02> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib 0x93ef4000 - 0x93f36ffb com.apple.RemoteViewServices (2.0 - 80.6) <AE962502-4539-3893-A2EB-9D384652AEAC> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices 0x93f37000 - 0x941b3ff7 com.apple.QuickTime (7.7.1 - 2599.31) <D9571083-873B-3221-A7DF-23BAFC0F3467> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime 0x941b4000 - 0x941c2ff7 libz.1.dylib (43) <245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib 0x9423f000 - 0x9434c057 libobjc.A.dylib (532.2) <FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib 0x9438a000 - 0x94398fff com.apple.opengl (1.8.9 - 1.8.9) <1872D2CD-00A8-30D1-8ECC-B663F4E4C530> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL 0x94399000 - 0x94450ff3 com.apple.QuickTimeMPEG4.component (7.7.1 - 2599.31) <DB1FF52B-C701-3E7D-9751-88B1599981E4> /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG4 0x94451000 - 0x944acff7 com.apple.AppleVAFramework (5.0.19 - 5.0.19) <3C43A555-0A22-3D7C-A3FB-CFADDDA43E9B> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA 0x944ad000 - 0x94511ff3 libstdc++.6.dylib (56) <F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib 0x94512000 - 0x9455aff5 com.apple.opencl (2.2.19 - 2.2.19) <968DD067-49D0-3B71-A96B-B3579698D992> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL 0x9455b000 - 0x9455effc libpam.2.dylib (20) <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib 0x9455f000 - 0x94563ffc libGIF.dylib (850) <45CD8B8F-7324-3187-B01C-8E16C04F33FA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 0x94564000 - 0x946dcff5 com.apple.QuartzCore (1.8 - 304.3) <F2EFC117-CDC6-3252-A4A8-880965764385> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x946dd000 - 0x94980ff3 com.apple.CoreImage (8.4.0 - 1.0.1) <C25B9EEC-4824-3088-BC08-2EA516C0728C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage 0x94981000 - 0x949d0ff6 libTIFF.dylib (850) <78E121A6-92A2-3120-883C-7AA3C2966F9C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib 0x949d7000 - 0x949daffc libCoreVMClient.dylib (32.3) <35B63A60-DF0A-3FB3-ABB8-164B246A43CC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib 0x949db000 - 0x94a36fff com.apple.htmlrendering (77 - 1.1.4) <5C0C669F-AE07-3983-B38F-EB829B5CE609> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering 0x94a6b000 - 0x950f7ff3 com.apple.CoreAUC (6.16.13 - 6.16.13) <3DCF4456-AF8D-3E87-B00C-C56055AF9B8E> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC 0x951ed000 - 0x951edfff com.apple.Accelerate (1.8 - Accelerate 1.8) <4EC0548E-3A3F-310D-A366-47B51D5B6398> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate 0x951ee000 - 0x951f5ff3 com.apple.NetFS (5.0 - 4.0) <1F7041F2-4E97-368C-8F5D-24153D81BBDB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS 0x951f6000 - 0x9521afff libJPEG.dylib (850) <36FEAB05-86C5-33B9-9DE9-5FAD8AEBA15F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib 0x9521b000 - 0x952adffb libvMisc.dylib (380.6) <6DA3A03F-20BE-300D-A664-B50A7B4E4B1A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib 0x953d3000 - 0x954c4ffc libiconv.2.dylib (34) <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib 0x954c5000 - 0x954dfffc libsystem_kernel.dylib (2050.24.15) <9E58DCC0-D5FF-37E1-AA7F-F2206719E138> /usr/lib/system/libsystem_kernel.dylib 0x954e0000 - 0x9550dffe libsystem_m.dylib (3022.6) <9975D9C3-3B71-38E3-AA21-C5C5F9D9C431> /usr/lib/system/libsystem_m.dylib 0x9550e000 - 0x95512ffe libcache.dylib (57) <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib 0x9556d000 - 0x955dcffb com.apple.Heimdal (3.0 - 2.0) <964D9952-B0F2-34F6-8265-1823C0D5EAB8> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal 0x955e0000 - 0x955e7ffe com.apple.agl (3.2.1 - AGL-3.2.1) <8E0411D3-19F7-30E1-92A2-337F7F0EBCDA> /System/Library/Frameworks/AGL.framework/Versions/A/AGL 0x955e8000 - 0x9564efff com.apple.print.framework.PrintCore (8.3 - 387.2) <0F7665F5-33F0-3661-9BE2-7DD2890E304B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore 0x9564f000 - 0x95655fff libGFXShared.dylib (8.9.2) <F3B0E66D-5C47-3A5A-A2CD-F0C58E8322C3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib 0x95656000 - 0x9565afff com.apple.CommonPanels (1.2.5 - 94) <6B3E7E53-7708-3DA2-8C50-59C2B4735DE1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels 0x95927000 - 0x9592afff com.apple.help (1.3.2 - 42) <AD7EB1F0-A068-3A2C-9D59-38E59CEC0D96> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help 0x9592b000 - 0x959b0ff7 com.apple.SearchKit (1.4.0 - 1.4.0) <454E950F-291C-3E95-8F35-05CA0AD6B327> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit 0x959b1000 - 0x95c5fffb com.apple.MediaToolbox (1.0 - 926.104) <DD264DFD-9AFB-38E2-A44C-B463DCB721A0> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox 0x95c60000 - 0x95cb7ff3 com.apple.HIServices (1.20 - 417) <561A770B-8523-3D09-A763-11F872779A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices 0x95cb8000 - 0x95cd8ffd com.apple.ChunkingLibrary (2.0 - 133.3) <FA45EAE8-BB10-3AEE-9FDC-C0C3A533FF48> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary 0x95cd9000 - 0x95d88ff7 com.apple.CoreText (260.0 - 275.16) <873ADCD9-D361-3753-A220-CDD289196AD8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText 0x95d89000 - 0x95e87ff7 libFontParser.dylib (84.6) <7D3EB3CC-527E-3A74-816A-59CAFD2260A4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib 0x95e88000 - 0x95ecfff7 com.apple.framework.CoreWiFi (1.3 - 130.13) <1961CC70-C00D-31DE-BAB5-A077538CD5CB> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi 0x95ed0000 - 0x96003ff3 com.apple.MediaControlSender (1.7 - 170.20) <7B1AC317-AFDB-394F-8026-9561930E696B> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSender 0x96004000 - 0x96010ff8 libbz2.1.0.dylib (29) <7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib 0x9601f000 - 0x9601ffff com.apple.CoreServices (57 - 57) <956C6C6D-A5DD-314F-9C57-4A61D41F30CE> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 0x96020000 - 0x96029ffd com.apple.audio.SoundManager (4.0 - 4.0) <ABC5FE40-B222-36EB-9905-5C8C4BFD8C87> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound 0x9602a000 - 0x96047fff libxpc.dylib (140.43) <C628073D-51A0-3541-A665-1121520508C6> /usr/lib/system/libxpc.dylib 0x96048000 - 0x9604cfff com.apple.OpenDirectory (10.8 - 151.10) <A1858D81-086F-3BF5-87E3-9B70409FFDF6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory 0x96067000 - 0x9611bfff com.apple.coreui (2.0 - 181.1) <C15ABF35-B7F5-34ED-A461-386DAF65D96B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI 0x9611c000 - 0x9611dfff libdnsinfo.dylib (453.19) <3B523729-84A8-3D0B-B58C-3FC185060E67> /usr/lib/system/libdnsinfo.dylib 0x96122000 - 0x96186ff7 com.apple.datadetectorscore (4.1 - 269.3) <C11C2014-298E-3E2B-9F5D-02CCD3CA4AB3> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore 0x96187000 - 0x9618bff7 libmacho.dylib (829) <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib 0x9618c000 - 0x9656ffff com.apple.HIToolbox (2.0 - 626.1) <ECC3F04F-C4B7-35BF-B10E-183B749DAB92> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox 0x96570000 - 0x96573ff9 libCGXType.A.dylib (332) <07B59FCC-6229-37C2-9870-70A18E2C5598> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib 0x96574000 - 0x96574fff com.apple.Carbon (154 - 155) <604ADD9D-5835-3294-842E-3A4AEBCCB548> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon 0x965dc000 - 0x966e7ff7 libJP2.dylib (850) <3FFCEFA6-317A-34AF-8D99-AEBB017543C5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib 0x966e8000 - 0x96705ff7 libresolv.9.dylib (51) <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib 0x96706000 - 0x967efff7 libxml2.2.dylib (22.3) <015A4FA6-5BB9-3F95-AFB8-B9281E22685B> /usr/lib/libxml2.2.dylib 0x967f0000 - 0x967f0ffd libOpenScriptingUtil.dylib (148.3) <87895E27-88E2-3249-8D0E-B17E76FB00C1> /usr/lib/libOpenScriptingUtil.dylib 0x967f3000 - 0x967fafff libsystem_dnssd.dylib (379.38.1) <4F164CA8-4A4F-3B27-B88A-0926E2FEB7D4> /usr/lib/system/libsystem_dnssd.dylib 0x967fb000 - 0x967fbffd com.apple.audio.units.AudioUnit (1.9 - 1.9) <F7638E43-F885-372E-9DAE-24D0C21AA66E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 0x967fc000 - 0x96893ff7 com.apple.ink.framework (10.8.2 - 150) <D90FF7BC-6B90-39F1-AC52-670269947C58> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink 0x9689b000 - 0x96903fe7 libvDSP.dylib (380.6) <55780308-4DCA-3B10-9703-EAFC3E13A3FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib 0x96904000 - 0x96949ff7 com.apple.NavigationServices (3.7 - 200) <F6531764-6E43-3AF3-ACDD-8A5551EF016A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices 0x9694a000 - 0x96963fff com.apple.Kerberos (2.0 - 1) <9BDE8F4D-DBC3-34D1-852C-898D3655A611> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 0x96964000 - 0x96da6fff com.apple.CoreGraphics (1.600.0 - 332) <67E70F21-A0F1-356F-90B7-4B90C468EE2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 0x96da7000 - 0x96f00ffb com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <8BF022FC-C38A-34AA-8469-D98294094659> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 0x96f01000 - 0x96f2dff7 libsystem_info.dylib (406.17) <AA5611DB-A944-3072-B6BE-ACAB08689547> /usr/lib/system/libsystem_info.dylib 0x96f2e000 - 0x96f37fff com.apple.CommerceCore (1.0 - 26.1) <8C28115C-6EC1-316D-9237-F4FBCBB778C5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore 0x96f38000 - 0x96f7fff3 com.apple.CoreMedia (1.0 - 926.104) <D0E3BE86-12ED-31BE-816F-E72D757A9F2F> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia 0x9726d000 - 0x97275fff libcopyfile.dylib (89) <4963541B-0254-371B-B29A-B6806888949B> /usr/lib/system/libcopyfile.dylib 0x973d6000 - 0x97420ff7 com.apple.framework.CoreWLAN (3.3 - 330.15) <74C4B50F-7016-341F-8261-D379B8F0CC97> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN 0x97421000 - 0x97445fff com.apple.PerformanceAnalysis (1.16 - 16) <18DE0F9F-1264-394D-AC56-6B2A1771DFBE> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis 0x97446000 - 0x97553ff3 com.apple.ImageIO.framework (3.2.1 - 850) <C964E877-660E-3482-ACF9-EC25DFEAF307> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO 0x97554000 - 0x97859ff7 com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <4DB4B0C9-1377-3062-BE0E-CD3326ACDAF0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore 0x9785a000 - 0x97895fef libGLImage.dylib (8.9.2) <9D41F71E-E927-3767-A856-55480E20E9D9> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib 0x97896000 - 0x978b5ff3 com.apple.Ubiquity (1.2 - 243.15) <E10A2937-D671-3D14-AF8D-BA25E601F458> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity 0x978b6000 - 0x978dffff libxslt.1.dylib (11.3) <0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib 0x978e0000 - 0x978e0fff libsystem_blocks.dylib (59) <3A743C5D-CFA5-37D8-80A8-B6795A9DB04F> /usr/lib/system/libsystem_blocks.dylib 0x978e1000 - 0x9797cfff com.apple.CoreSymbolication (3.0 - 117) <F705A8CD-A04A-3A84-970A-7B04BC05DA97> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication 0x97a1f000 - 0x97a2efff libGL.dylib (8.9.2) <1082B9A5-9AA3-35D4-968B-3A3FE15B1ED7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x97a2f000 - 0x97a71ff7 libcups.2.dylib (327.6) <D994A44F-CCDD-3D40-B732-79CB88F45908> /usr/lib/libcups.2.dylib 0x97a72000 - 0x97a78fff com.apple.print.framework.Print (8.0 - 258) <12AEAD24-6924-3923-9E4A-C5D21231E639> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print 0x97a7d000 - 0x97c39ffd libicucore.A.dylib (491.11.3) <FF55E176-7D66-3DBB-AF86-84744C47A02C> /usr/lib/libicucore.A.dylib 0x97c45000 - 0x97f05ff3 com.apple.security (7.0 - 55179.13) <000FD8E9-D070-326A-B386-51314360FD5C> /System/Library/Frameworks/Security.framework/Versions/A/Security 0x97f06000 - 0x97f2fff7 libRIP.A.dylib (332) <521E60A6-A768-3CB8-B10D-D10EECD68A94> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib 0x97f46000 - 0x98363fff FaceCoreLight (2.4.1) <571DE3F8-CA8A-3E71-9AF4-F06FFE721CE6> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight 0x98364000 - 0x9837afff com.apple.CFOpenDirectory (10.8 - 151.10) <56C3F276-BD1F-3031-8CF9-8F4F481A534E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory 0x9852e000 - 0x98538fff libsystem_notify.dylib (98.5) <7EEE9475-18F8-3099-B0ED-23A3E528ABE0> /usr/lib/system/libsystem_notify.dylib 0x98539000 - 0x9853dfff com.apple.IOSurface (86.0.4 - 86.0.4) <6431ACB6-561B-314F-9A2A-FAC1578FCC86> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface 0x9853e000 - 0x9856bffb com.apple.CoreServicesInternal (154.3 - 154.3) <A452602B-67CB-39C4-95EB-E59433C65774> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal 0x9856c000 - 0x98684ff7 com.apple.coreavchd (5.6.0 - 5600.4.16) <F024C78B-4FAA-38F1-A182-AD0A0A596CBE> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD 0x98685000 - 0x986e6fff com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <A3B911DB-77DF-3037-A47A-634B08E5727D> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x986e7000 - 0x986f0ff9 com.apple.CommonAuth (3.0 - 2.0) <34C4768C-EF8D-3DBA-AFB7-09148C8672DB> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth 0x986f1000 - 0x9876dff3 com.apple.Metadata (10.7.0 - 707.11) <F9BB5BBE-69D0-3309-8280-2303EB1DC455> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata 0x9876e000 - 0x98783fff com.apple.ImageCapture (8.0 - 8.0) <B8BD421F-D5A9-3FB4-8E89-AD5CFC0D4030> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture 0x98784000 - 0x988bfff7 libBLAS.dylib (1073.4) <FF74A147-05E1-37C4-BC10-7DEB57FE5326> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib 0x988c0000 - 0x988c2ffd libCVMSPluginSupport.dylib (8.9.2) <D6D0BB75-42DA-3772-AB5E-CBD59B343393> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib 0x988c3000 - 0x98a11ff3 com.apple.CFNetwork (596.4.3 - 596.4.3) <547BD138-E902-35F0-B6EC-41DD06794B22> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x98a12000 - 0x9974aff7 com.apple.QuickTimeComponents.component (7.7.1 - 2599.31) <74631EAD-8A37-3628-829D-3D47A8BF8A50> /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTimeComponents 0x9974b000 - 0x9978aff7 com.apple.bom (12.0 - 192) <0637E52C-D151-37B3-904F-8656B2FD44DD> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom 0x9978b000 - 0x9978bfff com.apple.vecLib (3.8 - vecLib 3.8) <83160DD1-5614-3E34-80EB-97041016EF1F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib 0x9978c000 - 0x997eefff libc++.1.dylib (65.1) <C0CFF9FF-5D52-3EAE-B921-6AE1DA00A135> /usr/lib/libc++.1.dylib 0x997ef000 - 0x997fbff7 com.apple.NetAuth (4.0 - 4.0) <4983C4B8-9D95-3C4D-897E-07743326487E> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth 0x99b7a000 - 0x99b7cfff libdyld.dylib (210.2.3) <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib 0x99b7d000 - 0x99bcbff3 com.apple.SystemConfiguration (1.12.2 - 1.12.2) <6E858B9F-337A-314E-88B7-24A274ACE568> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration 0x99bcc000 - 0x99bdeff7 libdispatch.dylib (228.23) <86EF7D45-2D97-3465-A449-95038AE5DABA> /usr/lib/system/libdispatch.dylib 0x99bdf000 - 0x99c47ff7 com.apple.framework.IOKit (2.0.1 - 755.24.1) <70DE925B-51E8-3C65-8928-FB49FD823D94> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x99d05000 - 0x99d9dfff com.apple.CoreServices.OSServices (557.6 - 557.6) <E1600639-3EEC-3DF8-BD40-747BB2117988> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices 0x99d9e000 - 0x99d9fffd com.apple.TrustEvaluationAgent (2.0 - 23) <E42347C0-2D3C-36A4-9200-757FFA61B388> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent 0x99da0000 - 0x99da2ffb libRadiance.dylib (850) <83434287-A09E-3A3F-A1AC-085B563BA46D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib 0x99da3000 - 0x99dafffe libkxld.dylib (2050.24.15) <BEC097B0-9D9A-3484-99DB-0F537E71963E> /usr/lib/system/libkxld.dylib 0x99de2000 - 0x99efeffb com.apple.desktopservices (1.7.4 - 1.7.4) <782D711D-7930-324A-9015-686C2F86DBA3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv 0x99eff000 - 0x99f56ff7 com.apple.ScalableUserInterface (1.0 - 1) <2B5E454B-BC49-3E85-B54D-1950397C448C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterface.framework/Versions/A/ScalableUserInterface 0x99f57000 - 0x99fccff7 com.apple.ApplicationServices.ATS (332 - 341.1) <95206704-F9C9-33C4-AF25-FE9890E160B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS 0x99fcd000 - 0x99fe4fff com.apple.GenerationalStorage (1.1 - 132.3) <DD0AA3DB-376D-37F3-AC5B-17AC9B9E0A63> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage 0x99fe5000 - 0x9a39dffa libLAPACK.dylib (1073.4) <9A6E5EAD-F2F2-3D5C-B655-2B536DB477F2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib 0x9a39e000 - 0x9a39ffff libremovefile.dylib (23.2) <9813B2DB-2374-3AA2-99B6-AA2E9897B249> /usr/lib/system/libremovefile.dylib 0x9a3a0000 - 0x9a4b0ffb com.apple.QuickTimeImporters.component (7.7.1 - 2599.31) <EB33C708-9BDB-345C-AC5A-278B84035EA7> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTimeImporters 0x9a4b1000 - 0x9a4b3fff com.apple.securityhi (4.0 - 55002) <62E3AE75-61CB-341E-B2A0-CFC985A2BF7F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI 0x9a4b4000 - 0x9a4b6ffc com.apple.QuickTimeH264.component (7.7.1 - 2599.31) <3DE0F972-7307-30AA-BFE4-9C53E09CC6E4> /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264 0x9a4b7000 - 0x9a58bff3 com.apple.backup.framework (1.4.3 - 1.4.3) <6EA22ED3-BA18-3A37-AE05-5D6FDA3F372F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup 0x9a5b2000 - 0x9a65cfff com.apple.LaunchServices (539.9 - 539.9) <C0E0CFFF-3714-3467-87DA-4A6F0AF1953B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices 0x9a65d000 - 0x9a68efff com.apple.DictionaryServices (1.2 - 184.4) <0D5BE86F-F40A-3E39-8569-19FCA5EDF9D3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices

External Modification Summary:

Calls made by other processes targeting this process:

task_for_pid: 2 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: 5561 thread_create: 0 thread_set_state: 0

VM Region Summary: ReadOnly portion of Libraries: Total=183.7M resident=137.0M(75%) swapped_out_or_unallocated=46.7M(25%) Writable regions: Total=123.3M written=5648K(4%) resident=21.9M(18%) swapped_out=0K(0%) unallocated=101.4M(82%) REGION TYPE VIRTUAL =========== ======= ATS (font support) 33.1M ATS (font support) (reserved) 4K reserved VM address space (unallocated) CG backing stores 14.4M CG raster data 56K CG shared images 1280K CoreServices 1648K IOKit 8K MALLOC 44.9M MALLOC guard page 48K Memory tag=240 4K Memory tag=242 12K Memory tag=243 4K Memory tag=249 156K Memory tag=35 4852K Stack 66.5M VM_ALLOCATE 16.2M DATA 10.1M DATA/OBJC 192K IMAGE 528K IMPORT 16K LINKEDIT 39.0M OBJC 1800K OBJC/DATA 52K PAGEZERO 4K TEXT 144.7M UNICODE 544K mapped file 89.2M shared memory 308K =========== ======= TOTAL 469.3M TOTAL, minus reserved VM space 469.3M

Model: iMac12,2, BootROM IM121.0047.B1F, 4 processors, Intel Core i5, 2.7 GHz, 12 GB, SMC 1.72f2 Graphics: AMD Radeon HD 6770M, AMD Radeon HD 6770M, PCIe, 512 MB Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353637334648302D4348392020 Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353637334648302D4348392020 Memory Module: BANK 0/DIMM1, 4 GB, DDR3, 1333 MHz, 0x029E, 0x434D5341344758334D314131333333433920 Memory Module: BANK 1/DIMM1, 4 GB, DDR3, 1333 MHz, 0x029E, 0x434D5341344758334D314131333333433920 AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x9A), Atheros 9380: 4.0.72.0-P2P Bluetooth: Version 4.1.4f2 12041, 2 service, 18 devices, 1 incoming serial ports Network Service: Ethernet, Ethernet, en0 Serial ATA Device: WDC WD1001FALS-403AA0, 1 TB Serial ATA Device: OPTIARC DVD RW AD-5680H USB Device: hub_device, 0x0424 (SMSC), 0x2514, 0xfd100000 / 2 USB Device: Back-UPS ES 650 FW:842.J2 .D USB FW:J2, 0x051d (American Power Conversion), 0x0002, 0xfd140000 / 5 USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfd110000 / 4 USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3 USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x850b, 0xfa200000 / 3 USB Device: hub_device, 0x0424 (SMSC), 0x2514, 0xfa100000 / 2 USB Device: composite_device, 0x0d8c (C-MEDIA ELECTRONICS INC.), 0x000c, 0xfa120000 / 5 USB Device: BRCM2046 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0xfa110000 / 4 USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8215, 0xfa111000 / 6 FireWire Device: Backup+ Desk Mac, Seagate, 800mbit_speed

#8745 Drag and drop doesn't work with dual monitors normal duplicate 11 years 11 years
Description

Hi there!

I'm using dual monitor (extended desktop) under Windows 7 64 bits.

When I drag and dropped any file from a FTP server to my desktop an error message occurs. The file is not copied and a folder is created in desktop with a strange name like "fz3-13708757045970".

#8747 SSH key loading order problem normal duplicate 11 years 9 years
Description

FileZilla 3.7.0.1 on Windows 7 seems to start loading keys from Pageant before it loads keys specified in Settings/SFTP. If there are more than 4 keys in Pageant, remote SSH login fails with an error message due to too many failed authentication attempts.

A suitable resolution for this problem may be the follow two changes/procedures:

(1) Procedure

  1. Find a match for a Settings/SFTP specified keys using Pageant, then use those keys from Pageant.
  2. If that fails, attempt to load specified keys in Settings/SFTP without Pageant. (Pageant is not needed for password less keys.)

(2) The ability to specify keys in Site Manager per entry (session) is necessary to enable working with many sessions and keys. This prevents loading too many Settings/SFTP specified keys when there are more than 5 coexisting sessions each with a different key. The procedure mentioned below (1) still applies.

Behavior tested with remote SSHd versions: SSH-2.0-OpenSSH_5.9p1 Debian-3 SSH-2.0-OpenSSH_5.5p1 Debian-6+squeeze3

#8751 Pausing DL Queue on sFTP and Starting on Same Host FTP Server Fails normal outdated 11 years 11 years
Description

First, a little back-story. At my place of work, I can connect to our sFTP server because our IP is white-listed. My home address is not, so I can only access our server files via FTP when I work from home.

Restarting a queue in a FTP connection that was made in an sFTP connection will fail, even if it's the same host.

Steps to Reproduce:

  1. Start on an sFTP Host Connection.
  2. Build a queue of files to download, but do not process yet.
  3. Disconnect / Move to a FTP connection at the same host location.
  4. Begin to Process queue.

Result: File transfer does not succeed.

-Ionix

Specs are down below, I think I searched the tracker fairly decently, I apologize if this may be a duplicate I may have missed.

FileZilla Client


Version: 3.7.0.2

Build information:

Compiled for: i586-pc-mingw32msvc Compiled on: x86_64-unknown-linux-gnu Build date: 2013-05-26 Compiled with: i586-mingw32msvc-gcc (GCC) 4.2.1-sjlj (mingw32-2) Compiler flags: -g -O2 -Wall -g -fexceptions

Linked against:

wxWidgets: 2.8.12 GnuTLS: 3.1.11 SQLite: 3.7.16.2

Operating system:

Name: Windows NT 6.1 (build 7601, Service Pack 1) Version: 6.1 Platform: 64 bit system

#8757 3.6.0.2 upgrade to 3.7.1 will not allow server connection normal outdated 11 years 10 years
Description

I have used FileZilla for years and upgrade each version when it is available with no problems. 3.7.1 would not allow server connection. Downgrade back to 3.6.0.2 works fine. I re-downloaded the upgrade and installed again. The problems was resolved. Bad download?

Best Regards, A big FileZilla fan. Mike Brice MikeBrice@GoBTS.com

#8760 "File not found" Errors normal outdated 11 years 11 years
Description

If I upload a folder with FileZilla and delete this folder, I will see an Error-Message for each file.

#8763 Unable to load a file on the server with Filezilla. normal outdated 11 years 11 years
Description

I am on Windows Vista family edition 64 bits. I checked and I have the latest version of Filezilla client. I try to save files on the server via Filezilla. It seems to try 3 times, but it doesn't do anything, the file is not loaded. I tried many times. Nothing works.

#8764 Visual Problems normal duplicate 11 years 11 years
Description

First of all, filezilla is awesome, and I use it since many years. But in every release I have notice 1 problem, persisting since very long.

It is visual problem, means, after a few minutes, the toolbar gets overridden by the file transfer progress window and leaves impressions in there, while software works perfectly fine. Although it's not a show stopper, but annoys so much everytime.

Hope you guys can get a fix for it in next release. Thanks.

#8765 Using domain in host field doesn't work Do not touch normal rejected 11 years 11 years
Description

when trying to connect to our sftp server using our domain name vs. the IP address the connection fails with the following message:

Status: Connecting to sftp.mydomain.com... Response: fzSftp started Command: open "myuser@…" 22 Command: Pass: Error: Authentication failed. Error: Critical error Error: Could not connect to server

When I use the IP address it works fine.

Here is the content of the log with domain and ip masked.

2013-06-27 14:33:13 13136 3 Status: Connecting to sftp.mydomain.com... 2013-06-27 14:33:13 13136 3 Response: fzSftp started 2013-06-27 14:33:13 13136 3 Command: open "myuser@…" 22 2013-06-27 14:33:13 13136 3 Command: Pass: 2013-06-27 14:33:14 13136 3 Error: Authentication failed. 2013-06-27 14:33:14 13136 3 Error: Critical error 2013-06-27 14:33:14 13136 3 Error: Could not connect to server 2013-06-27 14:33:43 13136 3 Status: Connecting to 192.168.1.50... 2013-06-27 14:33:43 13136 3 Response: fzSftp started 2013-06-27 14:33:43 13136 3 Command: open "myuser@192.168.1.50" 22 2013-06-27 14:33:43 13136 3 Command: Pass: 2013-06-27 14:33:44 13136 3 Status: Connected to 192.168.1.50 2013-06-27 14:33:44 13136 3 Status: Retrieving directory listing... 2013-06-27 14:33:44 13136 3 Command: pwd 2013-06-27 14:33:44 13136 3 Response: Current directory is: "/" 2013-06-27 14:33:44 13136 3 Command: ls 2013-06-27 14:33:44 13136 3 Status: Listing directory / 2013-06-27 14:33:45 13136 3 Status: Directory listing successful

#8766 Cannot resize bottom columns (server/local file; direction; remote file...) normal invalid 11 years 11 years
Description

The latest version (v3.7.1) cannot resize the lower pane columns under Win7 64bit. It was working in the past, please help to check, thanks!

#8767 FileZilla will not connect to the server in Windows 8 normal duplicate 11 years 10 years
Description

I have Windows 8 64-bit on my laptop. When I try to connect to the server with the correct details, FileZilla says "Connection attempt failed with "EACCES - Permission denied".". FileZilla connects to the server, using the EXACT same login details when I try using it with Windows 7. However I cannot use my Windows 7 computer all the time and my Windows 8 one is my main computer. The full debug report is available below.

Status: Resolving address of geographyrevision.net16.net Status: Connecting to 31.170.161.56:21... Status: Connection attempt failed with "EACCES - Permission denied". Error: Could not connect to server Status: Waiting to retry... Status: Delaying connection for 1 second due to previously failed connection attempt... Status: Resolving address of geographyrevision.net16.net Status: Connecting to 31.170.161.56:21... Status: Connection attempt failed with "EACCES - Permission denied". Error: Could not connect to server Status: Resolving address of geographyrevision.net16.net Status: Connecting to 31.170.161.56:21... Status: Connection attempt failed with "EACCES - Permission denied". Error: Could not connect to server Status: Waiting to retry... Status: Resolving address of geographyrevision.net16.net Status: Connecting to 31.170.161.56:21... Status: Connection attempt failed with "EACCES - Permission denied". Error: Could not connect to server Status: Resolving address of geographyrevision.net16.net Status: Connecting to 31.170.161.56:21... Status: Connection attempt failed with "EACCES - Permission denied". Error: Could not connect to server Status: Waiting to retry... Status: Resolving address of geographyrevision.net16.net Status: Connecting to 31.170.161.56:21... Status: Connection attempt failed with "EACCES - Permission denied". Error: Could not connect to server Status: Resolving address of geographyrevision.net16.net Status: Connecting to 31.170.161.56:21... Status: Connection attempt failed with "EACCES - Permission denied". Trace: CRealControlSocket::OnClose(13) Trace: CFtpControlSocket::ResetOperation(66) Trace: CControlSocket::ResetOperation(66) Error: Could not connect to server Status: Waiting to retry... Status: Resolving address of geographyrevision.net16.net Status: Connecting to 31.170.161.56:21... Status: Connection attempt failed with "EACCES - Permission denied". Trace: CRealControlSocket::OnClose(13) Trace: CFtpControlSocket::ResetOperation(66) Trace: CControlSocket::ResetOperation(66) Error: Could not connect to server

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