Pawank Kumar

Greenhorn
+ Follow
since Sep 30, 2009
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Pawank Kumar

Hi Guys,

I am using Apache Commons FTP API on Linux. My logs contains following sensitive information(basically FTP commands fired and response retrieved) which I could not suppress by any means. Displaying password is really unacceptable:-
=============
220 (vsFTPd 2.0.4)
USER ftpuser
331 Please specify the password.
PASS admin
230 Login successful.
TYPE A
200 Switching to ASCII mode.
PASV
227 Entering Passive Mode (159,156,163,210,110,136)
STOR /app/data/rds/DEV/todo//standard_approach_ref_data_Test20090929.csv
150 Ok to send data.
QUIT
226 File receive OK.

=================

How to suppress these messages. Is it something to do with Apache API or FTP server issue?