? GR0V Shell

GR0V shell

Linux server122.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64

Path : /lib64/nagios/plugins/nccustom/
File Upload :
Current File : //lib64/nagios/plugins/nccustom/check_cpshell

#!/bin/sh
#writed by ED
#29/11/2012

exludeusers="^nctest:|^wh:|^mailman:"
if [ -f /usr/sbin/cagefsctl ]
 then
   if [ -n "`cagefsctl --display-user-mode | grep Enable`" ]
    then
      for i in `grep "jailshell$" /etc/passwd | grep -v -E "$exludeusers"`
      do
	if [ `echo $i|awk -F':' {' print $3 '}` -gt 500 ]
	then
	badshellusers=$badshellusers`echo $i|awk -F":" {' print $1 '}`", "
	fi
      done
	if [ -n "$badshellusers" ]
	  then
	 echo "Warning! Jail shell was enabled for the following user(s): "$badshellusers
	 exit 1
	  else
	 echo "Ok."
	fi
  fi
 else
	for i in `grep "/bin/bash$" /etc/passwd | grep -v -E "$exludeusers"`
	 do
	if [ "`echo $i|awk -F':' {' print $3 '}`" -gt 500 ]
	  then
	badshellusers=$badshellusers`echo $i|awk -F":" {' print $1 '}`", "
	fi
	 done
   if [ -n "$badshellusers" ]
    then
   echo "Warning! Bash shell was enabled for the following user(s): "$badshellusers
   exit 1
    else
   echo "Ok."
   fi
fi

T1KUS90T
  root-grov@198.54.114.191:~$