Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Skip download when path contain character like "[" and "]" #49

Closed
mickael-bertrand opened this issue Apr 30, 2019 · 12 comments
Closed

Skip download when path contain character like "[" and "]" #49

mickael-bertrand opened this issue Apr 30, 2019 · 12 comments
Labels

Comments

@mickael-bertrand
Copy link

mickael-bertrand commented Apr 30, 2019

Hi :)

Behaviour

Downloads are not started when parent folder name contain brackets as a character [ or ]

Steps to reproduce this issue

  1. create folder with brackets caracter like [ or ], for example directory.[team]/filename.mkv
  2. grabftp list the file, send the command, but do not start download
  3. configure disable_epsv: true

Expected behaviour

Tue, 30 Apr 2019 09:30:21 UTC INF Never downloaded
Tue, 30 Apr 2019 09:30:21 UTC INF Downloading file (993.4MB) to /path/filename...
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.209 #1 was ready
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.209 #1 sending command TYPE I
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.232 #1 got 200-TYPE is now 8-bit binary
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.232 #1 sending command SIZE /path/filename
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.256 #1 got 213-993427745
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.257 #1 was ready
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.257 #1 was ready
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.257 #1 sending command TYPE I
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.280 #1 got 200-TYPE is now 8-bit binary
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.280 #1 sending command PASV
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.304 #1 got 227-Entering Passive Mode (@ip)
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.305 #1 opening data connection to @IP
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.328 #1 upgrading data connection to TLS
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.329 #1 sending command RETR /path/filename
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.351 #1 got 150-Accepted data connection
970144.3 kbytes to download

Actual behaviour

Tue, 30 Apr 2019 09:18:52 UTC DBG goftp: 1.237 #1 opening data connection to @ip
Tue, 30 Apr 2019 09:18:52 UTC DBG goftp: 1.263 #1 upgrading data connection to TLS
Tue, 30 Apr 2019 09:18:52 UTC DBG goftp: 1.263 #1 sending command MLSD /path[team]/filename
Tue, 30 Apr 2019 09:18:52 UTC DBG goftp: 1.287 #1 got 150-Accepted data connection
Tue, 30 Apr 2019 09:18:52 UTC DBG goftp: 1.337 #1 was ready
Tue, 30 Apr 2019 09:18:52 UTC DBG goftp: 1.337 #1 sending command PASV
Tue, 30 Apr 2019 09:18:52 UTC DBG goftp: 1.360 #1 got 227-Entering Passive Mode (@ip)
Tue, 30 Apr 2019 09:18:52 UTC DBG goftp: 1.360 #1 opening data connection to @IP
Tue, 30 Apr 2019 09:18:52 UTC DBG goftp: 1.382 #1 upgrading data connection to TLS
Tue, 30 Apr 2019 09:18:52 UTC DBG goftp: 1.382 #1 sending command MLSD /path[team]/filename
Tue, 30 Apr 2019 09:18:52 UTC DBG goftp: 1.404 #1 got 150-Accepted data connection

no download are started

Configuration

  • FTPGrab version : 5.2.0
  • Platform : linux mint
  • Remote server: Pure-FTPd

Logs

in step before

configuration :

server:
  type: ftp
  ftp:
    host: xxxxxxxxxx
    port: 21
    username: XXXXXX
    password: XXXXXX
    sources:
      - /path
    timeout: 5
    disable_epsv: true
    tls:
      enable: yes
      implicit: false
      insecure_skip_verify: true
    log_trace: true

db:
  enable: true
  path: ftpgrab.db

download:
  output: /path
  uid:
  gid:
  chmod_file: 0755
  chmod_dir: 0755
  since:
  retry: 3
  hide_skipped: false
  create_basedir: false

Thanks, :)

@crazy-max
Copy link
Owner

Hi @mickael-bertrand, thanks for your concise report. I'll take a look asap ;)

@crazy-max
Copy link
Owner

crazy-max commented May 1, 2019

@mickael-bertrand Cannot reproduce your issue, can you give me your full log output please without sensitive data ? (please use three back-ticks markdown markup when you post logs/config) Here is mine :

Wed, 01 May 2019 22:10:40 UTC INF ########
Wed, 01 May 2019 22:10:40 UTC INF Grabbing from /test/test_changed/
Wed, 01 May 2019 22:10:40 UTC DBG goftp: 0.277 #1 opening control connection to ****
Wed, 01 May 2019 22:10:41 UTC DBG goftp: 0.321 #1 sending command AUTH TLS
Wed, 01 May 2019 22:10:41 UTC DBG goftp: 0.342 #1 got 234-AUTH TLS OK.
Wed, 01 May 2019 22:10:41 UTC DBG goftp: 0.343 #1 sending command USER ****
Wed, 01 May 2019 22:10:41 UTC DBG goftp: 0.407 #1 got 331-User **** OK. Password required
Wed, 01 May 2019 22:10:41 UTC DBG goftp: 0.408 #1 sending command PASS ******
Wed, 01 May 2019 22:10:41 UTC DBG goftp: 0.436 #1 got 230-This server supports FXP transfers
OK. Current restricted directory is /
Wed, 01 May 2019 22:10:41 UTC DBG goftp: 0.438 #1 sending command PBSZ 0
Wed, 01 May 2019 22:10:41 UTC DBG goftp: 0.457 #1 got 200-PBSZ=0
Wed, 01 May 2019 22:10:41 UTC DBG goftp: 0.458 #1 sending command PROT P
Wed, 01 May 2019 22:10:41 UTC DBG goftp: 0.479 #1 got 200-Data protection level set to "private"
Wed, 01 May 2019 22:10:41 UTC DBG goftp: 0.480 #1 successfully upgraded to TLS
Wed, 01 May 2019 22:10:41 UTC DBG goftp: 0.480 #1 sending command FEAT
Wed, 01 May 2019 22:10:41 UTC DBG goftp: 0.505 #1 got 211-Extensions supported:
 EPRT
 IDLE
 MDTM
 SIZE
 MFMT
 REST STREAM
 MLST type*;size*;sizd*;modify*;UNIX.mode*;UNIX.uid*;UNIX.gid*;unique*;
 MLSD
 AUTH TLS
 PBSZ
 PROT
 UTF8
 ESTA
 PASV
 EPSV
 SPSV
