Questions tagged [ftp]

File Transfer Protocol is a standard network protocol used to transfer data across TCP-based networks between hosts.

File Transfer Protocol (Wikipedia article) is a protocol, governed by well-established Internet standards, for conducting file operations (e.g. transferring files between two systems) over a TCP-based network such as the Internet or a local area network. FTP employs a client-server architecture, where one system is the "client", which opens a connection to the other system, the "server", the client makes requests of the server, and then closes the connection.

The most common FTP operations that a client will initiate include downloading files (i.e. "get" files from the server) and uploading files (i.e. "put" files on the server). There are a variety of file system related commands that the client request of the server (e.g. making directories, renaming files on the server, deleting files from the server, etc.).

2494 questions
5
votes
2 answers

What is the secure way to isolate ftp server users on unix?

I've read documentation for various ftp daemons and various long threads about the security implications of using a chroot environment for an ftp server when giving users write access. If you read the vsftpd documentation, in particular, it implies…
djs
  • 200
  • 1
  • 6
5
votes
2 answers

What is the proper way to set up the Apache document root in terms of privileges?

I have just installed Ubuntu 9.10 server edition on my machine and I wish to run my own personal local server with other users in the same LAN. First, I was wondering what folder directory structure is best for the web root? Should I just…
user41157
  • 189
  • 2
  • 9
5
votes
5 answers

If I use ftp or telnet by accident, to what extent is my password unsafe?

if i use ftp or telnet by accident (usually on the bash shell), to what extend is my password visible? can my coworker see it? can my neighbor see it if i work at home (if not using wireless)? can someone working at a data center along the way see…
nonopolarity
  • 535
  • 3
  • 6
  • 17
5
votes
3 answers

Windows Server 2008 - Calling FTP from .CMD - Pass a parameter to an FTP file?

I am calling the following from a .cmd file: ftp -d -s:D:\backup\web-daily.txt The web-daily.txt file is an ftp input file with similar contents to this: open put d:\backup\web-daily.7z web-daily.7z quit I need to be…
5
votes
2 answers

Windows FTP over SSH

We have quite a lot of scripts that are used to upload and download files with a vendor on the Internet using the Windows supplied ftp.exe. This is proxied via SideWinder and is FTP out to the vendor, however they support SFTP. We make use of ftp…
AbraCadaver
  • 153
  • 9
4
votes
3 answers

How do IIS FTP 7.5 User accounts work?

We'd like to set up an IIS 7 FTP server with non-Windows user accounts. We've heard that FTP Server v7.5 supports this, but the documentation is talking about "IIS Manager Accounts" and implies that these accounts have the ability to configure…
davidcl
  • 162
  • 2
  • 2
  • 11
4
votes
2 answers

vsftpd local users error "Incorrect login"

I want to integrate an Android app with a FTP server, in this case vsftpd (My computer is running LinuxMint 18, kernel 4.4.8). Anonymous users work, my user works (darijan), but I made another user (ftpuser1), set root directory to /srv/ftp/ftpuser1…
darijan2002
  • 143
  • 1
  • 5
4
votes
4 answers

How to enable TLS 1.1 **minimum** on vsftpd

I'm trying to secure my infrastructure to meet the PCI-DSS standard using securitymetrics.com. The standard mandates the use of TLS 1.1 minimum (with a CBC cipher). TLS 1.0 is not allowed. While securing ftp (vsftpd), I have disabled sslv2 and…
adminz
  • 397
  • 2
  • 6
  • 20
4
votes
2 answers

pure-ftpd gives wrong ip for passive connection in TLS mode

I am setting up our ftp server ( pure-ftpd-1.0.21-r1 ) to use TLS/SSL. It works when I don't use TLS. Started with command options: -S 21 -c 30 -C 10 -B -k 90% -A -R -Z -p 49152:65534 -U 013 -s --tls=1 . Response: 230 OK. Current restricted…
Tanj
  • 163
  • 1
  • 1
  • 8
4
votes
3 answers

Automatically run a script on an uploaded FTP file

Is there a way to run a script over a file that has been uploaded on an FTP server. I am running ProFTP on the server and would like to process the uploaded files immediately after they are uploaded. The ways I have currently thought of are Cron…
jW.
  • 155
  • 1
  • 2
  • 7
4
votes
1 answer

ProFTPD IP masquerade just some ways

I am trying to setup a FTP server using ProFTPD on Xubuntu 15.10. Users will connect to this server in two ways: internally (using an internal IPv4 address) externally (using domain name pointed to NATed IPv4 and global IPv6) On top of that, I…
Vilican
  • 129
  • 1
  • 21
4
votes
1 answer

Synchronize server directory with local directory FileZilla?

I have uploaded a website online and had to make some hotfixes directly on the server directories, but now there is a discrepancy between my local directory and the server directory. I tried to navigate FileZilla settings to check if there is a way…
KAD
  • 143
  • 1
  • 5
4
votes
1 answer

FileZilla FTP Server permissions

I would like to install/configure a FTP server on my Windows Server 2012 R2 to grant access to my clients to browse their site files. I have used FileZilla for this purpose earlier. This time I would like to enforce certain rules on FTP…
HaBo
  • 141
  • 1
  • 4
4
votes
1 answer

cannot get directory list via ftp using windows 2012 r2, iis-8

Cannot get directory listing in FTP client program. Trying to connect with Filezilla using passive mode: Status: Resolving address of test.domain.dk Status: Connecting to 89.XXX.XXX.XXX:21... Status: Connection established, waiting for welcome…
Kupernikuz
  • 41
  • 1
  • 1
  • 3
4
votes
7 answers

What can I do to replace FTP?

I'd like to replace FTP access with systems that are more secure. Sending passwords in plain text with no encryption is unacceptable and with single-sign-on growing, becoming less acceptable daily. The catch: I need something that supports Linux,…
jldugger
  • 14,342
  • 20
  • 77
  • 129