HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Can I scp the update file from the cdn?
![_vk](https://secure.gravatar.com/avatar/1a7f59591e8a4a2a8bb987ef1738392f/?default=https%3A%2F%2Fvanillicon.com%2Fa651d3e73c6a1258baf72da5b60b52b6_100.png&rating=g&size=100)
Hello guys. Is it possible to scp (or even ssh) the update file? Which user should I use?
I tried:
scp -v @us.v-cdn.net:/5018160/uploads/addons/3JQXC5NIGUWR.zip 33.zip
and got
debug1: connect to address 2606:4700::6812:c20d port 22: Connection timed out
Sorry that is not a Vanilla specific question, but I could use some help.
Thanks
"If you can Stay home. Stay safe. "
0
Comments
scp and ssh are used for connections where authentication is needed. To fetch a file from a public cdn you only need to make simple requests. I would go for
wget https://us.v-cdn.net/5018160/uploads/addons/3JQXC5NIGUWR.zip
with curl as my second choice.Thanks!!! Appreciate.