Here goes, I assume you're looking for this, lines 70 through 96:

Code:
#cPanel Added Limit Protections -- BEGIN

#unlimit so we can run the whoami
ulimit -n 4096 -u 14335 -m unlimited -d unlimited -s 8192 -c 1000000 -v unlimited 2>/dev/null

LIMITUSER=$USER
if [ -e "/usr/bin/whoami" ]; then
        LIMITUSER=`/usr/bin/whoami`
fi
if [ "$LIMITUSER" != "root" ]; then
        ulimit -n 100 -u 20 -m 200000 -d 200000 -s 8192 -c 200000 -v 200000 2>/dev/null
else
        ulimit -n 4096 -u 14335 -m unlimited -d unlimited -s 8192 -c 1000000 -v unlimited 2>/dev/null
fi
#cPanel Added Limit Protections -- END

### GlowHost ###
alias dlog='cd /usr/local/apache/domlogs'
alias conf='cd /usr/local/apache/conf/'
alias myhistory='less /root/.bash_history'
alias last='last -a'

echo "$(who -m) logged IN" >> /root/.bash_history
HISTSIZE=5000
HISTTIMEFORMAT="%h/%m - %H:%M:%S "

# End GlowHost