<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Encrypted Password in ftp in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/encrypted-password-in-ftp/m-p/4111832#M92998</link>
    <description>No - you can't encrypt a password in ftp - non secure protocol.&lt;BR /&gt;&lt;BR /&gt;Use sftp instead, setup keys to allow login without a password. (that way you don't have to embed the password in a script!).&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
    <pubDate>Thu, 03 Jan 2008 18:13:11 GMT</pubDate>
    <dc:creator>Geoff Wild</dc:creator>
    <dc:date>2008-01-03T18:13:11Z</dc:date>
    <item>
      <title>Encrypted Password in ftp</title>
      <link>https://community.hpe.com/t5/operating-system-linux/encrypted-password-in-ftp/m-p/4111826#M92992</link>
      <description>Hello All,&lt;BR /&gt;&lt;BR /&gt;Is it possible to use encrypted passwd in ftp. &lt;BR /&gt;&lt;BR /&gt;For example,&lt;BR /&gt;USER=user1&lt;BR /&gt;PASS="passwd" # Currently it in plain text, need        &lt;BR /&gt;              # to use the encrypted string.&lt;BR /&gt;&lt;BR /&gt;ftp -n ftp_server &amp;lt;&lt;EOF&gt;&lt;/EOF&gt;user ${USER} ${PASS}&lt;BR /&gt;put filename.txt&lt;BR /&gt;bye&lt;BR /&gt;EOF&lt;BR /&gt;&lt;BR /&gt;Kindly show some pointers for the same.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Raghu</description>
      <pubDate>Wed, 05 Dec 2007 07:31:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/encrypted-password-in-ftp/m-p/4111826#M92992</guid>
      <dc:creator>Raghu Chikkamenahalli</dc:creator>
      <dc:date>2007-12-05T07:31:15Z</dc:date>
    </item>
    <item>
      <title>Re: Encrypted Password in ftp</title>
      <link>https://community.hpe.com/t5/operating-system-linux/encrypted-password-in-ftp/m-p/4111827#M92993</link>
      <description>&amp;gt;Is it possible to use encrypted passwd in ftp.&lt;BR /&gt;&lt;BR /&gt;That's probably the same level of security of rcp with .rhosts.&lt;BR /&gt;&lt;BR /&gt;I don't think you can do this.  You can put your password in a .netrc file.&lt;BR /&gt;</description>
      <pubDate>Wed, 05 Dec 2007 07:49:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/encrypted-password-in-ftp/m-p/4111827#M92993</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2007-12-05T07:49:34Z</dc:date>
    </item>
    <item>
      <title>Re: Encrypted Password in ftp</title>
      <link>https://community.hpe.com/t5/operating-system-linux/encrypted-password-in-ftp/m-p/4111828#M92994</link>
      <description>sorry this is not poseble, if you want to encript you can use sftp and keys, than you will not have a passwd in your scripts. &lt;BR /&gt;the .netrc file is alsow useble, but then the passwd is in plain tektst in the users home dir.  &lt;BR /&gt;&lt;BR /&gt;sorry ftp is just not secure...</description>
      <pubDate>Wed, 05 Dec 2007 07:53:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/encrypted-password-in-ftp/m-p/4111828#M92994</guid>
      <dc:creator>F Verschuren</dc:creator>
      <dc:date>2007-12-05T07:53:00Z</dc:date>
    </item>
    <item>
      <title>Re: Encrypted Password in ftp</title>
      <link>https://community.hpe.com/t5/operating-system-linux/encrypted-password-in-ftp/m-p/4111829#M92995</link>
      <description>Dear Raghu,&lt;BR /&gt;&lt;BR /&gt;You can keep the user name and password in an encrypted file created by crypt command.&lt;BR /&gt;&lt;BR /&gt;For details check the man page of crypt. &lt;BR /&gt;&lt;BR /&gt;If you want more assistance, let me write.&lt;BR /&gt;&lt;BR /&gt;Rgds&lt;BR /&gt;-NKG-</description>
      <pubDate>Thu, 03 Jan 2008 12:05:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/encrypted-password-in-ftp/m-p/4111829#M92995</guid>
      <dc:creator>Nitin Kumar Gupta</dc:creator>
      <dc:date>2008-01-03T12:05:33Z</dc:date>
    </item>
    <item>
      <title>Re: Encrypted Password in ftp</title>
      <link>https://community.hpe.com/t5/operating-system-linux/encrypted-password-in-ftp/m-p/4111830#M92996</link>
      <description>&amp;gt; Is it possible to use encrypted passwd in&lt;BR /&gt;&amp;gt; ftp.&lt;BR /&gt;&lt;BR /&gt;Not really.  You're talking to an FTP server,&lt;BR /&gt;and it almost certainly wants a plain-text&lt;BR /&gt;user name and password.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; You can keep the user name and password in&lt;BR /&gt;&amp;gt; an encrypted file created by crypt command.&lt;BR /&gt;&lt;BR /&gt;And then you have to deal with the "crypt"&lt;BR /&gt;password.  What's the point?&lt;BR /&gt;&lt;BR /&gt;If you want to avoid using a plain-text&lt;BR /&gt;password, then you _should_ be asking how to&lt;BR /&gt;transfer a file without using FTP.  You don't&lt;BR /&gt;seem to like suggestions to use SFTP, so it's&lt;BR /&gt;not clear what will make you happy.  Perhaps&lt;BR /&gt;you should begin again, and state the actual&lt;BR /&gt;problem to be solved, and your actual&lt;BR /&gt;requirements and restrictions.  This often&lt;BR /&gt;works better than asking how to implement&lt;BR /&gt;some impossible part of a bad solution.</description>
      <pubDate>Thu, 03 Jan 2008 17:12:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/encrypted-password-in-ftp/m-p/4111830#M92996</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2008-01-03T17:12:05Z</dc:date>
    </item>
    <item>
      <title>Re: Encrypted Password in ftp</title>
      <link>https://community.hpe.com/t5/operating-system-linux/encrypted-password-in-ftp/m-p/4111831#M92997</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;if you dont want to put the password in the script you can use the .netrc file and specify a switch with the ftp command ( see the man page )&lt;BR /&gt;&lt;BR /&gt;as far as security goes I would not use this method however I would configure either sftp or scp using the ssh protocols etc.&lt;BR /&gt;&lt;BR /&gt;hth&lt;BR /&gt;&lt;BR /&gt;Chris</description>
      <pubDate>Thu, 03 Jan 2008 17:24:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/encrypted-password-in-ftp/m-p/4111831#M92997</guid>
      <dc:creator>lawrenzo</dc:creator>
      <dc:date>2008-01-03T17:24:37Z</dc:date>
    </item>
    <item>
      <title>Re: Encrypted Password in ftp</title>
      <link>https://community.hpe.com/t5/operating-system-linux/encrypted-password-in-ftp/m-p/4111832#M92998</link>
      <description>No - you can't encrypt a password in ftp - non secure protocol.&lt;BR /&gt;&lt;BR /&gt;Use sftp instead, setup keys to allow login without a password. (that way you don't have to embed the password in a script!).&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Thu, 03 Jan 2008 18:13:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/encrypted-password-in-ftp/m-p/4111832#M92998</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2008-01-03T18:13:11Z</dc:date>
    </item>
    <item>
      <title>Re: Encrypted Password in ftp</title>
      <link>https://community.hpe.com/t5/operating-system-linux/encrypted-password-in-ftp/m-p/4111833#M92999</link>
      <description>As mentioned, ftp is an industry standard protocol and there is nothing you can do to change the plaintext password  requirment. Eve burying the password in $HOME/.netrc won't remove the requirement to transmit the plaintext string across the network. It can still be sniffed by anyone with access to your network.&lt;BR /&gt; &lt;BR /&gt;While ftp is the most common protocol available for exchanging files, it is no longer useful in today's security environments. If the password is a concern, then the data is probably important and must be protected. The only compatible file transfer that is secure for both login/password as well as data is ssh (and it's siblings scp and sftp). You can download ssh from HP at software.hp.com.</description>
      <pubDate>Fri, 04 Jan 2008 01:58:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/encrypted-password-in-ftp/m-p/4111833#M92999</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2008-01-04T01:58:03Z</dc:date>
    </item>
    <item>
      <title>Re: Encrypted Password in ftp</title>
      <link>https://community.hpe.com/t5/operating-system-linux/encrypted-password-in-ftp/m-p/4111834#M93000</link>
      <description>Hello All,&lt;BR /&gt;&lt;BR /&gt;Thanks for the pointers. &lt;BR /&gt;I have used sftp in place of ftp by exchanging the keys.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Raghu.</description>
      <pubDate>Fri, 04 Jan 2008 03:00:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/encrypted-password-in-ftp/m-p/4111834#M93000</guid>
      <dc:creator>Raghu Chikkamenahalli</dc:creator>
      <dc:date>2008-01-04T03:00:26Z</dc:date>
    </item>
  </channel>
</rss>

