Questions tagged [proftpd]

ProFTPD, highly configurable GPL-licensed FTP server software

ProFTPD is a FTP server built from the ground up after developers grew tired of fixing bugs and hacking features into wu-ftpd.

ProFTPD is short for Professional FTP Daemon

GNU General Public License version 2.0 (GPLv2)

For use on Unix and Unix-a-like operating systems - there is no support for native use under Microsoft Windows.

Used by sites such as:

http://www.proftpd.org/

https://sourceforge.net/projects/proftp/

131 questions
2
votes
1 answer

Creating FTP Service

I'm attempting to create an FTP service with Kubernetes via google cloud. I've created the docker image with and exposed the necessary ports with: EXPOSE 20 21 50000-52000. I've run into several problems so far: The biggest involving port ranges.…
Blue
  • 22,608
  • 7
  • 62
  • 92
2
votes
1 answer

Can the user of proftpd change the password themself not by admin?

I have read all the command on ftp which contains no command to change passwd. I am a user of proftpd ,how can change my password after logining into proftpd by myself not by admin? User can change it's own password in ssh service ,not by admin,it…
showkey
  • 482
  • 42
  • 140
  • 295
2
votes
1 answer

script a shell script that test that the new user can indeed upload and download files using passive mode of operation in proftpd

I need a shell script that test that the new user can indeed upload and download files using passive mode of operation in proftpd.I had installed proftpd on /tmp and configuration file is /etc/proftpd.conf. please guys help me out here #!…
2
votes
2 answers

Another FTP daemon is already running?

I'm running the xampp on os x mavericks Xampp doesn't start the ProFTPD server. when i tried to start it always failed. In application log it says Starting ProFTPD... Checking syntax of configuration file …
AlgoCoder
  • 1,706
  • 5
  • 19
  • 40
1
vote
1 answer

Regexp: ProFTPD auth-logs

I've configurated ProFTPD to log all authentifications on a Plesk powered server. This setting is not set by default since Plesk 10 (whyever...). I want to configure fail2ban, to detect unsuccessful login-attempts for Brute Force…
mate64
  • 9,876
  • 17
  • 64
  • 96
1
vote
1 answer

How to handle spaces in file names in ProFTPD xferlog?

I’m watching the xferlog of ProFTPD in /var/log/proftpd/xferlog and would like to generate valid URLs (the folder is served by Apache) of the logged entries. Spaces in paths get replaced with _ which should be rather %20 url encoded. Fri Apr 16…
florit
  • 325
  • 2
  • 13
1
vote
0 answers

pywatchdog and pyinotify not detecting changes on files inside ftp created directories

I have an application monitoring files sent to a FTP server (proftpd 1.3.5a). I am using pywatchdog to monitor file creation on FTP server root (app running locally), but under some very specific circumstance it does not issue a notification: when I…
1
vote
1 answer

ProFTPD Extended Log - Use a subset of command classes instead of whole command class

I am building a log parser for ProFTPD and have a question regarding the ExtendedLog config directive. Official ProFTPD documentation has the following ExtendedLog spec: ExtendedLog [ filename [[command-classes] format-nickname]] There are a couple…
Armin
  • 25
  • 5
1
vote
0 answers

Use Tor proxy in ftplib to upload a file

I want upload a file to a ftp server using Tor proxy to comunicate with a Hidden Service. I have seen several ways using stem and socks but I could not connect to an FTP yet. #!/usr/bin/python3.5 import ftplib import os def upload(ftp, file): …
1
vote
2 answers

ProFTPD Version 1.3.5d ExtendedLog is not working?

I am a beginner in Linux. I am using Plesk onyx with 17.5.3 Ubuntu 16.04 1705170317.16. My ExtendedLog configured in /etc/proftpd.conf is not working. Following is my /etc/proftpd.conf # # To have more informations about Proftpd configuration #…
nidhin
  • 359
  • 1
  • 3
  • 13
1
vote
0 answers

Java FTP Apache Commons-Net slow file-download on some servers (possibly ProFTPD related?)

I have tried to use the Apache Commons Net 3.5 to save files from a FTP-Server. Most times my code will work fine and the speed at which the files are downloaded is really fast. There are several FTP-Servers I try to save files from. Some of them…
Knappe
  • 11
  • 3
1
vote
2 answers

Django, I am getting "Permission Denied" when trying to access a directory that is given to an ftp user

My django application (v1.8) is using a directory for exporting some csv files. This directory is something like: "/home/username/django_project/csv_out". I have intentionally chmod the "csv_out" dir to 777. My partner wanted to access this…
xpanta
  • 8,124
  • 15
  • 60
  • 104
1
vote
0 answers

FTP chown trigger after upload with symbolic links main www dir

I'm using proftpd server with below dir structure: main www dir: /home/www also there are some symbolic links to that main dir: /home/john -> linked to /home/www /home/mark -> linked to /home/www etc. When one of that users upload of new file he…
rafwlaz
  • 484
  • 2
  • 17
1
vote
0 answers

ProFTPD with AWS IAM and Cognito Auth

I'm looking for any implementation or someone that has used IAM and Cognito to authentication in a ProFTPD server in EC2. Is there anyone that has done it?
1
vote
1 answer

ProFTPd hashing algorhythm - password audit with hashcat

I'm running a small root server which has several tasks automated through ftp connections. I'm using proFTPd 1.3.4d in standalone mode with mod_auth_file.c as authentication module. So I'm using an AuthUserFile, not the standard passwd file from the…
1
2
3
8 9