One Hat Cyber Team
Your IP :
3.145.25.222
Server IP :
192.145.235.60
Server :
Linux ngx365.inmotionhosting.com 5.14.0-427.33.1.el9_4.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 30 09:45:56 EDT 2024 x86_64
Server Software :
Apache
PHP Version :
8.2.27
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
opt
/
sharedrads
/
View File Name :
check_dcpumon
#!/usr/bin/bash CHECKUSER=$1 SESSIONID=$2 if [ -z $1 ]; then echo echo "Usage: check_dcpumon [username]" echo exit 0 fi #load functions + banners if [ -f /opt/sharedrads/radsfunctions.sh ]; then source /opt/sharedrads/radsfunctions.sh else source /opt/dedrads/radsfunctions.sh fi if [ "$2" == "--plaintext" ]; then RADSCOLORS=off DETAILED=YES fi if [ -z $2 ]; then SESSIONID=`date +%s` DETAILED=YES fi #get the data from dcpumon, save it in a unique tmp session file NODATA=FALSE /usr/local/cpanel/bin/dcpumonview | grep "/$CHECKUSER/" > /tmp/.$SESSIONID || NODATA=TRUE if [ "$NODATA" == "FALSE" ]; then if [ "$RADSCOLORS" == "off" ]; then echo -e "\033[0m Displaying top utilization processes for user as recorded by cPanel and dcpumon \033[0m" else echo -e "\033[40;37;2m Displaying top utilization processes for user as recorded by cPanel and dcpumon \033[0m" fi if [ "$RADSCOLORS" == "off" ]; then echo -en "\033[0m" else echo -en "\033[30;1m" fi #strip html from 'dcpumonview' output cat /tmp/.$SESSIONID | sed 's/<[^>]*>/ /g' #clear colors echo -ne "\033[0m" fi #no session ID was received earlier, we were invoked directly, lets display add'l history: echo if [ "$DETAILED" == "YES" ]; then if [ "$RADSCOLORS" == "off" ]; then echo " Displaying usage history for user as recorded by cPanel and dcpumon " else echo -e "\033[40;37;2m Displaying usage history for user as recorded by cPanel and dcpumon \033[0m" fi if [ "$RADSCOLORS" == "off" ]; then echo -ne "\033[0m" else echo -ne "\033[34;1m" fi grep $CHECKUSER /var/log/dcpumon/$(date +%Y)/$(date +%b)/*|grep -v root | sed 's_/var/log/dcpumon/__'| \ awk -F= '{total=total+$2;printf "%s\t%1.1f\t%f\t%f\t\n",$1,$2,$3,$4}' | \ awk '{gsub(/\//," ",$0);gsub(/:/,": ",$0);print;}' | sort -fMk2 -nk3 #clear colors fi echo -ne "\033[0m" rm -f /tmp/.$SESSIONID