End.
Wed, 01 May 2019 22:10:41 UTC DBG goftp: 0.508 #1 sending command EPSV
Wed, 01 May 2019 22:10:41 UTC DBG goftp: 0.528 #1 got 500-Unknown command
Wed, 01 May 2019 22:10:41 UTC DBG goftp: 0.529 #1 server doesn't support EPSV: 500-Unknown command
Wed, 01 May 2019 22:10:41 UTC DBG goftp: 0.530 #1 sending command PASV
Wed, 01 May 2019 22:10:41 UTC DBG goftp: 0.551 #1 got 227-Entering Passive Mode (****,195,119)
Wed, 01 May 2019 22:10:41 UTC DBG goftp: 0.552 #1 opening data connection to ****:50039
Wed, 01 May 2019 22:10:41 UTC DBG goftp: 0.573 #1 upgrading data connection to TLS
Wed, 01 May 2019 22:10:41 UTC DBG goftp: 0.574 #1 sending command MLSD /test/test_changed/
Wed, 01 May 2019 22:10:41 UTC DBG goftp: 0.596 #1 got 150-Accepted data connection
Wed, 01 May 2019 22:10:41 UTC INF --------
Wed, 01 May 2019 22:10:41 UTC INF Checking /test/test_changed/download-[20151214].png
Wed, 01 May 2019 22:10:41 UTC INF Never downloaded
Wed, 01 May 2019 22:10:41 UTC INF Downloading file (1.155kB) to /tmp/download-[20151214].png...
Wed, 01 May 2019 22:10:41 UTC DBG goftp: 0.689 #1 was ready
Wed, 01 May 2019 22:10:41 UTC DBG goftp: 0.690 #1 sending command TYPE I
Wed, 01 May 2019 22:10:41 UTC DBG goftp: 0.710 #1 got 200-TYPE is now 8-bit binary
Wed, 01 May 2019 22:10:41 UTC DBG goftp: 0.711 #1 sending command SIZE /test/test_changed/download-[20151214].png
Wed, 01 May 2019 22:10:41 UTC DBG goftp: 0.733 #1 got 213-1155
Wed, 01 May 2019 22:10:41 UTC DBG goftp: 0.733 #1 was ready
Wed, 01 May 2019 22:10:41 UTC DBG goftp: 0.734 #1 was ready
Wed, 01 May 2019 22:10:41 UTC DBG goftp: 0.735 #1 sending command TYPE I
Wed, 01 May 2019 22:10:41 UTC DBG goftp: 0.755 #1 got 200-TYPE is now 8-bit binary
Wed, 01 May 2019 22:10:41 UTC DBG goftp: 0.756 #1 sending command PASV
Wed, 01 May 2019 22:10:41 UTC DBG goftp: 0.777 #1 got 227-Entering Passive Mode (****,195,223)
Wed, 01 May 2019 22:10:41 UTC DBG goftp: 0.778 #1 opening data connection to ****:50143
Wed, 01 May 2019 22:10:41 UTC DBG goftp: 0.799 #1 upgrading data connection to TLS
Wed, 01 May 2019 22:10:41 UTC DBG goftp: 0.800 #1 sending command RETR /test/test_changed/download-[20151214].png
Wed, 01 May 2019 22:10:41 UTC DBG goftp: 0.820 #1 got 150-Accepted data connection
Wed, 01 May 2019 22:10:41 UTC INF File successfully downloaded!
Wed, 01 May 2019 22:10:41 UTC INF Time spent: 184 milliseconds
Wed, 01 May 2019 22:10:41 UTC DBG goftp: 0.874 #1 closing
Wed, 01 May 2019 22:10:41 UTC INF ########

@mickael-bertrand
Copy link
Author

Hi,

Here is the full log, you can see all file with bracket are not downloaded. (i can download them with my ftp client).

