This might be a stupid question as I am not a network/security guy.
I am thinking about implementing a feature in a package I develop that downloads a file from an external server. Should safety be a concern here?
Specifically, I want to download a CSV file from a data repo using Downloads.download()
and read it in afterwards. However, I worry that I accidentally implement a security risk. E.g. someone hacks the repo and exchanges the CSV file with a virus. Or someone resolves the URL to a different IP and makes the package download a virus from another server. Do I have to worry about these or similar scenarios and if yes: Could I mitigate the risk somehow?
Thanks!