I have been using pscp to upload some files to a remote server but apparently they are updating the security so that only certain SFTP and MAC ciphers are allowed, but I'm not really a programmer so I don't know what this all entails.
Right now I have this command in a batch script (using generic capital letters here instead of the actual words/strings used):
echo y | "CURRENT_PATH\pscp.exe" -sftp -P 22 -pw "PASSWORD" "LOCAL\PATH\TO\FILE.txt" SOME_SERVER@SERVER.COM:/SERVER/PATH/TO/FILE.txt
How do I change or update this so it is compatible with the following:
Allowed SSH Ciphers: aes256-cbc, aes256-ctr
Allowed MAC Ciphers: hmac-sha2-512, hmac-sha2-256
I don't know if I need only one or both of these SSH/MAC things to make it work.