<?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: Forbidden processes found in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/forbidden-processes-found/m-p/4524265#M38692</link>
    <description>Ok, and how can I find the man pages?&lt;BR /&gt;Thank you!</description>
    <pubDate>Mon, 02 Nov 2009 18:09:28 GMT</pubDate>
    <dc:creator>Leonilo</dc:creator>
    <dc:date>2009-11-02T18:09:28Z</dc:date>
    <item>
      <title>Forbidden processes found</title>
      <link>https://community.hpe.com/t5/operating-system-linux/forbidden-processes-found/m-p/4524260#M38687</link>
      <description>A security report shows a bunch of vulnerabilities titled as "forbidden process found". When trying to evaluate the impact of remediating or correcting these vulnerabilites, I need to understand what do these services/commands/processes do. So I need a brief description of them. The processes found by the security report are:&lt;BR /&gt;chargen (Inetd)&lt;BR /&gt;daytime  (Inetd)&lt;BR /&gt;discard  (Inetd)&lt;BR /&gt;dtrc (Process)&lt;BR /&gt;dtspc  (Inetd)&lt;BR /&gt;echo  (Inetd)&lt;BR /&gt;exec (Inetd)&lt;BR /&gt;ident (Inetd)&lt;BR /&gt;instl_boots(Inetd)&lt;BR /&gt;klogin  (Inetd)&lt;BR /&gt;kshell (Inetd)&lt;BR /&gt;ntalk (Inetd)&lt;BR /&gt;printer (Inetd)&lt;BR /&gt;recserv (Inetd)&lt;BR /&gt;rpc.statd (Process)&lt;BR /&gt;tftp (Inetd)&lt;BR /&gt;time (Inetd)&lt;BR /&gt;&lt;BR /&gt;Note that some of them are listed as Inetd and some of them as Process, why is this?&lt;BR /&gt;Thank you.</description>
      <pubDate>Thu, 29 Oct 2009 23:15:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/forbidden-processes-found/m-p/4524260#M38687</guid>
      <dc:creator>Leonilo</dc:creator>
      <dc:date>2009-10-29T23:15:42Z</dc:date>
    </item>
    <item>
      <title>Re: Forbidden processes found</title>
      <link>https://community.hpe.com/t5/operating-system-linux/forbidden-processes-found/m-p/4524261#M38688</link>
      <description>Some of the processes were started from the init scripts - they are listed as a PROCESS.&lt;BR /&gt;The other ones (started from inetd) are marked as inetd.&lt;BR /&gt;&lt;BR /&gt;For every process/service search google,wikipedia ... &lt;BR /&gt;&lt;BR /&gt;Here is example - &lt;A href="http://en.wikipedia.org/wiki/DAYTIME" target="_blank"&gt;http://en.wikipedia.org/wiki/DAYTIME&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;ivan</description>
      <pubDate>Fri, 30 Oct 2009 01:08:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/forbidden-processes-found/m-p/4524261#M38688</guid>
      <dc:creator>Ivan Krastev</dc:creator>
      <dc:date>2009-10-30T01:08:58Z</dc:date>
    </item>
    <item>
      <title>Re: Forbidden processes found</title>
      <link>https://community.hpe.com/t5/operating-system-linux/forbidden-processes-found/m-p/4524262#M38689</link>
      <description>"Forbidden processes found" is a misleading title, as these refer mostly to network services, not necessarily processes.&lt;BR /&gt;&lt;BR /&gt;"(Process)" in the listing means that the respective service is running as an independent daemon process. In HP-UX, this usually means you can stop the service from starting by editing the appropriate file in /etc/rc.config.d/ directory.&lt;BR /&gt;&lt;BR /&gt;Rpc.statd is one of the NFS common services. If your server neither exports nor mounts NFS filesystems, you can set NFS_CLIENT and NFS_SERVER to 0 in /etc/rc.config.d/nfsconf and then rpc.statd won't be started at system boot any more. Note that you must have NFS_CLIENT set to 1 if you wish to make network-based Ignite backups (make_net_recovery).&lt;BR /&gt;&lt;BR /&gt;"(Inetd)" means this is a network service that is started on-demand by inetd. If no-one is using the service, you won't find it in the system's process list. The inetd process handles the actual network connection: the service proces gets the incoming data piped to it from inetd and the outgoing data is handled the same way.&lt;BR /&gt;&lt;BR /&gt;Some of the services marked "(Inetd)" are implemented internally by the inetd process: these are chargen, daytime, discard, echo and time. All of these are very simple services. &lt;BR /&gt;&lt;BR /&gt;Daytime and time just send the current system time back to whoever connects them and then close the connection. Daytime sends the time value in human-readable format; time uses machine-friendly format. These might be used for time synchronization by very simple network devices, but even the simplest modern managed switches have plenty of processing power to use proper time synchronization protocols like SNTP or NTP.&lt;BR /&gt;&lt;BR /&gt;Chargen, discard and echo are designed as aids for network service debugging. &lt;BR /&gt;&lt;BR /&gt;Chargen sends back an endless stream of characters, which may be useful for testing "what happens to a client software if the server goes insane?" &lt;BR /&gt;&lt;BR /&gt;Discard is a network equivalent of /dev/null: it receives everything and sends back nothing.&lt;BR /&gt;&lt;BR /&gt;Echo just sends back anything sent to it. &lt;BR /&gt;&lt;BR /&gt;Some Denial-of-Service attacks have involved tricking a program to connecting to another server's chargen/echo/discard ports, so the current recommendation is to disable these services if you don't need it.&lt;BR /&gt;&lt;BR /&gt;All the rest of processes marked "(Inetd)" can be identified by finding the service name in the left-most column of /etc/inetd.conf file, then looking towards the end of the line to find the name of the executable and reading the man page of the respective executable ("man &lt;NAME-OF-EXECUTABLE&gt;"). &lt;BR /&gt;&lt;BR /&gt;MK&lt;/NAME-OF-EXECUTABLE&gt;</description>
      <pubDate>Fri, 30 Oct 2009 09:18:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/forbidden-processes-found/m-p/4524262#M38689</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2009-10-30T09:18:32Z</dc:date>
    </item>
    <item>
      <title>Re: Forbidden processes found</title>
      <link>https://community.hpe.com/t5/operating-system-linux/forbidden-processes-found/m-p/4524263#M38690</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;Just comment out the services and restart inetd.&lt;BR /&gt;&lt;BR /&gt;tftp is used to start ignite boots, as is instl_boots, they should be kept off except when actually booting an Ignite system.&lt;BR /&gt;&lt;BR /&gt;Just see that none of these servcies are required for production before you shut them down. &lt;BR /&gt;&lt;BR /&gt;The audit is right, they should not be used.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Fri, 30 Oct 2009 14:29:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/forbidden-processes-found/m-p/4524263#M38690</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2009-10-30T14:29:19Z</dc:date>
    </item>
    <item>
      <title>Re: Forbidden processes found</title>
      <link>https://community.hpe.com/t5/operating-system-linux/forbidden-processes-found/m-p/4524264#M38691</link>
      <description>almost all of these will have an extended description in the man pages.&lt;BR /&gt;&lt;BR /&gt;if you want to know exactly what these do, you should read the manpage.&lt;BR /&gt;&lt;BR /&gt;i might be saying rtfm, but there you presented a huge list.&lt;BR /&gt;&lt;BR /&gt;the difference between process and inetd if that inetd processes are started when a network request on a certain port is made. processes are mostly daemons that start at boot and stay running in the background as long as the machine is up.</description>
      <pubDate>Mon, 02 Nov 2009 08:55:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/forbidden-processes-found/m-p/4524264#M38691</guid>
      <dc:creator>dirk dierickx</dc:creator>
      <dc:date>2009-11-02T08:55:01Z</dc:date>
    </item>
    <item>
      <title>Re: Forbidden processes found</title>
      <link>https://community.hpe.com/t5/operating-system-linux/forbidden-processes-found/m-p/4524265#M38692</link>
      <description>Ok, and how can I find the man pages?&lt;BR /&gt;Thank you!</description>
      <pubDate>Mon, 02 Nov 2009 18:09:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/forbidden-processes-found/m-p/4524265#M38692</guid>
      <dc:creator>Leonilo</dc:creator>
      <dc:date>2009-11-02T18:09:28Z</dc:date>
    </item>
    <item>
      <title>Re: Forbidden processes found</title>
      <link>https://community.hpe.com/t5/operating-system-linux/forbidden-processes-found/m-p/4524266#M38693</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;man ident&lt;BR /&gt;&lt;BR /&gt;man inst_boots&lt;BR /&gt;&lt;BR /&gt;etc.&lt;BR /&gt;&lt;BR /&gt;That will get you a few of them.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Mon, 02 Nov 2009 19:32:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/forbidden-processes-found/m-p/4524266#M38693</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2009-11-02T19:32:09Z</dc:date>
    </item>
    <item>
      <title>Re: Forbidden processes found</title>
      <link>https://community.hpe.com/t5/operating-system-linux/forbidden-processes-found/m-p/4524267#M38694</link>
      <description>I've got info for most of the services listed above.&lt;BR /&gt;Can you help me getting a brief description of these 3 remaining ones:&lt;BR /&gt;&lt;BR /&gt;dtrc (Process)&lt;BR /&gt;instl_boots(Inetd)&lt;BR /&gt;printer (Inetd)&lt;BR /&gt;&lt;BR /&gt;Thank you!&lt;BR /&gt;Leonilo</description>
      <pubDate>Wed, 04 Nov 2009 17:59:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/forbidden-processes-found/m-p/4524267#M38694</guid>
      <dc:creator>Leonilo</dc:creator>
      <dc:date>2009-11-04T17:59:05Z</dc:date>
    </item>
    <item>
      <title>Re: Forbidden processes found</title>
      <link>https://community.hpe.com/t5/operating-system-linux/forbidden-processes-found/m-p/4524268#M38695</link>
      <description>dtrc (Process)&lt;BR /&gt;I do not know (ask google&lt;BR /&gt;&lt;BR /&gt;instl_boots(Inetd)&lt;BR /&gt;check:&lt;BR /&gt;&lt;A href="http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1347323" target="_blank"&gt;http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1347323&lt;/A&gt;&lt;BR /&gt;it is used for the lan boot.&lt;BR /&gt;&lt;BR /&gt;printer (Inetd)&lt;BR /&gt;this proces must be enabled if other servers are using this server as remote print server</description>
      <pubDate>Sun, 08 Nov 2009 09:40:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/forbidden-processes-found/m-p/4524268#M38695</guid>
      <dc:creator>F Verschuren</dc:creator>
      <dc:date>2009-11-08T09:40:00Z</dc:date>
    </item>
  </channel>
</rss>

