/opt/dedrads/extras
NameSizeModeActions
__pycache__/-0555rm
apache-top.py139480555editdlrm
bwshapectl.sh41500555editdlrm
cms_signatures.yaml158370555editdlrm
column-list56640555editdlrm
defacement_fixer31220555editdlrm
defacement_scan68620555editdlrm
killroundcube2680555editdlrm
locatecore6280555editdlrm
makepasswd167040555editdlrm
pingcheck.sh6420555editdlrm
say62790555editdlrm
secureperms.sh22410555editdlrm
seohackscanner65650555editdlrm
seosanitizer.sh80890555editdlrm
set_modsec.sh50190555editdlrm
zsu181710555editdlrm
Edit: /opt/dedrads/extras/killroundcube (268B)
#!/bin/bash # Kills roundcube processes running over 4 minutes # Vanessa V 3/4/11 for ps in $(ps ax -o pid,cputime,cmd | grep "/usr/local/cpanel/3rdparty/etc/roundcube" | grep -v grep | awk -F':' '$2 > 4 {print $1}' | awk '{print $1}') do kill -9 "$ps" done