michaelslamet Posted July 24, 2013 Posted July 24, 2013 I'm going to use FTP function from AutoIT to send some files to server, but as far as I can read, it send the credentials without encryption, isn't it? With WinSCP, I can choose FTP with "TLS Explicit Encryption" with the same 21 port, even I dont know how secure is that, but it will be better compare to no encryption at all. So can we send the crendentials (and other data) securely using built-in FTP function in AutoIT without wrappers?
orbs Posted July 24, 2013 Posted July 24, 2013 there is no built-in support for secure FTP. go to the "Example Scripts" forum and search for "SFTP", you'll find a good implementation here: '?do=embed' frameborder='0' data-embedContent>> this is using an external tool - PSFTP from the PuTTY package, so if you are not limited to AutoIt, you may want to use that tool directly. Signature - my forum contributions: Spoiler UDF: LFN - support for long file names (over 260 characters) InputImpose - impose valid characters in an input control TimeConvert - convert UTC to/from local time and/or reformat the string representation AMF - accept multiple files from Windows Explorer context menu DateDuration - literal description of the difference between given dates Apps: Touch - set the "modified" timestamp of a file to current time Show For Files - tray menu to show/hide files extensions, hidden & system files, and selection checkboxes SPDiff - Single-Pane Text Diff
michaelslamet Posted July 24, 2013 Author Posted July 24, 2013 there is no built-in support for secure FTP. go to the "Example Scripts" forum and search for "SFTP", you'll find a good implementation here: '?do=embed' frameborder='0' data-embedContent>> this is using an external tool - PSFTP from the PuTTY package, so if you are not limited to AutoIt, you may want to use that tool directly. Thanks, orbs So I guess without external tools, it's not "supported" at this time?
orbs Posted July 24, 2013 Posted July 24, 2013 'supported' by who? Microsoft? then no, they have not implemented SFTP into any DLL that AutoIt can make use of (as far as i know). have a look at the link i provided, there are other suggestions mentioned. but the short answer is no, no 'supported' method. Signature - my forum contributions: Spoiler UDF: LFN - support for long file names (over 260 characters) InputImpose - impose valid characters in an input control TimeConvert - convert UTC to/from local time and/or reformat the string representation AMF - accept multiple files from Windows Explorer context menu DateDuration - literal description of the difference between given dates Apps: Touch - set the "modified" timestamp of a file to current time Show For Files - tray menu to show/hide files extensions, hidden & system files, and selection checkboxes SPDiff - Single-Pane Text Diff
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now