@ Josh... I see the monkey! I see the monkey! And that nice 9mm.

Oh, and using my super-dooper Admin powers, I can also see your IP.


I knew you would find him

Thanks for the compliment, I am really enjoying my latest 'toy'.
BTW, you see the IP I use to access the forums but those are for my 'other' servers. I have no reason to post my IP as I have a script that mails it to me once a week:
CODE
#ipmonitor.sh
#!/bin/bash
#
#Get the WAN IP
exip=`lynx -dump http://automation.whatismyip.com/n09230945.asp | head -n 2`
echo $exip - `date` > /home/comhack/.scripts/ipmon/ipmessage.file
#
# Subject
SUBJECT="System IP"
# Email To....
EMAIL="securitybreach@*********.**"
# Message
EMAILMESSAGE="/home/comhack/.scripts/ipmon/ipmessage.file"
# Send email
mail -s "$SUBJECT" "$EMAIL" < $EMAILMESSAGE