Skip to content

Instantly share code, notes, and snippets.

View asyndesis's full-sized avatar
Take me out to the ballgame

Trevor Bonomi asyndesis

Take me out to the ballgame
View GitHub Profile
@asyndesis
asyndesis / iw-lve-gid-fix
Created August 13, 2013 20:38
InterWorx LVE GID fix
gid=`id -gr iworx`
if [ -e /proc/sys/fs/proc_super_gid ]; then
/bin/grep -q "fs.proc_super_gid=" /etc/sysctl.conf || echo "fs.proc_super_gid=${gid}" >> /etc/sysctl.conf
sysctl -p || :
fi
@asyndesis
asyndesis / iw-qmail-clear
Created August 13, 2013 20:37
InterWorx Clear qmail queue
cd /var/qmail;service smtp stop;mv queue queue.bad;yum reinstall qmail -y;service smtp start;
@asyndesis
asyndesis / iw-install-maldet
Created August 13, 2013 20:37
InterWorx Maldet Installation
wget http://www.rfxn.com/downloads/maldetect-current.tar.gz;tar -zxvf maldetect-current.tar.gz;rm -rf maldetect-current.tar.gz;
@asyndesis
asyndesis / iw-global-perms-fix
Created August 13, 2013 20:36
InterWorx global var perms fix
~iworx/bin/listaccounts.pex --domain | xargs -n1 ~iworx/bin/varpermsfix.pex --siteworx
@asyndesis
asyndesis / iw-access-iworx-db
Created August 13, 2013 20:36
Quick way to access InterWorx DB
mysql -u iworx -p -S /home/interworx/var/run/mysql.sock -p`grep dsn.orig ~iworx/iworx.ini | cut -d : -f 3 | xargs -d @ | cut -d " " -f 1`
@asyndesis
asyndesis / iw-watch-iworx-log
Created August 13, 2013 20:35
Watch InterWorx log
tail -f ~iworx/var/log/iworx.log