./ftpgrab --config=seedbox.yml --log-level debug
Tue, 30 Apr 2019 09:30:17 UTC INF Starting FTPGrab 5.2.0
Tue, 30 Apr 2019 09:30:17 UTC DBG {
  "Flags": {
    "Cfgfile": "seedbox.yml",
    "Schedule": "",
    "Timezone": "UTC",
    "LogLevel": "debug",
    "LogJson": false,
    "LogFile": "",
    "Docker": false
  },
  "App": {
    "ID": "ftpgrab",
    "Name": "FTPGrab",
    "Desc": "Grab your files periodically from a remote FTP or SFTP server easily",
    "URL": "https://ftpgrab.github.io",
    "Author": "CrazyMax",
    "Version": "5.2.0"
  },
  "Server": {
    "Type": "ftp",
    "FTP": {
      "Host": "*************.com",
      "Port": 21,
      "Username": "********",
      "Password": "********",
      "Sources": [
        "/path"
      ],
      "Timeout": 5,
      "DisableEPSV": true,
      "TLS": {
        "Enable": true,
        "Implicit": false,
        "InsecureSkipVerify": true
      },
      "LogTrace": true
    },
    "SFTP": {
      "Host": "",
      "Port": 22,
      "Username": "********",
      "Password": "********",
      "Key": "********",
      "Sources": null,
      "Timeout": 30,
      "MaxPacketSize": 32768
    }
  },
  "Db": {
    "Enable": true,
    "Path": "ftpgrab.db"
  },
  "Download": {
    "Output": "/path",
    "UID": 0,
    "GID": 0,
    "ChmodFile": 493,
    "ChmodDir": 493,
    "Include": null,
    "Exclude": null,
    "Since": "0001-01-01T00:00:00Z",
    "Retry": 3,
    "HideSkipped": false,
    "CreateBasedir": false
  },
  "Notif": {
    "Mail": {
      "Enable": false,
      "Host": "localhost",
      "Port": 25,
      "SSL": false,
      "InsecureSkipVerify": false,
      "Username": "********",
      "Password": "********",
      "From": "",
      "To": ""
    },
    "Webhook": {
      "Enable": false,
      "Endpoint": "",
      "Method": "GET",
      "Headers": null,
      "Timeout": 10
    }
  },
  "File": {}
}
Tue, 30 Apr 2019 09:30:17 UTC INF ########
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.000 #-1 opening control connection to [***.**.**.**]:21
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.047 #-1 sending command AUTH TLS
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.070 #-1 got 234-AUTH TLS OK.
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.070 #-1 sending command USER username
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.225 #-1 got 331-User username OK. Password required
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.225 #-1 sending command PASS ******
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.309 #-1 got 230-This server supports FXP transfers
OK. Current restricted directory is /
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.309 #-1 sending command PBSZ 0
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.331 #-1 got 200-PBSZ=0
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.331 #-1 sending command PROT P
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.355 #-1 got 200-Data protection level set to "private"
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.355 #-1 successfully upgraded to TLS
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.355 #-1 sending command FEAT
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.379 #-1 got 211-Extensions supported:
 EPRT
 IDLE
 MDTM
 SIZE
 MFMT
 REST STREAM
 MLST type*;size*;sizd*;modify*;UNIX.mode*;UNIX.uid*;UNIX.gid*;unique*;
 MLSD
 AUTH TLS
 PBSZ
 PROT
 UTF8
 TVFS
 ESTA
 PASV
 EPSV
 SPSV
 ESTP
End.
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.380 #-1 sending command FEAT
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.402 #-1 got 211-Extensions supported:
 EPRT
 IDLE
 MDTM
 SIZE
 MFMT
 REST STREAM
 MLST type*;size*;sizd*;modify*;UNIX.mode*;UNIX.uid*;UNIX.gid*;unique*;
 MLSD
 AUTH TLS
 PBSZ
 PROT
 UTF8
 TVFS
 ESTA
 PASV
 EPSV
 SPSV
 ESTP
End.
Tue, 30 Apr 2019 09:30:18 UTC DBG 47 entries found in database
Tue, 30 Apr 2019 09:30:18 UTC DBG 0 notifier(s) created
Tue, 30 Apr 2019 09:30:18 UTC INF ########
Tue, 30 Apr 2019 09:30:18 UTC INF Grabbing from /path
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.486 #1 opening control connection to [***.**.**.**]:21
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.533 #1 sending command AUTH TLS
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.556 #1 got 234-AUTH TLS OK.
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.557 #1 sending command USER username
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.631 #1 got 331-User username OK. Password required
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.631 #1 sending command PASS ******
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.716 #1 got 230-This server supports FXP transfers
OK. Current restricted directory is /
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.716 #1 sending command PBSZ 0
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.738 #1 got 200-PBSZ=0
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.738 #1 sending command PROT P
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.762 #1 got 200-Data protection level set to "private"
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.763 #1 successfully upgraded to TLS
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.763 #1 sending command FEAT
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.787 #1 got 211-Extensions supported:
 EPRT
 IDLE
 MDTM
 SIZE
 MFMT
 REST STREAM
 MLST type*;size*;sizd*;modify*;UNIX.mode*;UNIX.uid*;UNIX.gid*;unique*;
 MLSD
 AUTH TLS
 PBSZ
 PROT
 UTF8
 TVFS
 ESTA
 PASV
 EPSV
 SPSV
 ESTP
