<?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: Creating a secure ftp user in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-secure-ftp-user/m-p/4871326#M398779</link>
    <description>Thanks all</description>
    <pubDate>Thu, 18 Nov 2004 22:41:29 GMT</pubDate>
    <dc:creator>Laurence Beard</dc:creator>
    <dc:date>2004-11-18T22:41:29Z</dc:date>
    <item>
      <title>Creating a secure ftp user</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-secure-ftp-user/m-p/4871322#M398775</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I have been trying to create an ftp user that can login into a specific directory and can not cd .. or change to another directory.&lt;BR /&gt;&lt;BR /&gt;Is this possible. I have considered using the restricted user shell with no success.&lt;BR /&gt;&lt;BR /&gt;regards</description>
      <pubDate>Thu, 18 Nov 2004 20:53:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-secure-ftp-user/m-p/4871322#M398775</guid>
      <dc:creator>Laurence Beard</dc:creator>
      <dc:date>2004-11-18T20:53:03Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a secure ftp user</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-secure-ftp-user/m-p/4871323#M398776</link>
      <description>Hi Laurence,&lt;BR /&gt;&lt;BR /&gt;You will need to use 'ftpaccess' file with 'chroot'ed home directory. &lt;BR /&gt;&lt;BR /&gt;1. Make the user's home directory like /home/user/./ in /etc/passwd file.&lt;BR /&gt;2. Create a group say 'ftponly' and change the primary group of the user to ftponly.&lt;BR /&gt;3. Add the following lines to your /etc/ftpd/ftpaccess file (if you don't have an ftpaccess file, then copy it from /usr/newconfig/etc/ftpd/ directory)&lt;BR /&gt;&lt;BR /&gt;guestgroup ftponly&lt;BR /&gt;&lt;BR /&gt;With the above user will not be able to move above /home/user structure. If you want you can further set the restrictions using 'upload' directive. 'man ftpaccess' for more option.&lt;BR /&gt;&lt;BR /&gt;You will have to add -a to your ftpd line in /etc/inetd.conf and refresh inetd ( inetd -c ).&lt;BR /&gt;&lt;BR /&gt;BTW, this works only from 11.0 and above. For 10.20, you will have to install wu_ftp software.&lt;BR /&gt;&lt;BR /&gt;-Sri</description>
      <pubDate>Thu, 18 Nov 2004 21:00:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-secure-ftp-user/m-p/4871323#M398776</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2004-11-18T21:00:28Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a secure ftp user</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-secure-ftp-user/m-p/4871324#M398777</link>
      <description>Hi Laurence,&lt;BR /&gt;&lt;BR /&gt;You need to setup ftpaccess for this user/group. Do "man ftpaccess" for more info on ftpaccess.&lt;BR /&gt;&lt;BR /&gt;Here is a sample doc from itrc on how to setup restricted ftp access for a user,&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www2.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&amp;amp;docId=200000073346999" target="_blank"&gt;http://www2.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&amp;amp;docId=200000073346999&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;The itrc doc id is BC0814KBRC00007719.&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;Regds&lt;BR /&gt;</description>
      <pubDate>Thu, 18 Nov 2004 22:23:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-secure-ftp-user/m-p/4871324#M398777</guid>
      <dc:creator>Sanjay_6</dc:creator>
      <dc:date>2004-11-18T22:23:17Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a secure ftp user</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-secure-ftp-user/m-p/4871325#M398778</link>
      <description>Make sure the shell for the user in /etc/profile is /bin/false&lt;BR /&gt;&lt;BR /&gt;If there is a user that owns the ftpd binaries that should be the same.&lt;BR /&gt;&lt;BR /&gt;Its possible with buffer overflows to trick the ftp daemon into running commands and even getting a shell prompt. This will prevent that.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 18 Nov 2004 22:25:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-secure-ftp-user/m-p/4871325#M398778</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-11-18T22:25:15Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a secure ftp user</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-secure-ftp-user/m-p/4871326#M398779</link>
      <description>Thanks all</description>
      <pubDate>Thu, 18 Nov 2004 22:41:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-secure-ftp-user/m-p/4871326#M398779</guid>
      <dc:creator>Laurence Beard</dc:creator>
      <dc:date>2004-11-18T22:41:29Z</dc:date>
    </item>
  </channel>
</rss>

