<?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: setuid in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/setuid/m-p/3666449#M242897</link>
    <description>#chmod 4555 /jvpc/ops/PriceMaker/Product/lib/unixuserinfo and other files, also # chown root:bin /jvpc/ops/PriceMaker/Product/lib/unixuserinfo&lt;BR /&gt;&lt;BR /&gt;-Arun</description>
    <pubDate>Tue, 08 Nov 2005 03:00:04 GMT</pubDate>
    <dc:creator>Arunvijai_4</dc:creator>
    <dc:date>2005-11-08T03:00:04Z</dc:date>
    <item>
      <title>setuid</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/setuid/m-p/3666441#M242889</link>
      <description>Hi all..&lt;BR /&gt;I am getting following error while i am ruuning one application ...application is price maker..&lt;BR /&gt;where i need to check for this error&lt;BR /&gt;&lt;BR /&gt; UNIX login module failed to authenticate a user: 'wa&lt;BR /&gt; rning: unixuserinfo is not setuid to root'&lt;BR /&gt;</description>
      <pubDate>Tue, 08 Nov 2005 02:17:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/setuid/m-p/3666441#M242889</guid>
      <dc:creator>YOGI_3</dc:creator>
      <dc:date>2005-11-08T02:17:08Z</dc:date>
    </item>
    <item>
      <title>Re: setuid</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/setuid/m-p/3666442#M242890</link>
      <description>Looks like your apps depends upon the setuid script. you will have to set suid on it.&lt;BR /&gt;ll "script"&lt;BR /&gt;chmod 4755 will set setuid on it.</description>
      <pubDate>Tue, 08 Nov 2005 02:23:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/setuid/m-p/3666442#M242890</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2005-11-08T02:23:30Z</dc:date>
    </item>
    <item>
      <title>Re: setuid</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/setuid/m-p/3666443#M242891</link>
      <description>The following command&lt;BR /&gt;&lt;BR /&gt;find / -name "unixuserinfo" -exec chmod u+s '{}' \;&lt;BR /&gt;&lt;BR /&gt;will find all the files named unixuserinfo on the system an make them setuid.&lt;BR /&gt;&lt;BR /&gt;However this is very dangerous because of the obvious security concerns about setuid programs. Only try it if you know what you are doing.&lt;BR /&gt;&lt;BR /&gt;hth</description>
      <pubDate>Tue, 08 Nov 2005 02:25:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/setuid/m-p/3666443#M242891</guid>
      <dc:creator>Orhan Biyiklioglu</dc:creator>
      <dc:date>2005-11-08T02:25:03Z</dc:date>
    </item>
    <item>
      <title>Re: setuid</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/setuid/m-p/3666444#M242892</link>
      <description>try to run this application as root, may be this is the application only run by root user.&lt;BR /&gt;&lt;BR /&gt;Awadhesh</description>
      <pubDate>Tue, 08 Nov 2005 02:26:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/setuid/m-p/3666444#M242892</guid>
      <dc:creator>AwadheshPandey</dc:creator>
      <dc:date>2005-11-08T02:26:10Z</dc:date>
    </item>
    <item>
      <title>Re: setuid</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/setuid/m-p/3666445#M242893</link>
      <description>check the permission of that application as ls -l &lt;APPLICATION&gt;. You have to set set uset ID bit as,&lt;BR /&gt;&lt;BR /&gt; # chmod 4755 &lt;APPLICATION&gt;&lt;BR /&gt;&lt;BR /&gt;so that it will use setuid for specific user.&lt;BR /&gt;&lt;BR /&gt;hth.&lt;/APPLICATION&gt;&lt;/APPLICATION&gt;</description>
      <pubDate>Tue, 08 Nov 2005 02:39:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/setuid/m-p/3666445#M242893</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2005-11-08T02:39:34Z</dc:date>
    </item>
    <item>
      <title>Re: setuid</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/setuid/m-p/3666446#M242894</link>
      <description>hi orhan and RAC, info provide by u is very very useful....&lt;BR /&gt;i find the files names unixuserinfo having the permissions as follows..&lt;BR /&gt;&lt;BR /&gt;# ll /jvpc/ops/PriceMaker/Product/lib/unixuserinfo&lt;BR /&gt;-r-sr-sr-x   1 jvpc       users        28924 Mar  1  2005 /jvpc/ops/PriceMaker/Product/lib/unixuserinfo&lt;BR /&gt;# ll /jvpc/ops/PriceMaker_513/Product/lib/unixuserinfo&lt;BR /&gt;-r-sr-sr-x   1 jvpc       users        69544 Jul 13  2004 /jvpc/ops/PriceMaker_513/Product/lib/unixuserinfo&lt;BR /&gt;# ll /jvpc/ops/PriceMaker.error/Product/lib/unixuserinfo&lt;BR /&gt;-r-sr-sr-x   1 jvpc       users        69544 Jul 23  2004 /jvpc/ops/PriceMaker.error/Product/lib/unixuserinfo&lt;BR /&gt;#&lt;BR /&gt;</description>
      <pubDate>Tue, 08 Nov 2005 02:42:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/setuid/m-p/3666446#M242894</guid>
      <dc:creator>YOGI_3</dc:creator>
      <dc:date>2005-11-08T02:42:47Z</dc:date>
    </item>
    <item>
      <title>Re: setuid</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/setuid/m-p/3666447#M242895</link>
      <description>So the problem was the file ownership than not the permissions.&lt;BR /&gt;&lt;BR /&gt;Use this &lt;BR /&gt;&lt;BR /&gt;find / -name "unixuserinfo" -exec chown root '{}' \;&lt;BR /&gt;&lt;BR /&gt;this will solve the problem.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;PS: please assign points.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;hth</description>
      <pubDate>Tue, 08 Nov 2005 02:49:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/setuid/m-p/3666447#M242895</guid>
      <dc:creator>Orhan Biyiklioglu</dc:creator>
      <dc:date>2005-11-08T02:49:42Z</dc:date>
    </item>
    <item>
      <title>Re: setuid</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/setuid/m-p/3666448#M242896</link>
      <description>Permission of,&lt;BR /&gt;&lt;BR /&gt;-r-sr-sr-x 1 jvpc users&lt;BR /&gt;&lt;BR /&gt;says that,&lt;BR /&gt;&lt;BR /&gt;you have setuid and setgid to jvpc user and users group. It will make problem to root user so that change ownership as like /usr/bin/passwd tool as,&lt;BR /&gt;&lt;BR /&gt;-r-sr-x-r-x (4555) root:bin group.&lt;BR /&gt;&lt;BR /&gt;#chmod 4555 &lt;FILE&gt;&lt;BR /&gt;#chown root:bin &lt;FILE&gt;&lt;BR /&gt;&lt;BR /&gt;Do this. It will work.&lt;BR /&gt;&lt;BR /&gt;hth.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/FILE&gt;&lt;/FILE&gt;</description>
      <pubDate>Tue, 08 Nov 2005 02:54:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/setuid/m-p/3666448#M242896</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2005-11-08T02:54:25Z</dc:date>
    </item>
    <item>
      <title>Re: setuid</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/setuid/m-p/3666449#M242897</link>
      <description>#chmod 4555 /jvpc/ops/PriceMaker/Product/lib/unixuserinfo and other files, also # chown root:bin /jvpc/ops/PriceMaker/Product/lib/unixuserinfo&lt;BR /&gt;&lt;BR /&gt;-Arun</description>
      <pubDate>Tue, 08 Nov 2005 03:00:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/setuid/m-p/3666449#M242897</guid>
      <dc:creator>Arunvijai_4</dc:creator>
      <dc:date>2005-11-08T03:00:04Z</dc:date>
    </item>
  </channel>
</rss>