End.
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.787 #1 sending command PASV
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.810 #1 got 227-Entering Passive Mode (***,**,**,**,138,126)
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.811 #1 opening data connection to ***.**.**.**:35454
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.834 #1 upgrading data connection to TLS
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.835 #1 sending command MLSD /path
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.857 #1 got 150-Accepted data connection
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.907 #1 was ready
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.907 #1 sending command PASV
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.930 #1 got 227-Entering Passive Mode (***,**,**,**,131,15)
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.930 #1 opening data connection to ***.**.**.**:33551
Tue, 30 Apr 2019 09:30:18 UTC DBG goftp: 0.953 #1 upgrading data connection to TLS
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 0.953 #1 sending command MLSD /path/path
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 0.976 #1 got 150-Accepted data connection
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.026 #1 was ready
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.026 #1 sending command PASV
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.049 #1 got 227-Entering Passive Mode (***,**,**,**,130,119)
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.049 #1 opening data connection to ***.**.**.**:33399
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.073 #1 upgrading data connection to TLS
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.073 #1 sending command MLSD /path/path/path
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.096 #1 got 150-Accepted data connection
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.145 #1 was ready
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.145 #1 sending command PASV
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.167 #1 got 227-Entering Passive Mode (***,**,**,**,151,40)
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.167 #1 opening data connection to ***.**.**.**:38696
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.190 #1 upgrading data connection to TLS
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.190 #1 sending command MLSD /path/path/path/path
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.213 #1 got 150-Accepted data connection
Tue, 30 Apr 2019 09:30:19 UTC INF --------
Tue, 30 Apr 2019 09:30:19 UTC INF Checking /path/path/path/path/notEmpty
Tue, 30 Apr 2019 09:30:19 UTC INF Hash sum exists
Tue, 30 Apr 2019 09:30:19 UTC WRN Skipped: Hash sum exists
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.263 #1 was ready
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.263 #1 sending command PASV
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.290 #1 got 227-Entering Passive Mode (***,**,**,**,182,230)
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.290 #1 opening data connection to ***.**.**.**:46822
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.314 #1 upgrading data connection to TLS
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.314 #1 sending command MLSD /path/path/path/path
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.337 #1 got 150-Accepted data connection
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.386 #1 was ready
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.387 #1 sending command PASV
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.429 #1 got 227-Entering Passive Mode (***,**,**,**,125,93)
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.429 #1 opening data connection to ***.**.**.**:32093
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.453 #1 upgrading data connection to TLS
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.453 #1 sending command MLSD /path/path/path/path/American.Gods.S02.720p.AMZN.WEBRip.DDP5.1.x264-NTb[rartv]
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.476 #1 got 150-Accepted data connection
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.525 #1 was ready
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.526 #1 sending command PASV
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.548 #1 got 227-Entering Passive Mode (***,**,**,**,144,44)
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.548 #1 opening data connection to ***.**.**.**:36908
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.571 #1 upgrading data connection to TLS
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.572 #1 sending command MLSD /path/path/path/path/American.Gods.S02E04.720p.WEB.H264-METCON[rarbg]
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.596 #1 got 150-Accepted data connection
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.646 #1 was ready
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.646 #1 sending command PASV
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.669 #1 got 227-Entering Passive Mode (***,**,**,**,129,45)
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.669 #1 opening data connection to ***.**.**.**:33069
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.692 #1 upgrading data connection to TLS
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.692 #1 sending command MLSD /path/path/path/path/American.Gods.S02E05.720p.WEB.H264-METCON[rarbg]
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.715 #1 got 150-Accepted data connection
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.764 #1 was ready
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.764 #1 sending command PASV
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.787 #1 got 227-Entering Passive Mode (***,**,**,**,185,64)
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.787 #1 opening data connection to ***.**.**.**:47424
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.810 #1 upgrading data connection to TLS
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.811 #1 sending command MLSD /path/path/path/path/American.Gods.S02E06.720p.WEB.H264-METCON[rarbg]
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.833 #1 got 150-Accepted data connection
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.886 #1 was ready
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.886 #1 sending command PASV
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.909 #1 got 227-Entering Passive Mode (***,**,**,**,144,23)
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.909 #1 opening data connection to ***.**.**.**:36887
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.932 #1 upgrading data connection to TLS
Tue, 30 Apr 2019 09:30:19 UTC DBG goftp: 1.932 #1 sending command MLSD /path/path/path/path/American.Gods.S02E07.720p.WEB.H264-METCON[rarbg]
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 1.954 #1 got 150-Accepted data connection
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.006 #1 was ready
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.007 #1 sending command PASV
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.029 #1 got 227-Entering Passive Mode (***,**,**,**,178,242)
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.029 #1 opening data connection to ***.**.**.**:45810
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.053 #1 upgrading data connection to TLS
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.054 #1 sending command MLSD /path/path/path/path/American.Gods.S02E07.Treasure.of.the.Sun.REPACK.720p.AMZN.WEBRip.DDP5.1.x264-NTb[rarbg]
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.079 #1 got 150-Accepted data connection
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.128 #1 was ready
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.128 #1 sending command PASV
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.150 #1 got 227-Entering Passive Mode (***,**,**,**,182,205)
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.150 #1 opening data connection to ***.**.**.**:46797
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.174 #1 upgrading data connection to TLS
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.174 #1 sending command MLSD /path/path/path/path/American.Gods.S02E08.720p.WEB.H264-METCON[rarbg]
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.197 #1 got 150-Accepted data connection
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.246 #1 was ready
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.246 #1 sending command PASV
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.268 #1 got 227-Entering Passive Mode (***,**,**,**,142,92)
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.268 #1 opening data connection to ***.**.**.**:36444
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.293 #1 upgrading data connection to TLS
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.293 #1 sending command MLSD /path/path/path/path/Arrow.S07E17.720p.HDTV.x264-AVS[rarbg]
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.316 #1 got 150-Accepted data connection
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.367 #1 was ready
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.367 #1 sending command PASV
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.389 #1 got 227-Entering Passive Mode (***,**,**,**,164,46)
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.389 #1 opening data connection to ***.**.**.**:42030
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.412 #1 upgrading data connection to TLS
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.412 #1 sending command MLSD /path/path/path/path/Arrow.S07E18.720p.HDTV.x264-AVS[rarbg]
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.435 #1 got 150-Accepted data connection
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.484 #1 was ready
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.484 #1 sending command PASV
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.507 #1 got 227-Entering Passive Mode (***,**,**,**,155,152)
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.507 #1 opening data connection to ***.**.**.**:39832
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.530 #1 upgrading data connection to TLS
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.530 #1 sending command MLSD /path/path/path/path/Arrow.S07E19.720p.HDTV.x264-AVS[rarbg]
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.553 #1 got 150-Accepted data connection
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.601 #1 was ready
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.601 #1 sending command PASV
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.623 #1 got 227-Entering Passive Mode (***,**,**,**,156,212)
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.623 #1 opening data connection to ***.**.**.**:40148
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.646 #1 upgrading data connection to TLS
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.647 #1 sending command MLSD /path/path/path/path/DCs.Legends.of.Tomorrow.S04E09.720p.HDTV.x264-AVS[rarbg]
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.669 #1 got 150-Accepted data connection
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.719 #1 was ready
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.719 #1 sending command PASV
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.744 #1 got 227-Entering Passive Mode (***,**,**,**,166,207)
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.744 #1 opening data connection to ***.**.**.**:42703
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.767 #1 upgrading data connection to TLS
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.768 #1 sending command MLSD /path/path/path/path/DCs.Legends.of.Tomorrow.S04E10.720p.HDTV.x264-AVS[rarbg]
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.790 #1 got 150-Accepted data connection
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.841 #1 was ready
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.842 #1 sending command PASV
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.864 #1 got 227-Entering Passive Mode (***,**,**,**,120,231)
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.865 #1 opening data connection to ***.**.**.**:30951
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.888 #1 upgrading data connection to TLS
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.889 #1 sending command MLSD /path/path/path/path/DCs.Legends.of.Tomorrow.S04E11.720p.HDTV.x264-AVS[rarbg]
Tue, 30 Apr 2019 09:30:20 UTC DBG goftp: 2.912 #1 got 150-Accepted data connection
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 2.964 #1 was ready
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 2.965 #1 sending command PASV
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 2.988 #1 got 227-Entering Passive Mode (***,**,**,**,137,25)
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 2.989 #1 opening data connection to ***.**.**.**:35097
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.012 #1 upgrading data connection to TLS
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.013 #1 sending command MLSD /path/path/path/path/DCs.Legends.of.Tomorrow.S04E12.720p.HDTV.x264-AVS[rarbg]
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.035 #1 got 150-Accepted data connection
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.087 #1 was ready
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.087 #1 sending command PASV
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.110 #1 got 227-Entering Passive Mode (***,**,**,**,181,174)
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.110 #1 opening data connection to ***.**.**.**:46510
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.135 #1 upgrading data connection to TLS
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.135 #1 sending command MLSD /path/path/path/path/DCs.Legends.of.Tomorrow.S04E13.720p.HDTV.x264-KILLERS
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.159 #1 got 150-Accepted data connection
Tue, 30 Apr 2019 09:30:21 UTC INF --------
Tue, 30 Apr 2019 09:30:21 UTC INF Checking /path/path/path/path/DCs.Legends.of.Tomorrow.S04E13.720p.HDTV.x264-KILLERS/DCs.Legends.of.Tomorrow.S04E13.720p.HDTV.x264-KILLERS.mkv
Tue, 30 Apr 2019 09:30:21 UTC INF Never downloaded
Tue, 30 Apr 2019 09:30:21 UTC INF Downloading file (993.4MB) to /path/path/path/path/DCs.Legends.of.Tomorrow.S04E13.720p.HDTV.x264-KILLERS/DCs.Legends.of.Tomorrow.S04E13.720p.HDTV.x264-KILLERS.mkv...
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.209 #1 was ready
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.209 #1 sending command TYPE I
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.232 #1 got 200-TYPE is now 8-bit binary
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.232 #1 sending command SIZE /path/path/path/path/DCs.Legends.of.Tomorrow.S04E13.720p.HDTV.x264-KILLERS/DCs.Legends.of.Tomorrow.S04E13.720p.HDTV.x264-KILLERS.mkv
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.256 #1 got 213-993427745
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.257 #1 was ready
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.257 #1 was ready
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.257 #1 sending command TYPE I
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.280 #1 got 200-TYPE is now 8-bit binary
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.280 #1 sending command PASV
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.304 #1 got 227-Entering Passive Mode (***,**,**,**,146,4)
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.305 #1 opening data connection to ***.**.**.**:37380
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.328 #1 upgrading data connection to TLS
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.329 #1 sending command RETR /path/path/path/path/DCs.Legends.of.Tomorrow.S04E13.720p.HDTV.x264-KILLERS/DCs.Legends.of.Tomorrow.S04E13.720p.HDTV.x264-KILLERS.mkv
Tue, 30 Apr 2019 09:30:21 UTC DBG goftp: 3.351 #1 got 150-Accepted data connection
970144.3 kbytes to download
Tue, 30 Apr 2019 09:32:18 UTC INF File successfully downloaded!
Tue, 30 Apr 2019 09:32:18 UTC INF Time spent: 1 minute
Tue, 30 Apr 2019 09:32:18 UTC INF --------
Tue, 30 Apr 2019 09:32:18 UTC INF Checking /path/path/path/path/DCs.Legends.of.Tomorrow.S04E13.720p.HDTV.x264-KILLERS/RARBG.txt
Tue, 30 Apr 2019 09:32:18 UTC INF Never downloaded
Tue, 30 Apr 2019 09:32:18 UTC INF Downloading file (30B) to /path/path/path/path/DCs.Legends.of.Tomorrow.S04E13.720p.HDTV.x264-KILLERS/RARBG.txt...
Tue, 30 Apr 2019 09:32:18 UTC DBG goftp: 120.931 #1 was ready
Tue, 30 Apr 2019 09:32:18 UTC DBG goftp: 120.931 #1 sending command TYPE I
Tue, 30 Apr 2019 09:32:18 UTC DBG goftp: 120.953 #1 got 200-TYPE is now 8-bit binary
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 120.954 #1 sending command SIZE /path/path/path/path/DCs.Legends.of.Tomorrow.S04E13.720p.HDTV.x264-KILLERS/RARBG.txt
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 120.984 #1 got 213-30
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 120.985 #1 was ready
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 120.986 #1 was ready
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 120.986 #1 sending command TYPE I
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.010 #1 got 200-TYPE is now 8-bit binary
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.010 #1 sending command PASV
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.034 #1 got 227-Entering Passive Mode (***,**,**,**,178,137)
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.035 #1 opening data connection to ***.**.**.**:45705
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.058 #1 upgrading data connection to TLS
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.058 #1 sending command RETR /path/path/path/path/DCs.Legends.of.Tomorrow.S04E13.720p.HDTV.x264-KILLERS/RARBG.txt
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.081 #1 got 150-Accepted data connection
Tue, 30 Apr 2019 09:32:19 UTC INF File successfully downloaded!
Tue, 30 Apr 2019 09:32:19 UTC INF Time spent: 274 milliseconds
Tue, 30 Apr 2019 09:32:19 UTC INF --------
Tue, 30 Apr 2019 09:32:19 UTC INF Checking /path/path/path/path/DCs.Legends.of.Tomorrow.S04E13.720p.HDTV.x264-KILLERS/file.exe
Tue, 30 Apr 2019 09:32:19 UTC INF Never downloaded
Tue, 30 Apr 2019 09:32:19 UTC INF Downloading file (99B) to /path/path/path/path/DCs.Legends.of.Tomorrow.S04E13.720p.HDTV.x264-KILLERS/file.exe...
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.206 #1 was ready
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.206 #1 sending command TYPE I
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.231 #1 got 200-TYPE is now 8-bit binary
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.231 #1 sending command SIZE /path/path/path/path/DCs.Legends.of.Tomorrow.S04E13.720p.HDTV.x264-KILLERS/file.exe
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.255 #1 got 213-99
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.255 #1 was ready
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.255 #1 was ready
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.255 #1 sending command TYPE I
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.279 #1 got 200-TYPE is now 8-bit binary
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.279 #1 sending command PASV
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.303 #1 got 227-Entering Passive Mode (***,**,**,**,143,154)
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.303 #1 opening data connection to ***.**.**.**:36762
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.326 #1 upgrading data connection to TLS
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.326 #1 sending command RETR /path/path/path/path/DCs.Legends.of.Tomorrow.S04E13.720p.HDTV.x264-KILLERS/file.exe
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.349 #1 got 150-Accepted data connection
Tue, 30 Apr 2019 09:32:19 UTC INF File successfully downloaded!
Tue, 30 Apr 2019 09:32:19 UTC INF Time spent: 273 milliseconds
Tue, 30 Apr 2019 09:32:19 UTC INF --------
Tue, 30 Apr 2019 09:32:19 UTC INF Checking /path/path/path/path/DCs.Legends.of.Tomorrow.S04E13.720p.HDTV.x264-KILLERS/dcs.legends.of.tomorrow.s04e13.720p.hdtv.x264-killers.nfo
Tue, 30 Apr 2019 09:32:19 UTC INF Never downloaded
Tue, 30 Apr 2019 09:32:19 UTC INF Downloading file (10.88kB) to /path/path/path/path/DCs.Legends.of.Tomorrow.S04E13.720p.HDTV.x264-KILLERS/dcs.legends.of.tomorrow.s04e13.720p.hdtv.x264-killers.nfo...
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.480 #1 was ready
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.480 #1 sending command TYPE I
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.504 #1 got 200-TYPE is now 8-bit binary
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.504 #1 sending command SIZE /path/path/path/path/DCs.Legends.of.Tomorrow.S04E13.720p.HDTV.x264-KILLERS/dcs.legends.of.tomorrow.s04e13.720p.hdtv.x264-killers.nfo
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.527 #1 got 213-10885
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.527 #1 was ready
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.527 #1 was ready
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.527 #1 sending command TYPE I
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.551 #1 got 200-TYPE is now 8-bit binary
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.552 #1 sending command PASV
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.575 #1 got 227-Entering Passive Mode (***,**,**,**,119,31)
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.575 #1 opening data connection to ***.**.**.**:30495
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.599 #1 upgrading data connection to TLS
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.599 #1 sending command RETR /path/path/path/path/DCs.Legends.of.Tomorrow.S04E13.720p.HDTV.x264-KILLERS/dcs.legends.of.tomorrow.s04e13.720p.hdtv.x264-killers.nfo
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.622 #1 got 150-Accepted data connection
10.6 kbytes to download
Tue, 30 Apr 2019 09:32:19 UTC INF File successfully downloaded!
Tue, 30 Apr 2019 09:32:19 UTC INF Time spent: 249 milliseconds
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.729 #1 was ready
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.729 #1 sending command PASV
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.753 #1 got 227-Entering Passive Mode (***,**,**,**,119,156)
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.753 #1 opening data connection to ***.**.**.**:30620
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.776 #1 upgrading data connection to TLS
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.776 #1 sending command MLSD /path/path/path/path/Game.of.Thrones.S08E01.720p.WEB.H264-MEMENTO[rarbg]
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.799 #1 got 150-Accepted data connection
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.848 #1 was ready
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.848 #1 sending command PASV
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.870 #1 got 227-Entering Passive Mode (***,**,**,**,168,190)
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.870 #1 opening data connection to ***.**.**.**:43198
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.893 #1 upgrading data connection to TLS
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.893 #1 sending command MLSD /path/path/path/path/Game.of.Thrones.S08E01.REPACK.720p.WEB.H264-MEMENTO[rarbg]
Tue, 30 Apr 2019 09:32:19 UTC DBG goftp: 121.916 #1 got 150-Accepted data connection
Tue, 30 Apr 2019 09:32:20 UTC DBG goftp: 121.967 #1 was ready
Tue, 30 Apr 2019 09:32:20 UTC DBG goftp: 121.967 #1 sending command PASV
Tue, 30 Apr 2019 09:32:20 UTC DBG goftp: 121.989 #1 got 227-Entering Passive Mode (***,**,**,**,151,22)
Tue, 30 Apr 2019 09:32:20 UTC DBG goftp: 121.989 #1 opening data connection to ***.**.**.**:38678
Tue, 30 Apr 2019 09:32:20 UTC DBG goftp: 122.017 #1 upgrading data connection to TLS
Tue, 30 Apr 2019 09:32:20 UTC DBG goftp: 122.017 #1 sending command MLSD /path/path/path/path/Game.of.Thrones.S08E02.720p.WEB.H264-MEMENTO[rarbg]
Tue, 30 Apr 2019 09:32:20 UTC DBG goftp: 122.041 #1 got 150-Accepted data connection
Tue, 30 Apr 2019 09:32:20 UTC DBG goftp: 122.092 #1 was ready
Tue, 30 Apr 2019 09:32:20 UTC DBG goftp: 122.092 #1 sending command PASV
Tue, 30 Apr 2019 09:32:20 UTC DBG goftp: 122.115 #1 got 227-Entering Passive Mode (***,**,**,**,156,0)
Tue, 30 Apr 2019 09:32:20 UTC DBG goftp: 122.115 #1 opening data connection to ***.**.**.**:39936
Tue, 30 Apr 2019 09:32:20 UTC DBG goftp: 122.138 #1 upgrading data connection to TLS
Tue, 30 Apr 2019 09:32:20 UTC DBG goftp: 122.138 #1 sending command MLSD /path/path/path/path/Game.of.Thrones.S08E03.720p.WEB.H264-MEMENTO[rarbg]
Tue, 30 Apr 2019 09:32:20 UTC DBG goftp: 122.161 #1 got 150-Accepted data connection
Tue, 30 Apr 2019 09:32:20 UTC DBG goftp: 122.211 #1 was ready
Tue, 30 Apr 2019 09:32:20 UTC DBG goftp: 122.211 #1 sending command PASV
Tue, 30 Apr 2019 09:32:20 UTC DBG goftp: 122.233 #1 got 227-Entering Passive Mode (***,**,**,**,158,121)

[... cut log]

Tue, 30 Apr 2019 09:32:23 UTC DBG goftp: 125.044 #1 opening data connection to ***.**.**.**:40270
Tue, 30 Apr 2019 09:32:23 UTC DBG goftp: 125.067 #1 upgrading data connection to TLS
Tue, 30 Apr 2019 09:32:23 UTC DBG goftp: 125.067 #1 sending command MLSD /path/path/path/path/Young.Sheldon.S02E18.720p.HDTV.x264-LucidTV[rarbg]
Tue, 30 Apr 2019 09:32:23 UTC DBG goftp: 125.090 #1 got 150-Accepted data connection
Tue, 30 Apr 2019 09:32:23 UTC DBG goftp: 125.140 #1 was ready
Tue, 30 Apr 2019 09:32:23 UTC DBG goftp: 125.140 #1 sending command PASV
Tue, 30 Apr 2019 09:32:23 UTC DBG goftp: 125.162 #1 got 227-Entering Passive Mode (***,**,**,**,157,125)
Tue, 30 Apr 2019 09:32:23 UTC DBG goftp: 125.162 #1 opening data connection to ***.**.**.**:40317
Tue, 30 Apr 2019 09:32:23 UTC DBG goftp: 125.185 #1 upgrading data connection to TLS
Tue, 30 Apr 2019 09:32:23 UTC DBG goftp: 125.185 #1 sending command MLSD /path/path/path/path/Young.Sheldon.S02E19.720p.WEB.H264-MEMENTO[rarbg]
Tue, 30 Apr 2019 09:32:23 UTC DBG goftp: 125.208 #1 got 150-Accepted data connection
Tue, 30 Apr 2019 09:32:23 UTC INF --------
Tue, 30 Apr 2019 09:32:23 UTC INF Checking /path/path/path/path/notEmpty
Tue, 30 Apr 2019 09:32:23 UTC INF Hash sum exists
Tue, 30 Apr 2019 09:32:23 UTC WRN Skipped: Hash sum exists
Tue, 30 Apr 2019 09:32:23 UTC DBG goftp: 125.258 #1 closing
Tue, 30 Apr 2019 09:32:23 UTC INF ########
Tue, 30 Apr 2019 09:32:23 UTC INF Finished, total time spent: 2 minutes

