<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>anti rookit &#8211; lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</title>
	<atom:link href="https://lifelinux.com/tag/anti-rookit/feed/" rel="self" type="application/rss+xml" />
	<link>https://lifelinux.com</link>
	<description>All About Linux !</description>
	<lastBuildDate>Thu, 20 Oct 2011 08:22:17 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.5.3</generator>
	<item>
		<title>How To Install Rootkit Hunter</title>
		<link>https://lifelinux.com/how-to-install-rootkit-hunter/</link>
					<comments>https://lifelinux.com/how-to-install-rootkit-hunter/#comments</comments>
		
		<dc:creator><![CDATA[lifeLinux]]></dc:creator>
		<pubDate>Fri, 03 Dec 2010 06:04:50 +0000</pubDate>
				<category><![CDATA[Anti Virus]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[anti rookit]]></category>
		<category><![CDATA[anti rootkit on linux]]></category>
		<category><![CDATA[install rkhunter]]></category>
		<category><![CDATA[rkhunter]]></category>
		<category><![CDATA[Rootkit Hunter]]></category>
		<category><![CDATA[rootkit on linux]]></category>
		<category><![CDATA[update rkhunter]]></category>
		<category><![CDATA[vi command]]></category>
		<guid isPermaLink="false">http://www.lifelinux.com/?p=253</guid>

					<description><![CDATA[<p>Rootkit Hunter (rkhunter) is a Unix-based tool that scans for rootkits, backdoors and possible local exploits. It does this by comparing SHA-1 hashes of important files with known good ones in online database, searching for default directories (of rootkits), wrong permissions, hidden files, suspicious strings in kernel modules, and special tests for Linux and FreeBSD. [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://lifelinux.com/how-to-install-rootkit-hunter/">How To Install Rootkit Hunter</a> appeared first on <a rel="nofollow" href="https://lifelinux.com">lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p></p><p><strong>Rootkit Hunter</strong> (rkhunter) is a Unix-based tool that scans for rootkits, backdoors and possible local exploits. It does this by comparing SHA-1 hashes of important files with known good ones in online database, searching for default directories (of rootkits), wrong permissions, hidden files, suspicious strings in kernel modules, and special tests for Linux and FreeBSD.<span id="more-253"></span></p>
<p>Installation rkhunter in 5 steps</p>
<h2>Step 1: Download rkhunter</h2>
<p>Login your server as root, and type the following command</p>
<pre>wget http://biznetnetworks.dl.sourceforge.net/project/rkhunter/rkhunter/1.3.8/rkhunter-1.3.8.tar.gz</pre>
<h2>Step 2: Extract rkhunter</h2>
<pre>tar -zxvf rkhunter-1.3.8.tar.gz</pre>
<h2>Step 3: Install rkhunter</h2>
<pre>cd rkhunter-1.3.8
sh installer.sh --install</pre>
<p>The screen as shown:</p>
<pre>Checking system for:
 Rootkit Hunter installer files: found
 A web file download command: wget found
Starting update:
 Checking installation directory "/usr/local": it exists and is writable.
 Checking installation directories:
  Directory /usr/local/share/doc/rkhunter-1.3.8: exists and is writable.
  Directory /usr/local/share/man/man8: exists and is writable.
  Directory /etc: exists and is writable.
  Directory /usr/local/bin: exists and is writable.
  Directory /usr/local/lib: exists and is writable.
  Directory /var/lib: exists and is writable.
  Directory /usr/local/lib/rkhunter/scripts: exists and is writable.
  Directory /var/lib/rkhunter/db: exists and is writable.
  Directory /var/lib/rkhunter/tmp: exists and is writable.
  Directory /var/lib/rkhunter/db/i18n: exists and is writable.
 Installing check_modules.pl: OK
 Installing filehashsha.pl: OK
 Installing stat.pl: OK
 Installing readlink.sh: OK
 Installing backdoorports.dat: OK
 Installing mirrors.dat: OK
 Installing programs_bad.dat: OK
 Installing suspscan.dat: OK
 Installing rkhunter.8: OK
 Installing ACKNOWLEDGMENTS: OK
 Installing CHANGELOG: OK
 Installing FAQ: OK
 Installing LICENSE: OK
 Installing README: OK
 Installing language support files: OK
 Installing rkhunter: OK
 Installing rkhunter.conf in no-clobber mode: OK
 &gt;&gt;&gt;
 &gt;&gt;&gt; PLEASE NOTE: inspect for update changes in "/etc/rkhunter.conf.24761",
 &gt;&gt;&gt; and apply to either "/etc/rkhunter.conf" or your local configuration
 &gt;&gt;&gt; file before running Rootkit Hunter.
 &gt;&gt;&gt;
Update complete
</pre>
<h2>Step 4: Update rkhunter</h2>
<p>At prompt type the following command</p>
<pre>rkhunter --update</pre>
<h2>Step 5:Adding daily cron job</h2>
<p>If you want get a mail daily with a status on your system, you need to do the following in steps:<br />
<strong>Create file rkhunter.sh</strong></p>
<pre>vi /etc/cron.daily/rkhunter.sh</pre>
<p><strong>Add the following code</strong></p>
<pre>#!/bin/sh
(
/usr/local/bin/rkhunter --versioncheck
/usr/local/bin/rkhunter --update
/usr/local/bin/rkhunter --cronjob --report-warnings-only
) | /bin/mail -s 'rkhunter Daily Run' yourname@example.com</pre>
<p>Replace yourname@example.com above with your email.<br />
<strong></strong></p>
<p><strong>Set execute permission for rkhunter.sh</strong></p>
<pre>chmod +x /etc/cron.daily/rkhunter.sh</pre>
<g:plusone href="https://lifelinux.com/how-to-install-rootkit-hunter/" size="standard"  annotation="none"   ></g:plusone><p>The post <a rel="nofollow" href="https://lifelinux.com/how-to-install-rootkit-hunter/">How To Install Rootkit Hunter</a> appeared first on <a rel="nofollow" href="https://lifelinux.com">lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://lifelinux.com/how-to-install-rootkit-hunter/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
	</channel>
</rss>
