Skip to content

Instantly share code, notes, and snippets.

@danielwestendorf
Created May 27, 2011 14:35
Show Gist options
  • Save danielwestendorf/995366 to your computer and use it in GitHub Desktop.
Save danielwestendorf/995366 to your computer and use it in GitHub Desktop.
proftpd.log
UseIPv6 off
# If set on you can experience a longer connection delay in many cases.
IdentLookups off
ServerName "FTP.SCOTTUSA.COM -- SCOTT-SPORTS"
ServerType standalone
DeferWelcome off
MultilineRFC2228 on
DefaultServer on
ShowSymlinks on
TimeoutNoTransfer 600
TimeoutStalled 600
TimeoutIdle 1200
DisplayLogin welcome.msg
DisplayChdir .message true
#ListOptions "-l"
DenyFilter \*.*/
# Port 21 is the standard FTP port.
Port 21
MaxInstances 30
User proftpd
Group nogroup
# Umask 022 is a good standard umask to prevent new files and dirs
# (second parm) from being group and world writable.
Umask 002 002
# Normally, we want files to be overwriteable.
AllowOverwrite on
TransferLog /var/log/proftpd/xferlog
SystemLog /var/log/proftpd/proftpd.log
SQLLogFile /var/log/proftpd/sql.log
DebugLevel 10
<IfModule mod_quotatab.c>
QuotaEngine on
</IfModule>
<IfModule mod_ratio.c>
Ratios off
</IfModule>
# Delay engine reduces impact of the so-called Timing Attack described in
# http://security.lss.hr/index.php?page=details&ID=LSS-2004-10-02
# It is on by default.
<IfModule mod_delay.c>
DelayEngine off
</IfModule>
<IfModule mod_ctrls.c>
ControlsEngine off
ControlsMaxClients 2
ControlsLog /var/log/proftpd/controls.log
ControlsInterval 5
ControlsSocket /var/run/proftpd/proftpd.sock
</IfModule>
<IfModule mod_ctrls_admin.c>
AdminControlsEngine off
</IfModule>
<IfModule mod_shaper.c>
ShaperEngine on
ShaperLog /var/log/proftpd/shaper.log
ShaperTable /var/log/proftpd/shaper.tab
ShaperAll downrate 5000 uprate 5000
</IfModule>
DefaultRoot ~
SQLBackend mysql
SQLAuthTypes OpenSSL Plaintext
SQLAuthenticate users groups
SQLConnectInfo user@host user password
SQLUserInfo ftpuser userid passwd uid gid homedir shell
SQLGroupInfo ftpgroup groupname gid members
SQLMinID 500
CreateHome on
SQLLog PASS updatecount
SQLNamedQuery updatecount UPDATE "count=count+1, accessed=now() WHERE userid='%u'" ftpuser
SQLLog STOR,DELE modified
SQLNamedQuery modified UPDATE "modified=now() WHERE userid='%u'" ftpuser
QuotaDirectoryTally on
QuotaDisplayUnits Mb
QuotaShowQuotas on
SQLNamedQuery get-quota-limit SELECT "name, quota_type, per_session, limit_type, bytes_in_avail, bytes_out_avail, bytes_xfer_avail, files_in_avail, files_out_avail, files_xfer_avail FROM ftpquotalimits WHERE name = '%{0}' AND quota_type = '%{1}'"
SQLNamedQuery get-quota-tally SELECT "name, quota_type, bytes_in_used, bytes_out_used, bytes_xfer_used, files_in_used, files_out_used, files_xfer_used FROM ftpquotatallies WHERE name = '%{0}' AND quota_type = '%{1}'"
SQLNamedQuery update-quota-tally UPDATE "bytes_in_used = bytes_in_used + %{0}, bytes_out_used = bytes_out_used + %{1}, bytes_xfer_used = bytes_xfer_used + %{2}, files_in_used = files_in_used + %{3}, files_out_used = files_out_used + %{4}, files_xfer_used = files_xfer_used + %{5} WHERE name = '%{6}' AND quota_type = '%{7}'" ftpquotatallies
SQLNamedQuery insert-quota-tally INSERT "%{0}, %{1}, %{2}, %{3}, %{4}, %{5}, %{6}, %{7}" ftpquotatallies
SQLNamedQuery update-upload-tally UPDATE "uploaded_bytes = uploaded_bytes + %b, uploaded_files = uploaded_files + 1 WHERE userid = '%u'" ftpuser
SQLNamedQuery file-statistic-delete FREEFORM "DELETE FROM file_statistics WHERE file_name = '%f' and user_id = (SELECT id FROM ftpuser WHERE userid = '%u')"
SQLNamedQuery update-download-tally UPDATE "downloaded_bytes = downloaded_bytes + %b, downloaded_files = downloaded_files + 1 WHERE userid = '%u'" ftpuser
SQLNamedQuery file-uploaded FREEFORM "INSERT INTO file_statistics (file_name, file_size, directory_id, uploaded_at, modified, user_id, created_at, transfer_time, client) VALUES ('%f', %b, (SELECT id FROM directories WHERE user_id =(SELECT id FROM ftpuser where userid='%u') AND path = (SELECT REPLACE('%f',REVERSE(SUBSTRING_INDEX(REVERSE('%f'), '/', 1)), '') )), now(), now(), (SELECT id FROM ftpuser where userid = '%u'), now(), %T, '%h') ON DUPLICATE KEY UPDATE file_size = %b, uploaded_at = now(), transfer_time = %T, client = '%h', deleted_at = NULL"
SQLNamedQuery file-downloaded UPDATE "downloaded_at = now(), modified = now(), transfer_time = %T WHERE file_name= '%f'" file_statistics
SQLNamedQuery new-directory FREEFORM "INSERT INTO directories (path, user_id, parent) VALUES ('%f/', (SELECT id FROM ftpuser where userid = '%u'), (SELECT REPLACE('%f', '%d', '')) )"
SQLNamedQuery delete-directory FREEFORM "DELETE FROM directories WHERE path = '%f/' AND user_id = (SELECT id FROM ftpuser where userid = '%u')"
SQLNamedQuery rename-file UPDATE "file_name = '%f', directory_id = (SELECT id FROM directories WHERE user_id =(SELECT id FROM ftpuser where userid='%u') AND path = (SELECT REPLACE('%f',REVERSE(SUBSTRING_INDEX(REVERSE('%f'), '/', 1)), '') )) WHERE file_name = '%w')" file_statistics
SQLNamedQuery rename-directory UPDATE "path = '%f/', parent = (SELECT REPLACE('%f', REVERSE(SUBSTRING_INDEX(REVERSE('%f'), '/', 1)), '')) WHERE path = '%w/'" directories
QuotaLimitTable sql:/get-quota-limit
QuotaTallyTable sql:/get-quota-tally/update-quota-tally/insert-quota-tally
RootLogin off
RequireValidShell off
SQLLog STOR update-upload-tally
SQLLog DELE file-statistic-delete
SQLLog STOR file-uploaded
SQLLog RETR update-download-tally
SQLLog RETR file-downloaded
SQLLog MKD new-directory
SQLLog RMD delete-directory
SQLLog RNTO rename-file
SQLLog RNTO rename-directory
May 27 14:28:51 ip-10-99-13-97 proftpd[14075] ip-10-99-13-97.ec2.internal: ProFTPD 1.3.4rc2 (devel) (built Thu May 26 2011 16:56:18 UTC) standalone mode STARTUP
May 27 14:29:21 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): connected - local : 10.99.13.97:21
May 27 14:29:21 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): connected - remote : 66.210.44.66:53468
May 27 14:29:21 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): FTP session opened.
May 27 14:29:21 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_core
May 27 14:29:21 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_core
May 27 14:29:21 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_delay
May 27 14:29:21 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_auth
May 27 14:29:21 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'USER dwest' to mod_auth
May 27 14:29:21 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'USER dwest' to mod_sql
May 27 14:29:21 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'USER dwest' to mod_delay
May 27 14:29:21 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'USER dwest' to mod_sql
May 27 14:29:21 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'USER dwest' to mod_log
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_core
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_core
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_shaper
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:1998
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:2000
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_sql
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_delay
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_auth
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'PASS (hidden)' to mod_auth
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): retrieved UID 2001 for user 'dwest'
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): no supplemental groups found for user 'dwest'
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): user 'dwest' authenticated by mod_sql.c
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at auth.c:1273
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at auth.c:1275
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): USER PRIVS 2001 at mod_auth.c:1122
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:1124
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mkhome.c:292
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): creating home directory '/ftp/dwest' for user 'dwest'
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): CreateHome: '/' already exists
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): CreateHome: '/ftp' already exists
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): CreateHome: directory '/ftp/dwest' created
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): home directory '/ftp/dwest' created
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mkhome.c:320
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]):
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Config for FTP.SCOTTUSA.COM -- SCOTT-SPORTS:
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): IdentLookups
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DeferWelcome
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): MultilineRFC2228
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DefaultServer
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ShowSymlinks
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TimeoutNoTransfer
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TimeoutStalled
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TimeoutIdle
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DisplayLogin
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DisplayChdir
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DenyFilter
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): UserID
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): UserName
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): GroupID
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): GroupName
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Umask
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DirUmask
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): AllowOverwrite
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TransferLog
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLogFile
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DebugLevel
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaEngine
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DelayEngine
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ShaperEngine
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DefaultRoot
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLBackend
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLAuthTypes
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLAuthenticate
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLConnectInfo
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLUserTable
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLUsernameField
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLPasswordField
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLUidField
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGidField
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLHomedirField
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLShellField
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupTable
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupnameField
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupGIDField
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupMembersField
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLMinID
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): CreateHome
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_PASS
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_updatecount
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_STOR
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_DELE
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_modified
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaDirectoryTally
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaDisplayUnits
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaShowQuotas
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_get-quota-limit
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_get-quota-tally
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_update-quota-tally
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_insert-quota-tally
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_update-upload-tally
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_file-statistic-delete
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_update-download-tally
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_file-uploaded
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_file-downloaded
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_new-directory
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_delete-directory
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_rename-file
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_rename-directory
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaLimitTable
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaTallyTable
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RootLogin
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RequireValidShell
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_STOR
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_DELE
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_STOR
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RETR
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RETR
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_MKD
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RMD
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RNTO
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RNTO
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_auth.c:1212
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): opening TransferLog '/var/log/proftpd/xferlog'
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): setting group ID: 2001
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:1252
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): USER PRIVS 2001 at mod_auth.c:654
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): retrieved UID 2001 for user 'dwest'
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:658
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): set TZ environment variable to 'UTC'
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Preparing to chroot to directory '/ftp/dwest'
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at auth.c:1387
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at auth.c:1389
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Environment successfully chroot()ed
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_auth.c:1293
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SETUP PRIVS at mod_auth.c:1305
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/', fullpath = '/ftp/dwest/'.
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_sql
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_cap
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): mod_cap/1.1: capabilities '= cap_net_bind_service+ep'
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_shaper
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS: ID switching disabled
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_quotatab
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_delay
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_log
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_ls
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_auth
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:1667
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): unable to display DisplayLogin file 'welcome.msg': No such file or directory
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_xfer
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_core
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PASS (hidden)' to mod_sql
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PASS (hidden)' to mod_log
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PASS (hidden)' to mod_auth
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): USER dwest: Login successful.
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PWD' to mod_core
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PWD' to mod_core
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'PWD' to mod_core
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/', fullpath = '/ftp/dwest/'.
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PWD' to mod_sql
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PWD' to mod_sql
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PWD' to mod_log
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'TYPE I' to mod_core
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'TYPE I' to mod_core
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'TYPE I' to mod_xfer
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'TYPE I' to mod_sql
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'TYPE I' to mod_sql
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'TYPE I' to mod_log
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,208,221' to mod_core
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,208,221' to mod_core
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'PORT 66,210,44,66,208,221' to mod_core
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/', fullpath = '/ftp/dwest/'.
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PORT 66,210,44,66,208,221' to mod_sql
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,208,221' to mod_sql
May 27 14:29:22 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,208,221' to mod_log
May 27 14:29:23 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'MLSD' to mod_core
May 27 14:29:23 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'MLSD' to mod_core
May 27 14:29:23 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'MLSD' to mod_facts
May 27 14:29:23 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/', fullpath = '/ftp/dwest/'.
May 27 14:29:23 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at inet.c:345
May 27 14:29:23 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at inet.c:408
May 27 14:29:23 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:23 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): active data connection opened - local : 10.99.13.97:20
May 27 14:29:23 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): active data connection opened - remote : 66.210.44.66:53469
May 27 14:29:23 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'MLSD' to mod_sql
May 27 14:29:23 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'MLSD' to mod_sql
May 27 14:29:23 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'MLSD' to mod_log
May 27 14:29:23 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'MLSD' to mod_facts
May 27 14:29:31 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'MKD NewDir' to mod_core
May 27 14:29:31 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'MKD NewDir' to mod_core
May 27 14:29:31 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'MKD NewDir' to mod_quotatab
May 27 14:29:31 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'MKD NewDir' to mod_core
May 27 14:29:31 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:29:31 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): setting umask to 0002 (was 0002)
May 27 14:29:31 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'MKD NewDir' to mod_sql
May 27 14:29:31 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'MKD NewDir' to mod_quotatab
May 27 14:29:31 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'MKD NewDir' to mod_sql
May 27 14:29:31 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'MKD NewDir' to mod_log
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): connected - local : 10.99.13.97:21
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): connected - remote : 66.210.44.66:53478
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): FTP session opened.
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): connected - local : 10.99.13.97:21
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): connected - remote : 66.210.44.66:53479
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): FTP session opened.
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_core
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_core
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_delay
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_auth
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'USER dwest' to mod_auth
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'USER dwest' to mod_sql
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'USER dwest' to mod_delay
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'USER dwest' to mod_sql
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'USER dwest' to mod_log
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_core
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_core
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_delay
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_auth
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'USER dwest' to mod_auth
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'USER dwest' to mod_sql
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'USER dwest' to mod_delay
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'USER dwest' to mod_sql
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'USER dwest' to mod_log
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_core
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_core
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_shaper
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:1998
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:2000
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_sql
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_delay
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_auth
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'PASS (hidden)' to mod_auth
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_core
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_core
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_shaper
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:1998
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:2000
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_sql
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_delay
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_auth
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'PASS (hidden)' to mod_auth
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): retrieved UID 2001 for user 'dwest'
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): no supplemental groups found for user 'dwest'
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): user 'dwest' authenticated by mod_sql.c
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at auth.c:1273
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at auth.c:1275
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): USER PRIVS 2001 at mod_auth.c:1122
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:1124
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mkhome.c:292
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mkhome.c:320
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]):
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Config for FTP.SCOTTUSA.COM -- SCOTT-SPORTS:
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): IdentLookups
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DeferWelcome
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): MultilineRFC2228
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DefaultServer
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ShowSymlinks
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TimeoutNoTransfer
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TimeoutStalled
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TimeoutIdle
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DisplayLogin
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DisplayChdir
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DenyFilter
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): UserID
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): UserName
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): GroupID
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): GroupName
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Umask
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DirUmask
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): AllowOverwrite
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TransferLog
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLogFile
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DebugLevel
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaEngine
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DelayEngine
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ShaperEngine
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DefaultRoot
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLBackend
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLAuthTypes
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLAuthenticate
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLConnectInfo
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLUserTable
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLUsernameField
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLPasswordField
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLUidField
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGidField
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLHomedirField
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLShellField
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupTable
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupnameField
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupGIDField
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupMembersField
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLMinID
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): CreateHome
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_PASS
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_updatecount
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_STOR
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_DELE
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_modified
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaDirectoryTally
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaDisplayUnits
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaShowQuotas
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_get-quota-limit
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_get-quota-tally
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_update-quota-tally
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_insert-quota-tally
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_update-upload-tally
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_file-statistic-delete
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_update-download-tally
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_file-uploaded
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_file-downloaded
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_new-directory
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_delete-directory
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_rename-file
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_rename-directory
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaLimitTable
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaTallyTable
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RootLogin
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RequireValidShell
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_STOR
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_DELE
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_STOR
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RETR
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RETR
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_MKD
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RMD
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RNTO
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RNTO
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_auth.c:1212
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): opening TransferLog '/var/log/proftpd/xferlog'
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): setting group ID: 2001
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:1252
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): USER PRIVS 2001 at mod_auth.c:654
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): retrieved UID 2001 for user 'dwest'
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:658
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): set TZ environment variable to 'UTC'
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Preparing to chroot to directory '/ftp/dwest'
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at auth.c:1387
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): retrieved UID 2001 for user 'dwest'
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): no supplemental groups found for user 'dwest'
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): user 'dwest' authenticated by mod_sql.c
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at auth.c:1273
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at auth.c:1275
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): USER PRIVS 2001 at mod_auth.c:1122
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:1124
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mkhome.c:292
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mkhome.c:320
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]):
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Config for FTP.SCOTTUSA.COM -- SCOTT-SPORTS:
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at auth.c:1389
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Environment successfully chroot()ed
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_auth.c:1293
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SETUP PRIVS at mod_auth.c:1305
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): IdentLookups
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DeferWelcome
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): MultilineRFC2228
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DefaultServer
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ShowSymlinks
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TimeoutNoTransfer
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TimeoutStalled
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TimeoutIdle
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DisplayLogin
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DisplayChdir
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DenyFilter
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): UserID
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): UserName
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): GroupID
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): GroupName
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Umask
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DirUmask
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): AllowOverwrite
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TransferLog
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLogFile
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DebugLevel
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaEngine
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DelayEngine
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ShaperEngine
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DefaultRoot
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLBackend
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLAuthTypes
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLAuthenticate
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLConnectInfo
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLUserTable
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLUsernameField
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLPasswordField
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLUidField
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGidField
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLHomedirField
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLShellField
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupTable
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupnameField
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupGIDField
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupMembersField
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLMinID
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): CreateHome
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_PASS
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_updatecount
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_STOR
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_DELE
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_modified
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaDirectoryTally
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaDisplayUnits
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaShowQuotas
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_get-quota-limit
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_get-quota-tally
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_update-quota-tally
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_insert-quota-tally
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_update-upload-tally
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_file-statistic-delete
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_update-download-tally
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_file-uploaded
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_file-downloaded
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_new-directory
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_delete-directory
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_rename-file
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_rename-directory
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaLimitTable
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaTallyTable
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RootLogin
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RequireValidShell
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_STOR
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_DELE
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_STOR
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RETR
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RETR
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_MKD
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RMD
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RNTO
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RNTO
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_auth.c:1212
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): opening TransferLog '/var/log/proftpd/xferlog'
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): setting group ID: 2001
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:1252
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): USER PRIVS 2001 at mod_auth.c:654
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): retrieved UID 2001 for user 'dwest'
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:658
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): set TZ environment variable to 'UTC'
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Preparing to chroot to directory '/ftp/dwest'
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at auth.c:1387
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/', fullpath = '/ftp/dwest/'.
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at auth.c:1389
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Environment successfully chroot()ed
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_auth.c:1293
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SETUP PRIVS at mod_auth.c:1305
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/', fullpath = '/ftp/dwest/'.
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_sql
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_cap
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): mod_cap/1.1: capabilities '= cap_net_bind_service+ep'
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_shaper
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS: ID switching disabled
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_quotatab
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_delay
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_log
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_ls
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_auth
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:1667
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): unable to display DisplayLogin file 'welcome.msg': No such file or directory
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_xfer
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_core
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PASS (hidden)' to mod_sql
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PASS (hidden)' to mod_log
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PASS (hidden)' to mod_auth
May 27 14:29:35 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): USER dwest: Login successful.
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_sql
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_cap
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): mod_cap/1.1: capabilities '= cap_net_bind_service+ep'
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_shaper
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS: ID switching disabled
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_quotatab
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_delay
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_log
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_ls
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_auth
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:1667
May 27 14:29:35 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:36 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): unable to display DisplayLogin file 'welcome.msg': No such file or directory
May 27 14:29:36 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_xfer
May 27 14:29:36 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_core
May 27 14:29:36 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PASS (hidden)' to mod_sql
May 27 14:29:36 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PASS (hidden)' to mod_log
May 27 14:29:36 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PASS (hidden)' to mod_auth
May 27 14:29:36 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): USER dwest: Login successful.
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'CWD /NewDir' to mod_core
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'CWD /NewDir' to mod_core
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'CWD /NewDir' to mod_core
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'CWD /NewDir' to mod_sql
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'CWD /NewDir' to mod_sql
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'CWD /NewDir' to mod_log
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'TYPE I' to mod_core
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'TYPE I' to mod_core
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'TYPE I' to mod_xfer
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'TYPE I' to mod_sql
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'TYPE I' to mod_sql
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'TYPE I' to mod_log
May 27 14:29:36 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'CWD /NewDir' to mod_core
May 27 14:29:36 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'CWD /NewDir' to mod_core
May 27 14:29:36 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'CWD /NewDir' to mod_core
May 27 14:29:36 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,208,232' to mod_core
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,208,232' to mod_core
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'PORT 66,210,44,66,208,232' to mod_core
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:29:36 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'CWD /NewDir' to mod_sql
May 27 14:29:36 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'CWD /NewDir' to mod_sql
May 27 14:29:36 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'CWD /NewDir' to mod_log
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PORT 66,210,44,66,208,232' to mod_sql
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,208,232' to mod_sql
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,208,232' to mod_log
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'MLSD' to mod_core
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'MLSD' to mod_core
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'MLSD' to mod_facts
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at inet.c:345
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at inet.c:408
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): active data connection opened - local : 10.99.13.97:20
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): active data connection opened - remote : 66.210.44.66:53480
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'MLSD' to mod_sql
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'MLSD' to mod_sql
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'MLSD' to mod_log
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'MLSD' to mod_facts
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,208,233' to mod_core
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,208,233' to mod_core
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'PORT 66,210,44,66,208,233' to mod_core
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:29:36 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'TYPE I' to mod_core
May 27 14:29:36 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'TYPE I' to mod_core
May 27 14:29:36 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'TYPE I' to mod_xfer
May 27 14:29:36 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'TYPE I' to mod_sql
May 27 14:29:36 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'TYPE I' to mod_sql
May 27 14:29:36 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'TYPE I' to mod_log
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PORT 66,210,44,66,208,233' to mod_sql
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,208,233' to mod_sql
May 27 14:29:36 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,208,233' to mod_log
May 27 14:29:36 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,208,234' to mod_core
May 27 14:29:36 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,208,234' to mod_core
May 27 14:29:36 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'PORT 66,210,44,66,208,234' to mod_core
May 27 14:29:36 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:29:37 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_core
May 27 14:29:37 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_core
May 27 14:29:37 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_quotatab
May 27 14:29:37 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_xfer
May 27 14:29:37 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir/Screen shot 2011-05-12 at 9.26.50 AM.png', fullpath = '/ftp/dwest/NewDir/Screen shot 2011-05-12 at 9.26.50 AM.png'.
May 27 14:29:37 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PORT 66,210,44,66,208,234' to mod_sql
May 27 14:29:37 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,208,234' to mod_sql
May 27 14:29:37 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,208,234' to mod_log
May 27 14:29:37 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): setting umask to 0002 (was 0002)
May 27 14:29:37 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'STOR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_xfer
May 27 14:29:37 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TransferRate (1666.667 KB/s, 0 bytes free) in effect
May 27 14:29:37 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-17 at 12.42.47 PM.png' to mod_core
May 27 14:29:37 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-17 at 12.42.47 PM.png' to mod_core
May 27 14:29:37 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-17 at 12.42.47 PM.png' to mod_quotatab
May 27 14:29:37 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at inet.c:345
May 27 14:29:37 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at inet.c:408
May 27 14:29:37 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:37 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-17 at 12.42.47 PM.png' to mod_xfer
May 27 14:29:37 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir/Screen shot 2011-05-17 at 12.42.47 PM.png', fullpath = '/ftp/dwest/NewDir/Screen shot 2011-05-17 at 12.42.47 PM.png'.
May 27 14:29:37 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): active data connection opened - local : 10.99.13.97:20
May 27 14:29:37 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): active data connection opened - remote : 66.210.44.66:53481
May 27 14:29:37 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): setting umask to 0002 (was 0002)
May 27 14:29:37 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'STOR Screen shot 2011-05-17 at 12.42.47 PM.png' to mod_xfer
May 27 14:29:37 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TransferRate (1666.667 KB/s, 0 bytes free) in effect
May 27 14:29:37 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at inet.c:345
May 27 14:29:37 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at inet.c:408
May 27 14:29:37 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:37 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): active data connection opened - local : 10.99.13.97:20
May 27 14:29:37 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): active data connection opened - remote : 66.210.44.66:53482
May 27 14:29:38 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'STOR Screen shot 2011-05-17 at 12.42.47 PM.png' to mod_sql
May 27 14:29:38 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'STOR Screen shot 2011-05-17 at 12.42.47 PM.png' to mod_quotatab
May 27 14:29:38 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'STOR Screen shot 2011-05-17 at 12.42.47 PM.png' to mod_sql
May 27 14:29:38 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'STOR Screen shot 2011-05-17 at 12.42.47 PM.png' to mod_sql
May 27 14:29:38 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): mod_sql/4.3: unrecoverable backend error: (1242) Subquery returns more than 1 row
May 27 14:29:38 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): mod_sql/4.3: check the SQLLogFile for more details
May 27 14:29:38 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:29:38 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:29:38 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:38 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:29:38 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:29:38 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:38 ip-10-99-13-97 proftpd[14090] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): FTP session closed.
May 27 14:29:38 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): rechecking TransferRates
May 27 14:29:38 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TransferRate (1666.667 KB/s, 0 bytes free) in effect
May 27 14:29:38 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'STOR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_sql
May 27 14:29:38 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'STOR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_quotatab
May 27 14:29:38 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'STOR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_sql
May 27 14:29:38 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'STOR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_sql
May 27 14:29:38 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): mod_sql/4.3: unrecoverable backend error: (1242) Subquery returns more than 1 row
May 27 14:29:38 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): mod_sql/4.3: check the SQLLogFile for more details
May 27 14:29:38 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:29:38 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:29:38 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:38 ip-10-99-13-97 proftpd[14089] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): FTP session closed.
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): connected - local : 10.99.13.97:21
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): connected - remote : 66.210.44.66:53483
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): FTP session opened.
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): connected - local : 10.99.13.97:21
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): connected - remote : 66.210.44.66:53484
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): FTP session opened.
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_core
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_core
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_delay
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_auth
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'USER dwest' to mod_auth
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'USER dwest' to mod_sql
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'USER dwest' to mod_delay
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'USER dwest' to mod_sql
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'USER dwest' to mod_log
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_core
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_core
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_delay
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_auth
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'USER dwest' to mod_auth
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'USER dwest' to mod_sql
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'USER dwest' to mod_delay
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'USER dwest' to mod_sql
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'USER dwest' to mod_log
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_core
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_core
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_shaper
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:1998
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:2000
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_sql
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_delay
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_auth
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'PASS (hidden)' to mod_auth
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): retrieved UID 2001 for user 'dwest'
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_core
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_core
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_shaper
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:1998
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:2000
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_sql
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_delay
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_auth
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'PASS (hidden)' to mod_auth
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): no supplemental groups found for user 'dwest'
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): user 'dwest' authenticated by mod_sql.c
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at auth.c:1273
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at auth.c:1275
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): USER PRIVS 2001 at mod_auth.c:1122
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:1124
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mkhome.c:292
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mkhome.c:320
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]):
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Config for FTP.SCOTTUSA.COM -- SCOTT-SPORTS:
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): IdentLookups
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DeferWelcome
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): MultilineRFC2228
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DefaultServer
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ShowSymlinks
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TimeoutNoTransfer
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TimeoutStalled
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TimeoutIdle
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DisplayLogin
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DisplayChdir
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DenyFilter
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): UserID
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): UserName
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): GroupID
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): GroupName
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Umask
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DirUmask
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): AllowOverwrite
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TransferLog
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLogFile
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DebugLevel
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaEngine
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DelayEngine
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ShaperEngine
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DefaultRoot
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLBackend
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLAuthTypes
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLAuthenticate
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLConnectInfo
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLUserTable
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLUsernameField
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLPasswordField
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLUidField
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGidField
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLHomedirField
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLShellField
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupTable
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupnameField
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupGIDField
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupMembersField
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLMinID
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): CreateHome
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_PASS
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_updatecount
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_STOR
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_DELE
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_modified
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaDirectoryTally
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaDisplayUnits
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaShowQuotas
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_get-quota-limit
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_get-quota-tally
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_update-quota-tally
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_insert-quota-tally
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_update-upload-tally
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_file-statistic-delete
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_update-download-tally
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_file-uploaded
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_file-downloaded
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_new-directory
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_delete-directory
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_rename-file
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_rename-directory
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaLimitTable
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaTallyTable
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RootLogin
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RequireValidShell
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_STOR
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_DELE
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_STOR
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RETR
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RETR
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_MKD
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RMD
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RNTO
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RNTO
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_auth.c:1212
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): opening TransferLog '/var/log/proftpd/xferlog'
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): setting group ID: 2001
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:1252
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): USER PRIVS 2001 at mod_auth.c:654
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): retrieved UID 2001 for user 'dwest'
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:658
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): set TZ environment variable to 'UTC'
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Preparing to chroot to directory '/ftp/dwest'
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at auth.c:1387
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): retrieved UID 2001 for user 'dwest'
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): no supplemental groups found for user 'dwest'
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): user 'dwest' authenticated by mod_sql.c
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at auth.c:1273
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at auth.c:1275
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): USER PRIVS 2001 at mod_auth.c:1122
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:1124
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mkhome.c:292
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mkhome.c:320
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]):
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Config for FTP.SCOTTUSA.COM -- SCOTT-SPORTS:
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): IdentLookups
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DeferWelcome
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): MultilineRFC2228
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DefaultServer
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ShowSymlinks
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TimeoutNoTransfer
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TimeoutStalled
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TimeoutIdle
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DisplayLogin
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DisplayChdir
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DenyFilter
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): UserID
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): UserName
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): GroupID
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): GroupName
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Umask
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DirUmask
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): AllowOverwrite
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TransferLog
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLogFile
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DebugLevel
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaEngine
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DelayEngine
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ShaperEngine
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DefaultRoot
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLBackend
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLAuthTypes
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLAuthenticate
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLConnectInfo
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLUserTable
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLUsernameField
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLPasswordField
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLUidField
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGidField
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLHomedirField
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLShellField
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupTable
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupnameField
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupGIDField
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupMembersField
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLMinID
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): CreateHome
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_PASS
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_updatecount
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_STOR
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_DELE
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_modified
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaDirectoryTally
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaDisplayUnits
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaShowQuotas
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_get-quota-limit
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_get-quota-tally
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_update-quota-tally
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_insert-quota-tally
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_update-upload-tally
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_file-statistic-delete
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_update-download-tally
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_file-uploaded
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_file-downloaded
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_new-directory
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_delete-directory
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_rename-file
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_rename-directory
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaLimitTable
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaTallyTable
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RootLogin
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RequireValidShell
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_STOR
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_DELE
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_STOR
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RETR
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RETR
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_MKD
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RMD
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RNTO
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RNTO
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_auth.c:1212
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): opening TransferLog '/var/log/proftpd/xferlog'
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): setting group ID: 2001
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:1252
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): USER PRIVS 2001 at mod_auth.c:654
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): retrieved UID 2001 for user 'dwest'
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:658
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): set TZ environment variable to 'UTC'
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Preparing to chroot to directory '/ftp/dwest'
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at auth.c:1387
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at auth.c:1389
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Environment successfully chroot()ed
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_auth.c:1293
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SETUP PRIVS at mod_auth.c:1305
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/', fullpath = '/ftp/dwest/'.
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at auth.c:1389
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Environment successfully chroot()ed
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_auth.c:1293
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SETUP PRIVS at mod_auth.c:1305
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/', fullpath = '/ftp/dwest/'.
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_sql
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_cap
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): mod_cap/1.1: capabilities '= cap_net_bind_service+ep'
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_shaper
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS: ID switching disabled
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_quotatab
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_delay
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_log
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_ls
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_auth
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:1667
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): unable to display DisplayLogin file 'welcome.msg': No such file or directory
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_xfer
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_core
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PASS (hidden)' to mod_sql
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PASS (hidden)' to mod_log
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PASS (hidden)' to mod_auth
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): USER dwest: Login successful.
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_sql
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_cap
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): mod_cap/1.1: capabilities '= cap_net_bind_service+ep'
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_shaper
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS: ID switching disabled
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_quotatab
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_delay
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_log
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_ls
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_auth
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:1667
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): unable to display DisplayLogin file 'welcome.msg': No such file or directory
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_xfer
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_core
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PASS (hidden)' to mod_sql
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PASS (hidden)' to mod_log
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PASS (hidden)' to mod_auth
May 27 14:29:38 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): USER dwest: Login successful.
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'CWD /NewDir' to mod_core
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'CWD /NewDir' to mod_core
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'CWD /NewDir' to mod_core
May 27 14:29:38 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:29:39 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'CWD /NewDir' to mod_sql
May 27 14:29:39 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'CWD /NewDir' to mod_sql
May 27 14:29:39 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'CWD /NewDir' to mod_log
May 27 14:29:39 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'TYPE I' to mod_core
May 27 14:29:39 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'TYPE I' to mod_core
May 27 14:29:39 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'TYPE I' to mod_xfer
May 27 14:29:39 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'TYPE I' to mod_sql
May 27 14:29:39 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'TYPE I' to mod_sql
May 27 14:29:39 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'TYPE I' to mod_log
May 27 14:29:39 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'CWD /NewDir' to mod_core
May 27 14:29:39 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'CWD /NewDir' to mod_core
May 27 14:29:39 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'CWD /NewDir' to mod_core
May 27 14:29:39 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:29:39 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,208,238' to mod_core
May 27 14:29:39 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,208,238' to mod_core
May 27 14:29:39 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'PORT 66,210,44,66,208,238' to mod_core
May 27 14:29:39 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:29:39 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'CWD /NewDir' to mod_sql
May 27 14:29:39 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'CWD /NewDir' to mod_sql
May 27 14:29:39 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'CWD /NewDir' to mod_log
May 27 14:29:39 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PORT 66,210,44,66,208,238' to mod_sql
May 27 14:29:39 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,208,238' to mod_sql
May 27 14:29:39 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,208,238' to mod_log
May 27 14:29:39 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'MLSD' to mod_core
May 27 14:29:39 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'MLSD' to mod_core
May 27 14:29:39 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'MLSD' to mod_facts
May 27 14:29:39 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:29:39 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at inet.c:345
May 27 14:29:39 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at inet.c:408
May 27 14:29:39 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:39 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): active data connection opened - local : 10.99.13.97:20
May 27 14:29:39 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): active data connection opened - remote : 66.210.44.66:53486
May 27 14:29:39 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir/Screen shot 2011-05-12 at 9.26.50 AM.png', fullpath = '/ftp/dwest/NewDir/Screen shot 2011-05-12 at 9.26.50 AM.png'.
May 27 14:29:39 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir/Screen shot 2011-05-17 at 12.42.47 PM.png', fullpath = '/ftp/dwest/NewDir/Screen shot 2011-05-17 at 12.42.47 PM.png'.
May 27 14:29:39 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'MLSD' to mod_sql
May 27 14:29:39 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'MLSD' to mod_sql
May 27 14:29:39 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'MLSD' to mod_log
May 27 14:29:39 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'MLSD' to mod_facts
May 27 14:29:39 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'TYPE I' to mod_core
May 27 14:29:39 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'TYPE I' to mod_core
May 27 14:29:39 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'TYPE I' to mod_xfer
May 27 14:29:39 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'TYPE I' to mod_sql
May 27 14:29:39 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'TYPE I' to mod_sql
May 27 14:29:39 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'TYPE I' to mod_log
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,208,239' to mod_core
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,208,239' to mod_core
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'PORT 66,210,44,66,208,239' to mod_core
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PORT 66,210,44,66,208,239' to mod_sql
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,208,239' to mod_sql
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,208,239' to mod_log
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'REST 86088' to mod_core
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'REST 86088' to mod_core
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'REST 86088' to mod_xfer
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'REST 86088' to mod_sql
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'REST 86088' to mod_sql
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'REST 86088' to mod_log
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_core
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_core
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_quotatab
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_xfer
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir/Screen shot 2011-05-12 at 9.26.50 AM.png', fullpath = '/ftp/dwest/NewDir/Screen shot 2011-05-12 at 9.26.50 AM.png'.
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): setting umask to 0002 (was 0002)
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD_ERR command 'STOR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_sql
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD_ERR command 'STOR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_quotatab
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD_ERR command 'STOR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_sql
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD_ERR command 'STOR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_log
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD_ERR command 'STOR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_xfer
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,208,240' to mod_core
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,208,240' to mod_core
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'PORT 66,210,44,66,208,240' to mod_core
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PORT 66,210,44,66,208,240' to mod_sql
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,208,240' to mod_sql
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,208,240' to mod_log
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'REST 0' to mod_core
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'REST 0' to mod_core
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'REST 0' to mod_xfer
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'REST 0' to mod_sql
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'REST 0' to mod_sql
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'REST 0' to mod_log
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'MLSD' to mod_core
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'MLSD' to mod_core
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'MLSD' to mod_facts
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at inet.c:345
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at inet.c:408
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): active data connection opened - local : 10.99.13.97:20
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): active data connection opened - remote : 66.210.44.66:53488
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir/Screen shot 2011-05-12 at 9.26.50 AM.png', fullpath = '/ftp/dwest/NewDir/Screen shot 2011-05-12 at 9.26.50 AM.png'.
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir/Screen shot 2011-05-17 at 12.42.47 PM.png', fullpath = '/ftp/dwest/NewDir/Screen shot 2011-05-17 at 12.42.47 PM.png'.
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'MLSD' to mod_sql
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'MLSD' to mod_sql
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'MLSD' to mod_log
May 27 14:29:40 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'MLSD' to mod_facts
May 27 14:29:49 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,208,254' to mod_core
May 27 14:29:49 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,208,254' to mod_core
May 27 14:29:49 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'PORT 66,210,44,66,208,254' to mod_core
May 27 14:29:49 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:29:49 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PORT 66,210,44,66,208,254' to mod_sql
May 27 14:29:49 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,208,254' to mod_sql
May 27 14:29:49 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,208,254' to mod_log
May 27 14:29:50 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-17 at 12.42.47 PM.png' to mod_core
May 27 14:29:50 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-17 at 12.42.47 PM.png' to mod_core
May 27 14:29:50 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-17 at 12.42.47 PM.png' to mod_quotatab
May 27 14:29:50 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-17 at 12.42.47 PM.png' to mod_xfer
May 27 14:29:50 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir/Screen shot 2011-05-17 at 12.42.47 PM.png', fullpath = '/ftp/dwest/NewDir/Screen shot 2011-05-17 at 12.42.47 PM.png'.
May 27 14:29:50 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): setting umask to 0002 (was 0002)
May 27 14:29:50 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'STOR Screen shot 2011-05-17 at 12.42.47 PM.png' to mod_xfer
May 27 14:29:50 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TransferRate (1666.667 KB/s, 0 bytes free) in effect
May 27 14:29:50 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at inet.c:345
May 27 14:29:50 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at inet.c:408
May 27 14:29:50 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:50 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): active data connection opened - local : 10.99.13.97:20
May 27 14:29:50 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): active data connection opened - remote : 66.210.44.66:53502
May 27 14:29:50 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'STOR Screen shot 2011-05-17 at 12.42.47 PM.png' to mod_sql
May 27 14:29:50 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'STOR Screen shot 2011-05-17 at 12.42.47 PM.png' to mod_quotatab
May 27 14:29:50 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'STOR Screen shot 2011-05-17 at 12.42.47 PM.png' to mod_sql
May 27 14:29:50 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'STOR Screen shot 2011-05-17 at 12.42.47 PM.png' to mod_sql
May 27 14:29:50 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): mod_sql/4.3: unrecoverable backend error: (1242) Subquery returns more than 1 row
May 27 14:29:50 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): mod_sql/4.3: check the SQLLogFile for more details
May 27 14:29:50 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:29:50 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:29:50 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:50 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:29:50 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:29:50 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:50 ip-10-99-13-97 proftpd[14091] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): FTP session closed.
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): connected - local : 10.99.13.97:21
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): connected - remote : 66.210.44.66:53507
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): FTP session opened.
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_core
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_core
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_delay
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_auth
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'USER dwest' to mod_auth
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'USER dwest' to mod_sql
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'USER dwest' to mod_delay
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'USER dwest' to mod_sql
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'USER dwest' to mod_log
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_core
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_core
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_shaper
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:1998
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:2000
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_sql
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_delay
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_auth
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'PASS (hidden)' to mod_auth
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): retrieved UID 2001 for user 'dwest'
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): no supplemental groups found for user 'dwest'
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): user 'dwest' authenticated by mod_sql.c
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at auth.c:1273
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at auth.c:1275
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): USER PRIVS 2001 at mod_auth.c:1122
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:1124
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mkhome.c:292
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mkhome.c:320
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]):
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Config for FTP.SCOTTUSA.COM -- SCOTT-SPORTS:
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): IdentLookups
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DeferWelcome
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): MultilineRFC2228
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DefaultServer
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ShowSymlinks
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TimeoutNoTransfer
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TimeoutStalled
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TimeoutIdle
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DisplayLogin
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DisplayChdir
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DenyFilter
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): UserID
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): UserName
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): GroupID
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): GroupName
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Umask
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DirUmask
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): AllowOverwrite
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TransferLog
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLogFile
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DebugLevel
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaEngine
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DelayEngine
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ShaperEngine
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DefaultRoot
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLBackend
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLAuthTypes
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLAuthenticate
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLConnectInfo
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLUserTable
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLUsernameField
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLPasswordField
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLUidField
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGidField
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLHomedirField
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLShellField
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupTable
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupnameField
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupGIDField
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupMembersField
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLMinID
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): CreateHome
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_PASS
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_updatecount
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_STOR
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_DELE
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_modified
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaDirectoryTally
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaDisplayUnits
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaShowQuotas
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_get-quota-limit
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_get-quota-tally
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_update-quota-tally
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_insert-quota-tally
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_update-upload-tally
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_file-statistic-delete
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_update-download-tally
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_file-uploaded
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_file-downloaded
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_new-directory
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_delete-directory
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_rename-file
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_rename-directory
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaLimitTable
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaTallyTable
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RootLogin
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RequireValidShell
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_STOR
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_DELE
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_STOR
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RETR
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RETR
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_MKD
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RMD
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RNTO
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RNTO
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_auth.c:1212
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): opening TransferLog '/var/log/proftpd/xferlog'
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): setting group ID: 2001
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:1252
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): USER PRIVS 2001 at mod_auth.c:654
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): retrieved UID 2001 for user 'dwest'
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:658
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): set TZ environment variable to 'UTC'
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Preparing to chroot to directory '/ftp/dwest'
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at auth.c:1387
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at auth.c:1389
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Environment successfully chroot()ed
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_auth.c:1293
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SETUP PRIVS at mod_auth.c:1305
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/', fullpath = '/ftp/dwest/'.
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_sql
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_cap
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): mod_cap/1.1: capabilities '= cap_net_bind_service+ep'
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_shaper
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS: ID switching disabled
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_quotatab
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_delay
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_log
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_ls
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_auth
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:1667
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): unable to display DisplayLogin file 'welcome.msg': No such file or directory
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_xfer
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_core
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PASS (hidden)' to mod_sql
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PASS (hidden)' to mod_log
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PASS (hidden)' to mod_auth
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): USER dwest: Login successful.
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'CWD /NewDir' to mod_core
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'CWD /NewDir' to mod_core
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'CWD /NewDir' to mod_core
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'CWD /NewDir' to mod_sql
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'CWD /NewDir' to mod_sql
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'CWD /NewDir' to mod_log
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'TYPE I' to mod_core
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'TYPE I' to mod_core
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'TYPE I' to mod_xfer
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'TYPE I' to mod_sql
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'TYPE I' to mod_sql
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'TYPE I' to mod_log
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,209,9' to mod_core
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,209,9' to mod_core
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'PORT 66,210,44,66,209,9' to mod_core
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PORT 66,210,44,66,209,9' to mod_sql
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,209,9' to mod_sql
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,209,9' to mod_log
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'MLSD' to mod_core
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'MLSD' to mod_core
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'MLSD' to mod_facts
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at inet.c:345
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at inet.c:408
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): active data connection opened - local : 10.99.13.97:20
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): active data connection opened - remote : 66.210.44.66:53513
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir/Screen shot 2011-05-12 at 9.26.50 AM.png', fullpath = '/ftp/dwest/NewDir/Screen shot 2011-05-12 at 9.26.50 AM.png'.
May 27 14:29:51 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir/Screen shot 2011-05-17 at 12.42.47 PM.png', fullpath = '/ftp/dwest/NewDir/Screen shot 2011-05-17 at 12.42.47 PM.png'.
May 27 14:29:53 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,209,10' to mod_core
May 27 14:29:53 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,209,10' to mod_core
May 27 14:29:53 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'PORT 66,210,44,66,209,10' to mod_core
May 27 14:29:53 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:29:54 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PORT 66,210,44,66,209,10' to mod_sql
May 27 14:29:54 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,209,10' to mod_sql
May 27 14:29:54 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,209,10' to mod_log
May 27 14:29:55 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'MLSD' to mod_sql
May 27 14:29:55 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'MLSD' to mod_sql
May 27 14:29:55 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'MLSD' to mod_log
May 27 14:29:55 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'MLSD' to mod_facts
May 27 14:29:55 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_core
May 27 14:29:55 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_core
May 27 14:29:55 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_quotatab
May 27 14:29:55 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_xfer
May 27 14:29:55 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir/Screen shot 2011-05-12 at 9.26.50 AM.png', fullpath = '/ftp/dwest/NewDir/Screen shot 2011-05-12 at 9.26.50 AM.png'.
May 27 14:29:55 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): setting umask to 0002 (was 0002)
May 27 14:29:55 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'STOR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_xfer
May 27 14:29:55 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TransferRate (1666.667 KB/s, 0 bytes free) in effect
May 27 14:29:55 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at inet.c:345
May 27 14:29:55 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at inet.c:408
May 27 14:29:55 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:55 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): active data connection opened - local : 10.99.13.97:20
May 27 14:29:55 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): active data connection opened - remote : 66.210.44.66:53514
May 27 14:29:56 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'STOR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_sql
May 27 14:29:56 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'STOR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_quotatab
May 27 14:29:56 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'STOR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_sql
May 27 14:29:56 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'STOR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_sql
May 27 14:29:56 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): mod_sql/4.3: unrecoverable backend error: (1242) Subquery returns more than 1 row
May 27 14:29:56 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): mod_sql/4.3: check the SQLLogFile for more details
May 27 14:29:56 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:29:56 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:29:56 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:56 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:29:56 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:29:56 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:56 ip-10-99-13-97 proftpd[14092] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): FTP session closed.
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): connected - local : 10.99.13.97:21
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): connected - remote : 66.210.44.66:53516
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): FTP session opened.
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_core
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_core
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_delay
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_auth
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'USER dwest' to mod_auth
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'USER dwest' to mod_sql
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'USER dwest' to mod_delay
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'USER dwest' to mod_sql
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'USER dwest' to mod_log
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_core
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_core
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_shaper
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:1998
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:2000
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_sql
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_delay
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_auth
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'PASS (hidden)' to mod_auth
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): retrieved UID 2001 for user 'dwest'
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): no supplemental groups found for user 'dwest'
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): user 'dwest' authenticated by mod_sql.c
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at auth.c:1273
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at auth.c:1275
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): USER PRIVS 2001 at mod_auth.c:1122
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:1124
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mkhome.c:292
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mkhome.c:320
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]):
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Config for FTP.SCOTTUSA.COM -- SCOTT-SPORTS:
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): IdentLookups
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DeferWelcome
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): MultilineRFC2228
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DefaultServer
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ShowSymlinks
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TimeoutNoTransfer
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TimeoutStalled
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TimeoutIdle
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DisplayLogin
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DisplayChdir
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DenyFilter
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): UserID
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): UserName
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): GroupID
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): GroupName
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Umask
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DirUmask
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): AllowOverwrite
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TransferLog
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLogFile
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DebugLevel
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaEngine
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DelayEngine
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ShaperEngine
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DefaultRoot
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLBackend
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLAuthTypes
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLAuthenticate
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLConnectInfo
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLUserTable
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLUsernameField
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLPasswordField
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLUidField
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGidField
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLHomedirField
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLShellField
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupTable
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupnameField
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupGIDField
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupMembersField
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLMinID
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): CreateHome
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_PASS
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_updatecount
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_STOR
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_DELE
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_modified
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaDirectoryTally
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaDisplayUnits
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaShowQuotas
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_get-quota-limit
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_get-quota-tally
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_update-quota-tally
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_insert-quota-tally
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_update-upload-tally
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_file-statistic-delete
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_update-download-tally
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_file-uploaded
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_file-downloaded
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_new-directory
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_delete-directory
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_rename-file
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_rename-directory
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaLimitTable
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaTallyTable
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RootLogin
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RequireValidShell
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_STOR
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_DELE
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_STOR
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RETR
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RETR
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_MKD
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RMD
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RNTO
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RNTO
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_auth.c:1212
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): opening TransferLog '/var/log/proftpd/xferlog'
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): setting group ID: 2001
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:1252
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): USER PRIVS 2001 at mod_auth.c:654
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): retrieved UID 2001 for user 'dwest'
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:658
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): set TZ environment variable to 'UTC'
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Preparing to chroot to directory '/ftp/dwest'
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at auth.c:1387
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at auth.c:1389
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Environment successfully chroot()ed
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_auth.c:1293
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SETUP PRIVS at mod_auth.c:1305
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/', fullpath = '/ftp/dwest/'.
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_sql
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_cap
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): mod_cap/1.1: capabilities '= cap_net_bind_service+ep'
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_shaper
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS: ID switching disabled
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_quotatab
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_delay
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_log
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_ls
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_auth
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:1667
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): unable to display DisplayLogin file 'welcome.msg': No such file or directory
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_xfer
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_core
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PASS (hidden)' to mod_sql
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PASS (hidden)' to mod_log
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PASS (hidden)' to mod_auth
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): USER dwest: Login successful.
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'CWD /NewDir' to mod_core
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'CWD /NewDir' to mod_core
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'CWD /NewDir' to mod_core
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'CWD /NewDir' to mod_sql
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'CWD /NewDir' to mod_sql
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'CWD /NewDir' to mod_log
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'TYPE I' to mod_core
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'TYPE I' to mod_core
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'TYPE I' to mod_xfer
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'TYPE I' to mod_sql
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'TYPE I' to mod_sql
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'TYPE I' to mod_log
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,209,15' to mod_core
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,209,15' to mod_core
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'PORT 66,210,44,66,209,15' to mod_core
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PORT 66,210,44,66,209,15' to mod_sql
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,209,15' to mod_sql
May 27 14:29:56 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,209,15' to mod_log
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'MLSD' to mod_core
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'MLSD' to mod_core
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'MLSD' to mod_facts
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at inet.c:345
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at inet.c:408
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:57 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,209,16' to mod_core
May 27 14:29:57 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,209,16' to mod_core
May 27 14:29:57 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'PORT 66,210,44,66,209,16' to mod_core
May 27 14:29:57 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): active data connection opened - local : 10.99.13.97:20
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): active data connection opened - remote : 66.210.44.66:53519
May 27 14:29:57 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PORT 66,210,44,66,209,16' to mod_sql
May 27 14:29:57 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,209,16' to mod_sql
May 27 14:29:57 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,209,16' to mod_log
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir/Screen shot 2011-05-12 at 9.26.50 AM.png', fullpath = '/ftp/dwest/NewDir/Screen shot 2011-05-12 at 9.26.50 AM.png'.
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir/Screen shot 2011-05-17 at 12.42.47 PM.png', fullpath = '/ftp/dwest/NewDir/Screen shot 2011-05-17 at 12.42.47 PM.png'.
May 27 14:29:57 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-18 at 1.38.22 PM.png' to mod_core
May 27 14:29:57 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-18 at 1.38.22 PM.png' to mod_core
May 27 14:29:57 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-18 at 1.38.22 PM.png' to mod_quotatab
May 27 14:29:57 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-18 at 1.38.22 PM.png' to mod_xfer
May 27 14:29:57 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir/Screen shot 2011-05-18 at 1.38.22 PM.png', fullpath = '/ftp/dwest/NewDir/Screen shot 2011-05-18 at 1.38.22 PM.png'.
May 27 14:29:57 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): setting umask to 0002 (was 0002)
May 27 14:29:57 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'STOR Screen shot 2011-05-18 at 1.38.22 PM.png' to mod_xfer
May 27 14:29:57 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TransferRate (1666.667 KB/s, 0 bytes free) in effect
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'MLSD' to mod_sql
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'MLSD' to mod_sql
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'MLSD' to mod_log
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'MLSD' to mod_facts
May 27 14:29:57 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at inet.c:345
May 27 14:29:57 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at inet.c:408
May 27 14:29:57 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,209,18' to mod_core
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,209,18' to mod_core
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'PORT 66,210,44,66,209,18' to mod_core
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:29:57 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): active data connection opened - local : 10.99.13.97:20
May 27 14:29:57 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): active data connection opened - remote : 66.210.44.66:53520
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PORT 66,210,44,66,209,18' to mod_sql
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,209,18' to mod_sql
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,209,18' to mod_log
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'REST 86088' to mod_core
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'REST 86088' to mod_core
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'REST 86088' to mod_xfer
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'REST 86088' to mod_sql
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'REST 86088' to mod_sql
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'REST 86088' to mod_log
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_core
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_core
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_quotatab
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_xfer
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir/Screen shot 2011-05-12 at 9.26.50 AM.png', fullpath = '/ftp/dwest/NewDir/Screen shot 2011-05-12 at 9.26.50 AM.png'.
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): setting umask to 0002 (was 0002)
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD_ERR command 'STOR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_sql
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD_ERR command 'STOR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_quotatab
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD_ERR command 'STOR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_sql
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD_ERR command 'STOR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_log
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD_ERR command 'STOR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_xfer
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,209,22' to mod_core
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,209,22' to mod_core
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'PORT 66,210,44,66,209,22' to mod_core
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PORT 66,210,44,66,209,22' to mod_sql
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,209,22' to mod_sql
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,209,22' to mod_log
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'REST 0' to mod_core
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'REST 0' to mod_core
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'REST 0' to mod_xfer
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'REST 0' to mod_sql
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'REST 0' to mod_sql
May 27 14:29:57 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'REST 0' to mod_log
May 27 14:29:58 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'MLSD' to mod_core
May 27 14:29:58 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'MLSD' to mod_core
May 27 14:29:58 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'MLSD' to mod_facts
May 27 14:29:58 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:29:58 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at inet.c:345
May 27 14:29:58 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at inet.c:408
May 27 14:29:58 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:58 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): active data connection opened - local : 10.99.13.97:20
May 27 14:29:58 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): active data connection opened - remote : 66.210.44.66:53526
May 27 14:29:58 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir/Screen shot 2011-05-12 at 9.26.50 AM.png', fullpath = '/ftp/dwest/NewDir/Screen shot 2011-05-12 at 9.26.50 AM.png'.
May 27 14:29:58 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir/Screen shot 2011-05-17 at 12.42.47 PM.png', fullpath = '/ftp/dwest/NewDir/Screen shot 2011-05-17 at 12.42.47 PM.png'.
May 27 14:29:58 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir/Screen shot 2011-05-18 at 1.38.22 PM.png', fullpath = '/ftp/dwest/NewDir/Screen shot 2011-05-18 at 1.38.22 PM.png'.
May 27 14:29:58 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'MLSD' to mod_sql
May 27 14:29:58 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'MLSD' to mod_sql
May 27 14:29:58 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'MLSD' to mod_log
May 27 14:29:58 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'MLSD' to mod_facts
May 27 14:29:58 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'STOR Screen shot 2011-05-18 at 1.38.22 PM.png' to mod_sql
May 27 14:29:58 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'STOR Screen shot 2011-05-18 at 1.38.22 PM.png' to mod_quotatab
May 27 14:29:58 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'STOR Screen shot 2011-05-18 at 1.38.22 PM.png' to mod_sql
May 27 14:29:58 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'STOR Screen shot 2011-05-18 at 1.38.22 PM.png' to mod_sql
May 27 14:29:58 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): mod_sql/4.3: unrecoverable backend error: (1242) Subquery returns more than 1 row
May 27 14:29:58 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): mod_sql/4.3: check the SQLLogFile for more details
May 27 14:29:58 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:29:58 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:29:58 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:58 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:29:58 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:29:58 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:58 ip-10-99-13-97 proftpd[14096] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): FTP session closed.
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): connected - local : 10.99.13.97:21
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): connected - remote : 66.210.44.66:53533
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): FTP session opened.
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_core
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_core
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_delay
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_auth
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'USER dwest' to mod_auth
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'USER dwest' to mod_sql
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'USER dwest' to mod_delay
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'USER dwest' to mod_sql
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'USER dwest' to mod_log
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_core
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_core
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_shaper
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:1998
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:2000
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_sql
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_delay
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_auth
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'PASS (hidden)' to mod_auth
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): retrieved UID 2001 for user 'dwest'
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): no supplemental groups found for user 'dwest'
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): user 'dwest' authenticated by mod_sql.c
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at auth.c:1273
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at auth.c:1275
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): USER PRIVS 2001 at mod_auth.c:1122
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:1124
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mkhome.c:292
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mkhome.c:320
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]):
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Config for FTP.SCOTTUSA.COM -- SCOTT-SPORTS:
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): IdentLookups
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DeferWelcome
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): MultilineRFC2228
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DefaultServer
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ShowSymlinks
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TimeoutNoTransfer
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TimeoutStalled
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TimeoutIdle
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DisplayLogin
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DisplayChdir
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DenyFilter
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): UserID
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): UserName
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): GroupID
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): GroupName
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Umask
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DirUmask
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): AllowOverwrite
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TransferLog
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLogFile
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DebugLevel
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaEngine
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DelayEngine
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ShaperEngine
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DefaultRoot
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLBackend
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLAuthTypes
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLAuthenticate
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLConnectInfo
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLUserTable
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLUsernameField
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLPasswordField
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLUidField
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGidField
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLHomedirField
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLShellField
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupTable
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupnameField
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupGIDField
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupMembersField
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLMinID
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): CreateHome
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_PASS
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_updatecount
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_STOR
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_DELE
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_modified
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaDirectoryTally
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaDisplayUnits
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaShowQuotas
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_get-quota-limit
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_get-quota-tally
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_update-quota-tally
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_insert-quota-tally
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_update-upload-tally
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_file-statistic-delete
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_update-download-tally
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_file-uploaded
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_file-downloaded
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_new-directory
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_delete-directory
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_rename-file
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_rename-directory
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaLimitTable
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaTallyTable
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RootLogin
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RequireValidShell
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_STOR
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_DELE
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_STOR
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RETR
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RETR
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_MKD
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RMD
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RNTO
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RNTO
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_auth.c:1212
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): opening TransferLog '/var/log/proftpd/xferlog'
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): setting group ID: 2001
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:1252
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): USER PRIVS 2001 at mod_auth.c:654
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): retrieved UID 2001 for user 'dwest'
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:658
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): set TZ environment variable to 'UTC'
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Preparing to chroot to directory '/ftp/dwest'
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at auth.c:1387
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at auth.c:1389
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Environment successfully chroot()ed
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_auth.c:1293
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SETUP PRIVS at mod_auth.c:1305
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/', fullpath = '/ftp/dwest/'.
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_sql
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_cap
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): mod_cap/1.1: capabilities '= cap_net_bind_service+ep'
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_shaper
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS: ID switching disabled
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_quotatab
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_delay
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_log
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_ls
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_auth
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:1667
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): unable to display DisplayLogin file 'welcome.msg': No such file or directory
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_xfer
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_core
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PASS (hidden)' to mod_sql
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PASS (hidden)' to mod_log
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PASS (hidden)' to mod_auth
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): USER dwest: Login successful.
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'CWD /NewDir' to mod_core
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'CWD /NewDir' to mod_core
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'CWD /NewDir' to mod_core
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'CWD /NewDir' to mod_sql
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'CWD /NewDir' to mod_sql
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'CWD /NewDir' to mod_log
May 27 14:29:59 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,209,31' to mod_core
May 27 14:29:59 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,209,31' to mod_core
May 27 14:29:59 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'PORT 66,210,44,66,209,31' to mod_core
May 27 14:29:59 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'TYPE I' to mod_core
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'TYPE I' to mod_core
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'TYPE I' to mod_xfer
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'TYPE I' to mod_sql
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'TYPE I' to mod_sql
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'TYPE I' to mod_log
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,209,32' to mod_core
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,209,32' to mod_core
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'PORT 66,210,44,66,209,32' to mod_core
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:29:59 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PORT 66,210,44,66,209,31' to mod_sql
May 27 14:29:59 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,209,31' to mod_sql
May 27 14:29:59 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,209,31' to mod_log
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PORT 66,210,44,66,209,32' to mod_sql
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,209,32' to mod_sql
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,209,32' to mod_log
May 27 14:29:59 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-18 at 1.40.48 PM.png' to mod_core
May 27 14:29:59 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-18 at 1.40.48 PM.png' to mod_core
May 27 14:29:59 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-18 at 1.40.48 PM.png' to mod_quotatab
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'MLSD' to mod_core
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'MLSD' to mod_core
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'MLSD' to mod_facts
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:29:59 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-18 at 1.40.48 PM.png' to mod_xfer
May 27 14:29:59 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir/Screen shot 2011-05-18 at 1.40.48 PM.png', fullpath = '/ftp/dwest/NewDir/Screen shot 2011-05-18 at 1.40.48 PM.png'.
May 27 14:29:59 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): setting umask to 0002 (was 0002)
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at inet.c:345
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at inet.c:408
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:59 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'STOR Screen shot 2011-05-18 at 1.40.48 PM.png' to mod_xfer
May 27 14:29:59 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TransferRate (1666.667 KB/s, 0 bytes free) in effect
May 27 14:29:59 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at inet.c:345
May 27 14:29:59 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at inet.c:408
May 27 14:29:59 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): active data connection opened - local : 10.99.13.97:20
May 27 14:29:59 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): active data connection opened - remote : 66.210.44.66:53536
May 27 14:30:00 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): active data connection opened - local : 10.99.13.97:20
May 27 14:30:00 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): active data connection opened - remote : 66.210.44.66:53535
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir/Screen shot 2011-05-12 at 9.26.50 AM.png', fullpath = '/ftp/dwest/NewDir/Screen shot 2011-05-12 at 9.26.50 AM.png'.
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir/Screen shot 2011-05-17 at 12.42.47 PM.png', fullpath = '/ftp/dwest/NewDir/Screen shot 2011-05-17 at 12.42.47 PM.png'.
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir/Screen shot 2011-05-18 at 1.38.22 PM.png', fullpath = '/ftp/dwest/NewDir/Screen shot 2011-05-18 at 1.38.22 PM.png'.
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir/Screen shot 2011-05-18 at 1.40.48 PM.png', fullpath = '/ftp/dwest/NewDir/Screen shot 2011-05-18 at 1.40.48 PM.png'.
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'MLSD' to mod_sql
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'MLSD' to mod_sql
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'MLSD' to mod_log
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'MLSD' to mod_facts
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,209,34' to mod_core
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,209,34' to mod_core
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'PORT 66,210,44,66,209,34' to mod_core
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PORT 66,210,44,66,209,34' to mod_sql
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,209,34' to mod_sql
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,209,34' to mod_log
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'REST 293455' to mod_core
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'REST 293455' to mod_core
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'REST 293455' to mod_xfer
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'REST 293455' to mod_sql
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'REST 293455' to mod_sql
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'REST 293455' to mod_log
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-18 at 1.38.22 PM.png' to mod_core
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-18 at 1.38.22 PM.png' to mod_core
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-18 at 1.38.22 PM.png' to mod_quotatab
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-18 at 1.38.22 PM.png' to mod_xfer
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir/Screen shot 2011-05-18 at 1.38.22 PM.png', fullpath = '/ftp/dwest/NewDir/Screen shot 2011-05-18 at 1.38.22 PM.png'.
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): setting umask to 0002 (was 0002)
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD_ERR command 'STOR Screen shot 2011-05-18 at 1.38.22 PM.png' to mod_sql
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD_ERR command 'STOR Screen shot 2011-05-18 at 1.38.22 PM.png' to mod_quotatab
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD_ERR command 'STOR Screen shot 2011-05-18 at 1.38.22 PM.png' to mod_sql
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD_ERR command 'STOR Screen shot 2011-05-18 at 1.38.22 PM.png' to mod_log
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD_ERR command 'STOR Screen shot 2011-05-18 at 1.38.22 PM.png' to mod_xfer
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,209,35' to mod_core
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,209,35' to mod_core
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'PORT 66,210,44,66,209,35' to mod_core
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PORT 66,210,44,66,209,35' to mod_sql
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,209,35' to mod_sql
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,209,35' to mod_log
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'REST 0' to mod_core
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'REST 0' to mod_core
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'REST 0' to mod_xfer
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'REST 0' to mod_sql
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'REST 0' to mod_sql
May 27 14:30:00 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'REST 0' to mod_log
May 27 14:30:01 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'MLSD' to mod_core
May 27 14:30:01 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'MLSD' to mod_core
May 27 14:30:01 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'MLSD' to mod_facts
May 27 14:30:01 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:30:01 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at inet.c:345
May 27 14:30:01 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at inet.c:408
May 27 14:30:01 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:30:01 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): active data connection opened - local : 10.99.13.97:20
May 27 14:30:01 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): active data connection opened - remote : 66.210.44.66:53539
May 27 14:30:01 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'STOR Screen shot 2011-05-18 at 1.40.48 PM.png' to mod_sql
May 27 14:30:01 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'STOR Screen shot 2011-05-18 at 1.40.48 PM.png' to mod_quotatab
May 27 14:30:01 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'STOR Screen shot 2011-05-18 at 1.40.48 PM.png' to mod_sql
May 27 14:30:01 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'STOR Screen shot 2011-05-18 at 1.40.48 PM.png' to mod_sql
May 27 14:30:01 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): mod_sql/4.3: unrecoverable backend error: (1242) Subquery returns more than 1 row
May 27 14:30:01 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): mod_sql/4.3: check the SQLLogFile for more details
May 27 14:30:01 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:30:01 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:30:01 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:30:01 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:30:01 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:30:01 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:30:01 ip-10-99-13-97 proftpd[14098] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): FTP session closed.
May 27 14:30:01 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir/Screen shot 2011-05-12 at 9.26.50 AM.png', fullpath = '/ftp/dwest/NewDir/Screen shot 2011-05-12 at 9.26.50 AM.png'.
May 27 14:30:01 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir/Screen shot 2011-05-17 at 12.42.47 PM.png', fullpath = '/ftp/dwest/NewDir/Screen shot 2011-05-17 at 12.42.47 PM.png'.
May 27 14:30:01 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir/Screen shot 2011-05-18 at 1.38.22 PM.png', fullpath = '/ftp/dwest/NewDir/Screen shot 2011-05-18 at 1.38.22 PM.png'.
May 27 14:30:01 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir/Screen shot 2011-05-18 at 1.40.48 PM.png', fullpath = '/ftp/dwest/NewDir/Screen shot 2011-05-18 at 1.40.48 PM.png'.
May 27 14:30:01 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'MLSD' to mod_sql
May 27 14:30:01 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'MLSD' to mod_sql
May 27 14:30:01 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'MLSD' to mod_log
May 27 14:30:01 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'MLSD' to mod_facts
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): connected - local : 10.99.13.97:21
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): connected - remote : 66.210.44.66:53540
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): FTP session opened.
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_core
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_core
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_delay
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_auth
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'USER dwest' to mod_auth
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'USER dwest' to mod_sql
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'USER dwest' to mod_delay
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'USER dwest' to mod_sql
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'USER dwest' to mod_log
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_core
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_core
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_shaper
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:1998
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:2000
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_sql
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_delay
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_auth
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'PASS (hidden)' to mod_auth
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): retrieved UID 2001 for user 'dwest'
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): no supplemental groups found for user 'dwest'
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): user 'dwest' authenticated by mod_sql.c
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at auth.c:1273
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at auth.c:1275
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): USER PRIVS 2001 at mod_auth.c:1122
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:1124
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mkhome.c:292
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mkhome.c:320
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]):
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Config for FTP.SCOTTUSA.COM -- SCOTT-SPORTS:
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): IdentLookups
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DeferWelcome
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): MultilineRFC2228
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DefaultServer
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ShowSymlinks
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TimeoutNoTransfer
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TimeoutStalled
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TimeoutIdle
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DisplayLogin
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DisplayChdir
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DenyFilter
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): UserID
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): UserName
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): GroupID
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): GroupName
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Umask
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DirUmask
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): AllowOverwrite
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TransferLog
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLogFile
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DebugLevel
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaEngine
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DelayEngine
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ShaperEngine
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DefaultRoot
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLBackend
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLAuthTypes
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLAuthenticate
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLConnectInfo
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLUserTable
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLUsernameField
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLPasswordField
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLUidField
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGidField
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLHomedirField
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLShellField
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupTable
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupnameField
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupGIDField
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupMembersField
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLMinID
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): CreateHome
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_PASS
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_updatecount
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_STOR
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_DELE
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_modified
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaDirectoryTally
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaDisplayUnits
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaShowQuotas
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_get-quota-limit
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_get-quota-tally
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_update-quota-tally
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_insert-quota-tally
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_update-upload-tally
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_file-statistic-delete
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_update-download-tally
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_file-uploaded
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_file-downloaded
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_new-directory
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_delete-directory
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_rename-file
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_rename-directory
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaLimitTable
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaTallyTable
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RootLogin
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RequireValidShell
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_STOR
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_DELE
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_STOR
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RETR
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RETR
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_MKD
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RMD
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RNTO
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RNTO
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_auth.c:1212
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): opening TransferLog '/var/log/proftpd/xferlog'
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): setting group ID: 2001
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:1252
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): USER PRIVS 2001 at mod_auth.c:654
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): retrieved UID 2001 for user 'dwest'
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:658
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): set TZ environment variable to 'UTC'
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Preparing to chroot to directory '/ftp/dwest'
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at auth.c:1387
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at auth.c:1389
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Environment successfully chroot()ed
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_auth.c:1293
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SETUP PRIVS at mod_auth.c:1305
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/', fullpath = '/ftp/dwest/'.
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_sql
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_cap
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): mod_cap/1.1: capabilities '= cap_net_bind_service+ep'
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_shaper
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS: ID switching disabled
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_quotatab
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_delay
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_log
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_ls
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_auth
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:1667
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): unable to display DisplayLogin file 'welcome.msg': No such file or directory
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_xfer
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_core
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PASS (hidden)' to mod_sql
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PASS (hidden)' to mod_log
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PASS (hidden)' to mod_auth
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): USER dwest: Login successful.
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'CWD /NewDir' to mod_core
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'CWD /NewDir' to mod_core
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'CWD /NewDir' to mod_core
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'CWD /NewDir' to mod_sql
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'CWD /NewDir' to mod_sql
May 27 14:30:01 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'CWD /NewDir' to mod_log
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'TYPE I' to mod_core
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'TYPE I' to mod_core
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'TYPE I' to mod_xfer
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'TYPE I' to mod_sql
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'TYPE I' to mod_sql
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'TYPE I' to mod_log
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,209,37' to mod_core
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,209,37' to mod_core
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'PORT 66,210,44,66,209,37' to mod_core
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PORT 66,210,44,66,209,37' to mod_sql
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,209,37' to mod_sql
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,209,37' to mod_log
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'REST 291751' to mod_core
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'REST 291751' to mod_core
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'REST 291751' to mod_xfer
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'REST 291751' to mod_sql
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'REST 291751' to mod_sql
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'REST 291751' to mod_log
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-18 at 1.40.48 PM.png' to mod_core
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-18 at 1.40.48 PM.png' to mod_core
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-18 at 1.40.48 PM.png' to mod_quotatab
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'STOR Screen shot 2011-05-18 at 1.40.48 PM.png' to mod_xfer
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir/Screen shot 2011-05-18 at 1.40.48 PM.png', fullpath = '/ftp/dwest/NewDir/Screen shot 2011-05-18 at 1.40.48 PM.png'.
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): setting umask to 0002 (was 0002)
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD_ERR command 'STOR Screen shot 2011-05-18 at 1.40.48 PM.png' to mod_sql
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD_ERR command 'STOR Screen shot 2011-05-18 at 1.40.48 PM.png' to mod_quotatab
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD_ERR command 'STOR Screen shot 2011-05-18 at 1.40.48 PM.png' to mod_sql
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD_ERR command 'STOR Screen shot 2011-05-18 at 1.40.48 PM.png' to mod_log
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD_ERR command 'STOR Screen shot 2011-05-18 at 1.40.48 PM.png' to mod_xfer
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,209,38' to mod_core
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,209,38' to mod_core
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'PORT 66,210,44,66,209,38' to mod_core
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PORT 66,210,44,66,209,38' to mod_sql
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,209,38' to mod_sql
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,209,38' to mod_log
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'REST 0' to mod_core
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'REST 0' to mod_core
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'REST 0' to mod_xfer
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'REST 0' to mod_sql
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'REST 0' to mod_sql
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'REST 0' to mod_log
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'MLSD' to mod_core
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'MLSD' to mod_core
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'MLSD' to mod_facts
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at inet.c:345
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at inet.c:408
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): active data connection opened - local : 10.99.13.97:20
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): active data connection opened - remote : 66.210.44.66:53542
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir/Screen shot 2011-05-12 at 9.26.50 AM.png', fullpath = '/ftp/dwest/NewDir/Screen shot 2011-05-12 at 9.26.50 AM.png'.
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir/Screen shot 2011-05-17 at 12.42.47 PM.png', fullpath = '/ftp/dwest/NewDir/Screen shot 2011-05-17 at 12.42.47 PM.png'.
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir/Screen shot 2011-05-18 at 1.38.22 PM.png', fullpath = '/ftp/dwest/NewDir/Screen shot 2011-05-18 at 1.38.22 PM.png'.
May 27 14:30:02 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir/Screen shot 2011-05-18 at 1.40.48 PM.png', fullpath = '/ftp/dwest/NewDir/Screen shot 2011-05-18 at 1.40.48 PM.png'.
May 27 14:30:03 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'MLSD' to mod_sql
May 27 14:30:03 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'MLSD' to mod_sql
May 27 14:30:03 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'MLSD' to mod_log
May 27 14:30:03 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'MLSD' to mod_facts
May 27 14:30:03 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'CWD /' to mod_core
May 27 14:30:03 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'CWD /' to mod_core
May 27 14:30:03 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'CWD /' to mod_core
May 27 14:30:03 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/', fullpath = '/ftp/dwest/'.
May 27 14:30:03 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'CWD /' to mod_sql
May 27 14:30:03 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'CWD /' to mod_sql
May 27 14:30:03 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'CWD /' to mod_log
May 27 14:30:04 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,209,39' to mod_core
May 27 14:30:04 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,209,39' to mod_core
May 27 14:30:04 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'PORT 66,210,44,66,209,39' to mod_core
May 27 14:30:04 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/', fullpath = '/ftp/dwest/'.
May 27 14:30:04 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PORT 66,210,44,66,209,39' to mod_sql
May 27 14:30:04 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,209,39' to mod_sql
May 27 14:30:04 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,209,39' to mod_log
May 27 14:30:04 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'MLSD' to mod_core
May 27 14:30:04 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'MLSD' to mod_core
May 27 14:30:04 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'MLSD' to mod_facts
May 27 14:30:04 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/', fullpath = '/ftp/dwest/'.
May 27 14:30:04 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at inet.c:345
May 27 14:30:04 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at inet.c:408
May 27 14:30:04 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:30:04 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): active data connection opened - local : 10.99.13.97:20
May 27 14:30:04 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): active data connection opened - remote : 66.210.44.66:53543
May 27 14:30:04 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:30:04 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'MLSD' to mod_sql
May 27 14:30:04 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'MLSD' to mod_sql
May 27 14:30:04 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'MLSD' to mod_log
May 27 14:30:04 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'MLSD' to mod_facts
May 27 14:30:42 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'CWD /NewDir' to mod_core
May 27 14:30:42 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'CWD /NewDir' to mod_core
May 27 14:30:42 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'CWD /NewDir' to mod_core
May 27 14:30:42 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:30:42 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'CWD /NewDir' to mod_sql
May 27 14:30:42 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'CWD /NewDir' to mod_sql
May 27 14:30:42 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'CWD /NewDir' to mod_log
May 27 14:30:42 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'RNFR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_core
May 27 14:30:42 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'RNFR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_core
May 27 14:30:42 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'RNFR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_core
May 27 14:30:42 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir/Screen shot 2011-05-12 at 9.26.50 AM.png', fullpath = '/ftp/dwest/NewDir/Screen shot 2011-05-12 at 9.26.50 AM.png'.
May 27 14:30:42 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'RNFR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_sql
May 27 14:30:42 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'RNFR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_sql
May 27 14:30:42 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'RNFR Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_log
May 27 14:30:42 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'RNTO /Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_core
May 27 14:30:42 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'RNTO /Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_core
May 27 14:30:42 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'RNTO /Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_quotatab
May 27 14:30:42 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'RNTO /Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_core
May 27 14:30:42 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/Screen shot 2011-05-12 at 9.26.50 AM.png', fullpath = '/ftp/dwest/Screen shot 2011-05-12 at 9.26.50 AM.png'.
May 27 14:30:42 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): setting umask to 0002 (was 0002)
May 27 14:30:43 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'RNTO /Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_sql
May 27 14:30:43 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'RNTO /Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_quotatab
May 27 14:30:43 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'RNTO /Screen shot 2011-05-12 at 9.26.50 AM.png' to mod_sql
May 27 14:30:43 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): mod_sql/4.3: unrecoverable backend error: (1064) You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 1
May 27 14:30:43 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): mod_sql/4.3: check the SQLLogFile for more details
May 27 14:30:43 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:30:43 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:30:43 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:30:43 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:30:43 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:30:43 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:30:43 ip-10-99-13-97 proftpd[14085] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): FTP session closed.
May 27 14:30:43 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): connected - local : 10.99.13.97:21
May 27 14:30:43 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): connected - remote : 66.210.44.66:53573
May 27 14:30:43 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): FTP session opened.
May 27 14:30:43 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_core
May 27 14:30:43 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_core
May 27 14:30:43 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_delay
May 27 14:30:43 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_auth
May 27 14:30:43 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'USER dwest' to mod_auth
May 27 14:30:43 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'USER dwest' to mod_sql
May 27 14:30:43 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'USER dwest' to mod_delay
May 27 14:30:43 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'USER dwest' to mod_sql
May 27 14:30:43 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'USER dwest' to mod_log
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_core
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_core
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_shaper
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:1998
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:2000
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_sql
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_delay
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_auth
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'PASS (hidden)' to mod_auth
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): retrieved UID 2001 for user 'dwest'
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): no supplemental groups found for user 'dwest'
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): user 'dwest' authenticated by mod_sql.c
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at auth.c:1273
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at auth.c:1275
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): USER PRIVS 2001 at mod_auth.c:1122
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:1124
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mkhome.c:292
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mkhome.c:320
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]):
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Config for FTP.SCOTTUSA.COM -- SCOTT-SPORTS:
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): IdentLookups
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DeferWelcome
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): MultilineRFC2228
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DefaultServer
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ShowSymlinks
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TimeoutNoTransfer
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TimeoutStalled
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TimeoutIdle
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DisplayLogin
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DisplayChdir
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DenyFilter
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): UserID
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): UserName
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): GroupID
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): GroupName
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Umask
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DirUmask
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): AllowOverwrite
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TransferLog
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLogFile
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DebugLevel
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaEngine
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DelayEngine
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ShaperEngine
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DefaultRoot
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLBackend
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLAuthTypes
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLAuthenticate
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLConnectInfo
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLUserTable
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLUsernameField
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLPasswordField
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLUidField
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGidField
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLHomedirField
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLShellField
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupTable
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupnameField
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupGIDField
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupMembersField
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLMinID
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): CreateHome
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_PASS
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_updatecount
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_STOR
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_DELE
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_modified
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaDirectoryTally
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaDisplayUnits
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaShowQuotas
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_get-quota-limit
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_get-quota-tally
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_update-quota-tally
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_insert-quota-tally
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_update-upload-tally
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_file-statistic-delete
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_update-download-tally
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_file-uploaded
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_file-downloaded
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_new-directory
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_delete-directory
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_rename-file
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_rename-directory
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaLimitTable
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaTallyTable
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RootLogin
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RequireValidShell
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_STOR
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_DELE
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_STOR
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RETR
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RETR
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_MKD
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RMD
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RNTO
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RNTO
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_auth.c:1212
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): opening TransferLog '/var/log/proftpd/xferlog'
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): setting group ID: 2001
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:1252
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): USER PRIVS 2001 at mod_auth.c:654
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): retrieved UID 2001 for user 'dwest'
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:658
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): set TZ environment variable to 'UTC'
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Preparing to chroot to directory '/ftp/dwest'
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at auth.c:1387
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at auth.c:1389
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Environment successfully chroot()ed
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_auth.c:1293
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SETUP PRIVS at mod_auth.c:1305
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/', fullpath = '/ftp/dwest/'.
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_sql
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_cap
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): mod_cap/1.1: capabilities '= cap_net_bind_service+ep'
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_shaper
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS: ID switching disabled
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_quotatab
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_delay
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_log
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_ls
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_auth
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:1667
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): unable to display DisplayLogin file 'welcome.msg': No such file or directory
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_xfer
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_core
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PASS (hidden)' to mod_sql
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PASS (hidden)' to mod_log
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PASS (hidden)' to mod_auth
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): USER dwest: Login successful.
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'CWD /NewDir' to mod_core
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'CWD /NewDir' to mod_core
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'CWD /NewDir' to mod_core
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'CWD /NewDir' to mod_sql
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'CWD /NewDir' to mod_sql
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'CWD /NewDir' to mod_log
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'RNFR Screen shot 2011-05-17 at 12.42.47 PM.png' to mod_core
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'RNFR Screen shot 2011-05-17 at 12.42.47 PM.png' to mod_core
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'RNFR Screen shot 2011-05-17 at 12.42.47 PM.png' to mod_core
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir/Screen shot 2011-05-17 at 12.42.47 PM.png', fullpath = '/ftp/dwest/NewDir/Screen shot 2011-05-17 at 12.42.47 PM.png'.
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'RNFR Screen shot 2011-05-17 at 12.42.47 PM.png' to mod_sql
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'RNFR Screen shot 2011-05-17 at 12.42.47 PM.png' to mod_sql
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'RNFR Screen shot 2011-05-17 at 12.42.47 PM.png' to mod_log
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'RNTO /Screen shot 2011-05-17 at 12.42.47 PM.png' to mod_core
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'RNTO /Screen shot 2011-05-17 at 12.42.47 PM.png' to mod_core
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'RNTO /Screen shot 2011-05-17 at 12.42.47 PM.png' to mod_quotatab
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'RNTO /Screen shot 2011-05-17 at 12.42.47 PM.png' to mod_core
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/Screen shot 2011-05-17 at 12.42.47 PM.png', fullpath = '/ftp/dwest/Screen shot 2011-05-17 at 12.42.47 PM.png'.
May 27 14:30:44 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): setting umask to 0002 (was 0002)
May 27 14:30:45 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'RNTO /Screen shot 2011-05-17 at 12.42.47 PM.png' to mod_sql
May 27 14:30:45 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'RNTO /Screen shot 2011-05-17 at 12.42.47 PM.png' to mod_quotatab
May 27 14:30:45 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'RNTO /Screen shot 2011-05-17 at 12.42.47 PM.png' to mod_sql
May 27 14:30:45 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): mod_sql/4.3: unrecoverable backend error: (1064) You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 1
May 27 14:30:45 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): mod_sql/4.3: check the SQLLogFile for more details
May 27 14:30:45 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:30:45 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:30:45 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:30:45 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:30:45 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:30:45 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:30:45 ip-10-99-13-97 proftpd[14111] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): FTP session closed.
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): connected - local : 10.99.13.97:21
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): connected - remote : 66.210.44.66:53575
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): FTP session opened.
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_core
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_core
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_delay
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_auth
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'USER dwest' to mod_auth
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'USER dwest' to mod_sql
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'USER dwest' to mod_delay
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'USER dwest' to mod_sql
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'USER dwest' to mod_log
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_core
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_core
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_shaper
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:1998
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:2000
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_sql
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_delay
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_auth
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'PASS (hidden)' to mod_auth
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): retrieved UID 2001 for user 'dwest'
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): no supplemental groups found for user 'dwest'
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): user 'dwest' authenticated by mod_sql.c
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at auth.c:1273
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at auth.c:1275
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): USER PRIVS 2001 at mod_auth.c:1122
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:1124
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mkhome.c:292
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mkhome.c:320
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]):
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Config for FTP.SCOTTUSA.COM -- SCOTT-SPORTS:
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): IdentLookups
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DeferWelcome
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): MultilineRFC2228
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DefaultServer
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ShowSymlinks
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TimeoutNoTransfer
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TimeoutStalled
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TimeoutIdle
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DisplayLogin
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DisplayChdir
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DenyFilter
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): UserID
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): UserName
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): GroupID
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): GroupName
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Umask
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DirUmask
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): AllowOverwrite
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TransferLog
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLogFile
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DebugLevel
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaEngine
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DelayEngine
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ShaperEngine
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DefaultRoot
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLBackend
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLAuthTypes
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLAuthenticate
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLConnectInfo
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLUserTable
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLUsernameField
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLPasswordField
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLUidField
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGidField
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLHomedirField
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLShellField
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupTable
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupnameField
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupGIDField
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupMembersField
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLMinID
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): CreateHome
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_PASS
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_updatecount
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_STOR
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_DELE
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_modified
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaDirectoryTally
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaDisplayUnits
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaShowQuotas
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_get-quota-limit
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_get-quota-tally
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_update-quota-tally
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_insert-quota-tally
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_update-upload-tally
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_file-statistic-delete
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_update-download-tally
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_file-uploaded
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_file-downloaded
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_new-directory
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_delete-directory
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_rename-file
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_rename-directory
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaLimitTable
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaTallyTable
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RootLogin
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RequireValidShell
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_STOR
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_DELE
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_STOR
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RETR
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RETR
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_MKD
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RMD
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RNTO
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RNTO
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_auth.c:1212
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): opening TransferLog '/var/log/proftpd/xferlog'
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): setting group ID: 2001
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:1252
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): USER PRIVS 2001 at mod_auth.c:654
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): retrieved UID 2001 for user 'dwest'
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:658
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): set TZ environment variable to 'UTC'
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Preparing to chroot to directory '/ftp/dwest'
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at auth.c:1387
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at auth.c:1389
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Environment successfully chroot()ed
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_auth.c:1293
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SETUP PRIVS at mod_auth.c:1305
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/', fullpath = '/ftp/dwest/'.
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_sql
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_cap
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): mod_cap/1.1: capabilities '= cap_net_bind_service+ep'
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_shaper
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS: ID switching disabled
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_quotatab
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_delay
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_log
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_ls
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_auth
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:1667
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): unable to display DisplayLogin file 'welcome.msg': No such file or directory
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_xfer
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_core
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PASS (hidden)' to mod_sql
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PASS (hidden)' to mod_log
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PASS (hidden)' to mod_auth
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): USER dwest: Login successful.
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'CWD /NewDir' to mod_core
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'CWD /NewDir' to mod_core
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'CWD /NewDir' to mod_core
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'CWD /NewDir' to mod_sql
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'CWD /NewDir' to mod_sql
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'CWD /NewDir' to mod_log
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'RNFR Screen shot 2011-05-18 at 1.38.22 PM.png' to mod_core
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'RNFR Screen shot 2011-05-18 at 1.38.22 PM.png' to mod_core
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'RNFR Screen shot 2011-05-18 at 1.38.22 PM.png' to mod_core
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir/Screen shot 2011-05-18 at 1.38.22 PM.png', fullpath = '/ftp/dwest/NewDir/Screen shot 2011-05-18 at 1.38.22 PM.png'.
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'RNFR Screen shot 2011-05-18 at 1.38.22 PM.png' to mod_sql
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'RNFR Screen shot 2011-05-18 at 1.38.22 PM.png' to mod_sql
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'RNFR Screen shot 2011-05-18 at 1.38.22 PM.png' to mod_log
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'RNTO /Screen shot 2011-05-18 at 1.38.22 PM.png' to mod_core
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'RNTO /Screen shot 2011-05-18 at 1.38.22 PM.png' to mod_core
May 27 14:30:45 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'RNTO /Screen shot 2011-05-18 at 1.38.22 PM.png' to mod_quotatab
May 27 14:30:46 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'RNTO /Screen shot 2011-05-18 at 1.38.22 PM.png' to mod_core
May 27 14:30:46 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/Screen shot 2011-05-18 at 1.38.22 PM.png', fullpath = '/ftp/dwest/Screen shot 2011-05-18 at 1.38.22 PM.png'.
May 27 14:30:46 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): setting umask to 0002 (was 0002)
May 27 14:30:46 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'RNTO /Screen shot 2011-05-18 at 1.38.22 PM.png' to mod_sql
May 27 14:30:46 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'RNTO /Screen shot 2011-05-18 at 1.38.22 PM.png' to mod_quotatab
May 27 14:30:46 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'RNTO /Screen shot 2011-05-18 at 1.38.22 PM.png' to mod_sql
May 27 14:30:46 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): mod_sql/4.3: unrecoverable backend error: (1064) You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 1
May 27 14:30:46 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): mod_sql/4.3: check the SQLLogFile for more details
May 27 14:30:46 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:30:46 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:30:46 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:30:46 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:30:46 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:30:46 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:30:46 ip-10-99-13-97 proftpd[14113] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): FTP session closed.
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): connected - local : 10.99.13.97:21
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): connected - remote : 66.210.44.66:53576
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): FTP session opened.
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_core
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_core
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_delay
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_auth
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'USER dwest' to mod_auth
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'USER dwest' to mod_sql
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'USER dwest' to mod_delay
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'USER dwest' to mod_sql
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'USER dwest' to mod_log
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_core
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_core
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_shaper
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:1998
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:2000
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_sql
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_delay
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_auth
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'PASS (hidden)' to mod_auth
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): retrieved UID 2001 for user 'dwest'
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): no supplemental groups found for user 'dwest'
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): user 'dwest' authenticated by mod_sql.c
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at auth.c:1273
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at auth.c:1275
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): USER PRIVS 2001 at mod_auth.c:1122
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:1124
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mkhome.c:292
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mkhome.c:320
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]):
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Config for FTP.SCOTTUSA.COM -- SCOTT-SPORTS:
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): IdentLookups
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DeferWelcome
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): MultilineRFC2228
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DefaultServer
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ShowSymlinks
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TimeoutNoTransfer
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TimeoutStalled
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TimeoutIdle
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DisplayLogin
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DisplayChdir
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DenyFilter
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): UserID
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): UserName
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): GroupID
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): GroupName
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Umask
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DirUmask
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): AllowOverwrite
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TransferLog
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLogFile
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DebugLevel
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaEngine
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DelayEngine
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ShaperEngine
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DefaultRoot
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLBackend
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLAuthTypes
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLAuthenticate
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLConnectInfo
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLUserTable
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLUsernameField
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLPasswordField
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLUidField
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGidField
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLHomedirField
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLShellField
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupTable
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupnameField
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupGIDField
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupMembersField
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLMinID
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): CreateHome
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_PASS
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_updatecount
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_STOR
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_DELE
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_modified
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaDirectoryTally
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaDisplayUnits
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaShowQuotas
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_get-quota-limit
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_get-quota-tally
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_update-quota-tally
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_insert-quota-tally
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_update-upload-tally
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_file-statistic-delete
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_update-download-tally
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_file-uploaded
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_file-downloaded
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_new-directory
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_delete-directory
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_rename-file
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_rename-directory
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaLimitTable
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaTallyTable
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RootLogin
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RequireValidShell
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_STOR
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_DELE
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_STOR
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RETR
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RETR
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_MKD
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RMD
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RNTO
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RNTO
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_auth.c:1212
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): opening TransferLog '/var/log/proftpd/xferlog'
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): setting group ID: 2001
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:1252
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): USER PRIVS 2001 at mod_auth.c:654
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): retrieved UID 2001 for user 'dwest'
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:658
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): set TZ environment variable to 'UTC'
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Preparing to chroot to directory '/ftp/dwest'
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at auth.c:1387
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at auth.c:1389
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Environment successfully chroot()ed
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_auth.c:1293
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SETUP PRIVS at mod_auth.c:1305
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/', fullpath = '/ftp/dwest/'.
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_sql
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_cap
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): mod_cap/1.1: capabilities '= cap_net_bind_service+ep'
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_shaper
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS: ID switching disabled
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_quotatab
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_delay
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_log
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_ls
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_auth
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:1667
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): unable to display DisplayLogin file 'welcome.msg': No such file or directory
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_xfer
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_core
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PASS (hidden)' to mod_sql
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PASS (hidden)' to mod_log
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PASS (hidden)' to mod_auth
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): USER dwest: Login successful.
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'CWD /NewDir' to mod_core
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'CWD /NewDir' to mod_core
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'CWD /NewDir' to mod_core
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'CWD /NewDir' to mod_sql
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'CWD /NewDir' to mod_sql
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'CWD /NewDir' to mod_log
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'RNFR Screen shot 2011-05-18 at 1.40.48 PM.png' to mod_core
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'RNFR Screen shot 2011-05-18 at 1.40.48 PM.png' to mod_core
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'RNFR Screen shot 2011-05-18 at 1.40.48 PM.png' to mod_core
May 27 14:30:46 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir/Screen shot 2011-05-18 at 1.40.48 PM.png', fullpath = '/ftp/dwest/NewDir/Screen shot 2011-05-18 at 1.40.48 PM.png'.
May 27 14:30:47 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'RNFR Screen shot 2011-05-18 at 1.40.48 PM.png' to mod_sql
May 27 14:30:47 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'RNFR Screen shot 2011-05-18 at 1.40.48 PM.png' to mod_sql
May 27 14:30:47 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'RNFR Screen shot 2011-05-18 at 1.40.48 PM.png' to mod_log
May 27 14:30:47 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'RNTO /Screen shot 2011-05-18 at 1.40.48 PM.png' to mod_core
May 27 14:30:47 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'RNTO /Screen shot 2011-05-18 at 1.40.48 PM.png' to mod_core
May 27 14:30:47 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'RNTO /Screen shot 2011-05-18 at 1.40.48 PM.png' to mod_quotatab
May 27 14:30:47 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'RNTO /Screen shot 2011-05-18 at 1.40.48 PM.png' to mod_core
May 27 14:30:47 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/Screen shot 2011-05-18 at 1.40.48 PM.png', fullpath = '/ftp/dwest/Screen shot 2011-05-18 at 1.40.48 PM.png'.
May 27 14:30:47 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): setting umask to 0002 (was 0002)
May 27 14:30:47 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'RNTO /Screen shot 2011-05-18 at 1.40.48 PM.png' to mod_sql
May 27 14:30:47 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'RNTO /Screen shot 2011-05-18 at 1.40.48 PM.png' to mod_quotatab
May 27 14:30:47 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'RNTO /Screen shot 2011-05-18 at 1.40.48 PM.png' to mod_sql
May 27 14:30:47 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): mod_sql/4.3: unrecoverable backend error: (1064) You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 1
May 27 14:30:47 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): mod_sql/4.3: check the SQLLogFile for more details
May 27 14:30:47 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:30:47 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:30:47 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:30:47 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:30:47 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:30:47 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:30:47 ip-10-99-13-97 proftpd[14114] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): FTP session closed.
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): connected - local : 10.99.13.97:21
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): connected - remote : 66.210.44.66:53577
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): FTP session opened.
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_core
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_core
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_delay
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'USER dwest' to mod_auth
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'USER dwest' to mod_auth
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'USER dwest' to mod_sql
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'USER dwest' to mod_delay
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'USER dwest' to mod_sql
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'USER dwest' to mod_log
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_core
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_core
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_shaper
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:1998
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:2000
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_sql
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_delay
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PASS (hidden)' to mod_auth
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'PASS (hidden)' to mod_auth
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): retrieved UID 2001 for user 'dwest'
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): no supplemental groups found for user 'dwest'
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): user 'dwest' authenticated by mod_sql.c
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at auth.c:1273
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at auth.c:1275
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): USER PRIVS 2001 at mod_auth.c:1122
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:1124
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mkhome.c:292
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mkhome.c:320
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]):
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Config for FTP.SCOTTUSA.COM -- SCOTT-SPORTS:
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): IdentLookups
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DeferWelcome
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): MultilineRFC2228
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DefaultServer
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ShowSymlinks
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TimeoutNoTransfer
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TimeoutStalled
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TimeoutIdle
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DisplayLogin
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DisplayChdir
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DenyFilter
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): UserID
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): UserName
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): GroupID
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): GroupName
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Umask
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DirUmask
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): AllowOverwrite
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): TransferLog
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLogFile
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DebugLevel
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaEngine
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DelayEngine
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ShaperEngine
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): DefaultRoot
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLBackend
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLAuthTypes
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLAuthenticate
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLConnectInfo
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLUserTable
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLUsernameField
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLPasswordField
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLUidField
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGidField
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLHomedirField
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLShellField
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupTable
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupnameField
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupGIDField
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLGroupMembersField
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLMinID
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): CreateHome
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_PASS
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_updatecount
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_STOR
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_DELE
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_modified
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaDirectoryTally
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaDisplayUnits
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaShowQuotas
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_get-quota-limit
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_get-quota-tally
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_update-quota-tally
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_insert-quota-tally
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_update-upload-tally
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_file-statistic-delete
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_update-download-tally
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_file-uploaded
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_file-downloaded
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_new-directory
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_delete-directory
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_rename-file
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLNamedQuery_rename-directory
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaLimitTable
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): QuotaTallyTable
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RootLogin
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RequireValidShell
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_STOR
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_DELE
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_STOR
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RETR
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RETR
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_MKD
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RMD
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RNTO
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SQLLog_RNTO
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_auth.c:1212
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): opening TransferLog '/var/log/proftpd/xferlog'
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): setting group ID: 2001
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:1252
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): USER PRIVS 2001 at mod_auth.c:654
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): retrieved UID 2001 for user 'dwest'
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:658
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): set TZ environment variable to 'UTC'
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Preparing to chroot to directory '/ftp/dwest'
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at auth.c:1387
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at auth.c:1389
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): Environment successfully chroot()ed
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_auth.c:1293
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): SETUP PRIVS at mod_auth.c:1305
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/', fullpath = '/ftp/dwest/'.
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_sql
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_cap
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): mod_cap/1.1: capabilities '= cap_net_bind_service+ep'
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_shaper
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS: ID switching disabled
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_quotatab
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_delay
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_log
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_ls
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_auth
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_auth.c:1667
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): unable to display DisplayLogin file 'welcome.msg': No such file or directory
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_xfer
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PASS (hidden)' to mod_core
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PASS (hidden)' to mod_sql
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PASS (hidden)' to mod_log
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PASS (hidden)' to mod_auth
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): USER dwest: Login successful.
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PWD' to mod_core
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PWD' to mod_core
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'PWD' to mod_core
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/', fullpath = '/ftp/dwest/'.
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PWD' to mod_sql
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PWD' to mod_sql
May 27 14:30:47 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PWD' to mod_log
May 27 14:30:48 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'TYPE I' to mod_core
May 27 14:30:48 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'TYPE I' to mod_core
May 27 14:30:48 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'TYPE I' to mod_xfer
May 27 14:30:48 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'TYPE I' to mod_sql
May 27 14:30:48 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'TYPE I' to mod_sql
May 27 14:30:48 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'TYPE I' to mod_log
May 27 14:30:48 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,209,74' to mod_core
May 27 14:30:48 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'PORT 66,210,44,66,209,74' to mod_core
May 27 14:30:48 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'PORT 66,210,44,66,209,74' to mod_core
May 27 14:30:48 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/', fullpath = '/ftp/dwest/'.
May 27 14:30:48 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'PORT 66,210,44,66,209,74' to mod_sql
May 27 14:30:48 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,209,74' to mod_sql
May 27 14:30:48 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'PORT 66,210,44,66,209,74' to mod_log
May 27 14:30:48 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'MLSD' to mod_core
May 27 14:30:48 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching PRE_CMD command 'MLSD' to mod_core
May 27 14:30:48 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching CMD command 'MLSD' to mod_facts
May 27 14:30:48 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/', fullpath = '/ftp/dwest/'.
May 27 14:30:48 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at inet.c:345
May 27 14:30:48 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at inet.c:408
May 27 14:30:48 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:30:48 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): active data connection opened - local : 10.99.13.97:20
May 27 14:30:48 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): active data connection opened - remote : 66.210.44.66:53578
May 27 14:30:48 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/NewDir', fullpath = '/ftp/dwest/NewDir'.
May 27 14:30:48 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/Screen shot 2011-05-12 at 9.26.50 AM.png', fullpath = '/ftp/dwest/Screen shot 2011-05-12 at 9.26.50 AM.png'.
May 27 14:30:48 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/Screen shot 2011-05-17 at 12.42.47 PM.png', fullpath = '/ftp/dwest/Screen shot 2011-05-17 at 12.42.47 PM.png'.
May 27 14:30:48 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/Screen shot 2011-05-18 at 1.38.22 PM.png', fullpath = '/ftp/dwest/Screen shot 2011-05-18 at 1.38.22 PM.png'.
May 27 14:30:49 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): in dir_check_full(): path = '/Screen shot 2011-05-18 at 1.40.48 PM.png', fullpath = '/ftp/dwest/Screen shot 2011-05-18 at 1.40.48 PM.png'.
May 27 14:30:49 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching POST_CMD command 'MLSD' to mod_sql
May 27 14:30:49 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'MLSD' to mod_sql
May 27 14:30:49 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'MLSD' to mod_log
May 27 14:30:49 ip-10-99-13-97 proftpd[14115] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): dispatching LOG_CMD command 'MLSD' to mod_facts
May 27 14:31:02 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:31:02 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:31:02 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:31:02 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:31:02 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:31:02 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:31:02 ip-10-99-13-97 proftpd[14101] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): FTP session closed.
May 27 14:31:03 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): ROOT PRIVS at mod_shaper.c:333
May 27 14:31:03 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS at mod_shaper.c:335
May 27 14:31:03 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): RELINQUISH PRIVS: ID switching disabled
May 27 14:31:03 ip-10-99-13-97 proftpd[14102] ip-10-99-13-97.ec2.internal (66.210.44.66[66.210.44.66]): FTP session closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment