diff options
author | Gregory P. Smith <greg@krypto.org> | 2021-03-15 12:04:49 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-15 12:04:49 -0700 |
commit | 664d1d16274b47eea6ec92572e1ebf3939a6fa0c (patch) | |
tree | 7d004119a1688f6fd0a9d727f0a650aa26100314 /Lib/ftplib.py | |
parent | Fix typo in the word "spaghetti" (GH-24866) (diff) | |
download | cpython-664d1d16274b47eea6ec92572e1ebf3939a6fa0c.tar.gz cpython-664d1d16274b47eea6ec92572e1ebf3939a6fa0c.tar.bz2 cpython-664d1d16274b47eea6ec92572e1ebf3939a6fa0c.zip |
[3.8] bpo-43285 Make ftplib not trust the PASV response. (GH-24838) (GH-24881)
bpo-43285: Make ftplib not trust the PASV response.
The IPv4 address value returned from the server in response to the PASV command
should not be trusted. This prevents a malicious FTP server from using the
response to probe IPv4 address and port combinations on the client network.
Instead of using the returned address, we use the IP address we're
already connected to. This is the strategy other ftp clients adopted,
and matches the only strategy available for the modern IPv6 EPSV command
where the server response must return a port number and nothing else.
For the rare user who _wants_ this ugly behavior, set a `trust_server_pasv_ipv4_address`
attribute on your `ftplib.FTP` instance to True..
(cherry picked from commit 0ab152c6b5d95caa2dc1a30fa96e10258b5f188e)
Co-authored-by: Gregory P. Smith <greg@krypto.org>
Diffstat (limited to 'Lib/ftplib.py')
-rw-r--r-- | Lib/ftplib.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Lib/ftplib.py b/Lib/ftplib.py index 58a46bca4a3..f0044ffde77 100644 --- a/Lib/ftplib.py +++ b/Lib/ftplib.py @@ -104,6 +104,8 @@ class FTP: welcome = None passiveserver = 1 encoding = "latin-1" + # Disables https://bugs.python.org/issue43285 security if set to True. + trust_server_pasv_ipv4_address = False # Initialization method (called by class instantiation). # Initialize host to localhost, port to standard ftp port @@ -316,8 +318,13 @@ class FTP: return sock def makepasv(self): + """Internal: Does the PASV or EPSV handshake -> (address, port)""" if self.af == socket.AF_INET: - host, port = parse227(self.sendcmd('PASV')) + untrusted_host, port = parse227(self.sendcmd('PASV')) + if self.trust_server_pasv_ipv4_address: + host = untrusted_host + else: + host = self.sock.getpeername()[0] else: host, port = parse229(self.sendcmd('EPSV'), self.sock.getpeername()) return host, port |