home *** CD-ROM | disk | FTP | other *** search
/ chilidog.highland.cc.ks.us / chilidog.highland.cc.ks.us.zip / chilidog.highland.cc.ks.us / backup / bradford.20110502.etc.tar.gz / bradford.20110502.etc.tar / etc / xinetd.d / systat < prev   
Text File  |  2006-04-22  |  536b  |  18 lines

  1. # Finger, systat and netstat give out user information which may be
  2. # valuable to potential "system crackers." Many sites choose to disable
  3. # some or all of these services to improve security.
  4. # Try "telnet localhost systat" and "telnet localhost netstat" to see that
  5. # information yourself!
  6. #
  7. service systat
  8. {
  9.         disable         = yes
  10.         socket_type     = stream
  11.         protocol        = tcp
  12.         wait            = no
  13.         user            = nobody
  14.         server          = /bin/ps
  15.         server_args     = -auwwx
  16. }
  17.  
  18.