@mickael-bertrand
Copy link
Author

and here is the log of my ftp client if it can help you :


[L] Connect to servername port 21
[L] 220---------- Welcome to Pure-FTPd [privsep] [TLS] ----------
[L] 220-You are user number 5 of 200 allowed.
[L] 220-Local time is now 22:38. Server port: 21.
[L] 220-This is a private system - No anonymous login
[L] 220-IPv6 connections are also welcome on this server.
[L] 220 You will be disconnected after 15 minutes of inactivity.
[L] AUTH TLS
[L] 234 AUTH TLS OK.
[L] Negotiating Security Session...
[L] PBSZ 0
[L] TSL negotiation successful.
[L] Encrypting session using cipher TLS_RSA_WITH_AES_256_CBC_SHA256
[L] 200 PBSZ=0
[L] USER username
[L] 331 User username OK. Password required
[L] PASS (hidden)
[L] 230-This server supports FXP transfers
[L] 230 OK. Current restricted directory is /
[L] TYPE I
[L] 200 TYPE is now 8-bit binary
[L] FEAT
[L] 211-Extensions supported:
[L]  EPRT
[L]  IDLE
[L]  MDTM
[L]  SIZE
[L]  MFMT
[L]  REST STREAM
[L]  MLST type*;size*;sizd*;modify*;UNIX.mode*;UNIX.uid*;UNIX.gid*;unique*;
[L]  MLSD
[L]  AUTH TLS
[L]  PBSZ
[L]  PROT
[L]  UTF8
[L]  TVFS
[L]  ESTA
[L]  PASV
[L]  EPSV
[L]  SPSV
[L]  ESTP
[L] 211 End.
[L] PWD
[L] 257 "/" is your current location
[L] CWD /path/path/path/path/path/The.Blacklist.S06E13.720p.HDTV.x264-KILLERS[rarbg]
[L] 250 OK. Current directory is /path/path/path/path/path/The.Blacklist.S06E13.720p.HDTV.x264-KILLERS[rarbg]
[L] SYST
[L] 215 UNIX Type: L8
[L] PROT P
[L] 200 Data protection level set to "private"
[L] PASV
[L] 227 Entering Passive Mode (***,**,**,**,188,73)
[L] Opening data connection IP: ***.**.**.** PORT: 48201
[L] LIST -al
[L] 150 Accepted data connection
[L] 226-Options: -a -l 
[L] 226 6 matches total
[L] PASV
[L] 227 Entering Passive Mode (***,**,**,**,157,110)
[L] Opening data connection IP: ***.**.**.** PORT: 40302
[L] RETR /path/path/path/path/path/The.Blacklist.S06E13.720p.HDTV.x264-KILLERS[rarbg]/RARBG_DO_NOT_MIRROR.exe
[L] 150 Accepted data connection
[L] 226-File successfully transferred
[L] 226 0.006 seconds (measured here), 17.47 Kbytes per second
[L] PASV
[L] 227 Entering Passive Mode (***,**,**,**,174,219)
[L] Opening data connection IP: ***.**.**.** PORT: 44763
[L] RETR /path/path/path/path/path/The.Blacklist.S06E14.720p.HDTV.x264-KILLERS[rarbg]/The.Blacklist.S06E14.720p.HDTV.x264-KILLERS.mkv
[L] 150-Accepted data connection
[L] 150 997349.5 kbytes to download
[L] 226-File successfully transferred
[L] 226 213.190 seconds (measured here), 4.57 Mbytes per second

@mickael-bertrand
Copy link
Author

mickael-bertrand commented May 2, 2019

And, the "bug" is not when the brakcet are in the file name but in the folder name.

Maybe an error with the MLSD command to list content of a directory with bracket character... ?
My ftp client is using LIST.

@crazy-max
Copy link
Owner

@mickael-bertrand Looks it happens when a folder contains a closing bracket. I keep you in touch.

@crazy-max
Copy link
Owner

@mickael-bertrand I have opened an issue on the upstream repository secsy/goftp#39.

@crazy-max
Copy link
Owner

@mickael-bertrand Ok after digging it's an issue with PureFTPd. I think this is something linked to globbing like ProFTPd. I don't know how to disable global matching for pureFTPd but I can force FTPGrab to escape those globbing chars.

@mickael-bertrand
Copy link
Author

OK good news:)
Thanks for the search and if you find time to do a workaround it's great because tour app is very usefull !

@crazy-max
Copy link
Owner

@mickael-bertrand Latest release should fix your issue ;)

@mickael-bertrand
Copy link
Author

Thanks, tested and approved :)

@crazy-max
Copy link
Owner

Hi @mickael-bertrand, glad to hear it and thanks a lot for your donation ❤️

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants