<?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>Darknet - The Darkside &#187; scanner</title>
	<atom:link href="http://www.darknet.org.uk/tag/scanner/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.darknet.org.uk</link>
	<description>Ethical Hacking, Penetration Testing &#38; Computer Security</description>
	<lastBuildDate>Tue, 07 Feb 2012 18:34:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Installing Nessus on Debian-based OSs like Ubuntu</title>
		<link>http://www.darknet.org.uk/2006/11/installing-nessus-on-debian-based-oss-like-ubuntu/</link>
		<comments>http://www.darknet.org.uk/2006/11/installing-nessus-on-debian-based-oss-like-ubuntu/#comments</comments>
		<pubDate>Tue, 14 Nov 2006 13:17:02 +0000</pubDate>
		<dc:creator>Tiago Faria</dc:creator>
				<category><![CDATA[Exploits/Vulnerabilities]]></category>
		<category><![CDATA[Hacking Tools]]></category>
		<category><![CDATA[automatic-scanner]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[nessus]]></category>
		<category><![CDATA[nessusd]]></category>
		<category><![CDATA[scanner]]></category>
		<category><![CDATA[security-scanner]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[unix]]></category>
		<category><![CDATA[vulnerability-assessment]]></category>

		<guid isPermaLink="false">http://www.darknet.org.uk/2006/11/installing-nessus-on-debian-based-oss-like-ubuntu/</guid>
		<description><![CDATA[With this simple tutorial I will explain how to install Nessus client (nessus) and Nessus Daemon (nessusd) and properly register it, so you don&#8217;t end up with the limitations of a non-registered version of the vulnerability scanner. Installing: I personally use apt-, however, you may choose any other package manager. apt-get install nessus nessusd -y [...]]]></description>
			<content:encoded><![CDATA[<p></p>
<p>With this simple tutorial I will explain how to install Nessus client <em>(nessus)</em> and Nessus Daemon <em>(nessusd)</em> and properly register it, so you don&#8217;t end up with the limitations of a non-registered version of the vulnerability scanner.</p>
<p><strong>Installing:</strong></p>
<p>I personally use apt-, however, you may choose any other package manager.</p>
<p><code>apt-get install nessus nessusd -y</code></p>
<p><em>This will install the nessus client and server, and the -y is used to answer YES to the confirmation of apt-get.</em></p>
<p>We have now installed both the client and the server. Let&#8217;s proceed to the addition of a user:</p>
<p><code>nessus-adduser</code></p>
<p><strong>Display:</strong></p>
<p><code>gouki@8104:~$ sudo nessus-adduser<br />
Using /var/tmp as a temporary file holder</code></p>
<p><code>Add a new nessusd user<br />
----------------------</p>
<p><code>Login : darknet<br />
Authentication (pass/cert) [pass] :<br />
Login password :<br />
Login password (again) :</code></p>
<p><code>User rules<br />
----------<br />
nessusd has a rules system which allows you to restrict the hosts<br />
that darknet has the right to test. For instance, you may want<br />
him to be able to scan his own host only.</code></p>
<p><code>Please see the nessus-adduser(8) man page for the rules syntax</code></p>
<p><code>Enter the rules for this user, and hit ctrl-D once you are done :<br />
(the user can have an empty rules set)</code></p>
<p><code>Login             : darknet<br />
Password          : ***********<br />
DN                :<br />
Rules             :</code></p>
<p><code>Is that ok ? (y/n) [y] y<br />
user added.</code></p>
<p><strong>About this display:</strong></p>
<p>When asked about <em>Authentication (pass/cert) [pass] :</em> just press enter, as we will not use any.<br />
When asked about <em>rules for the specific user</em>, press CTRL+D, as we will not enter any rules for the user.</p>
<p><strong>Starting the Daemon:</strong></p>
<p>By default, nessusd has not started. To manully force him to, you will need to do the following:</p>
<p><code>sudo /etc/init.d/nessusd start</code></p>
<p><strong>Registering Nessus:</strong></p>
<p>Nessus will work without being registered, however, it will have limitations. Unnecessary limitations, since it is easily registered.</p>
<p><a href="http://www.nessus.org/plugins/index.php?view=register">Nessus Registration page</a> - Go here and start the proccess.</p>
<p>After you have entered your e-mail address, the instructions on how to register will not work on Debian-based OSs.</p>
<p>On the eMail from the Nessus team, you will be instructed to this path: <code>/opt/nessus/bin/nessus-fetch</code>, however, the path should be replaced by <code>/usr/bin</code>, making the complete registration command: <code>sudo /usr/bin/nessus-fetch --register XXXX-XXXX-XXXX-XXXX-XXXX</code></p>
<p>You should now have a complete and working installation of Nessus. Enjoy and remember, automatic scanners are not 1337! =)</p>
<p><strong>TIP:</strong> Before starting to use Nessus, update the plugins by doing the following:</p>
<p></p>
<p><code>sudo nessus-update-plugins</code></p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Installing+Nessus+on+Debian-based+OSs+like+Ubuntu+http%3A%2F%2Fdarknet.org.uk%2F%3Fp%3D389+from+%40THEdarknet" title="Post to Twitter"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://www.darknet.org.uk/2006/11/installing-nessus-on-debian-based-oss-like-ubuntu/&amp;t=Installing+Nessus+on+Debian-based+OSs+like+Ubuntu" title="Post to Facebook"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook-micro3.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.google.com/buzz/post?url=http://www.darknet.org.uk/2006/11/installing-nessus-on-debian-based-oss-like-ubuntu/&amp;imageurl=" title="Post to Google Buzz"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/gbuzz/tt-gbuzz-micro3.png" alt="Post to Google Buzz" /></a> <a class="tt" href="http://delicious.com/post?url=http://www.darknet.org.uk/2006/11/installing-nessus-on-debian-based-oss-like-ubuntu/&amp;title=Installing+Nessus+on+Debian-based+OSs+like+Ubuntu" title="Post to Delicious"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious-micro3.png" alt="Post to Delicious" /></a> <a class="tt" href="http://digg.com/submit?url=http://www.darknet.org.uk/2006/11/installing-nessus-on-debian-based-oss-like-ubuntu/&amp;title=Installing+Nessus+on+Debian-based+OSs+like+Ubuntu" title="Post to Digg"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/digg/tt-digg-micro3.png" alt="Post to Digg" /></a> <a class="tt" href="http://reddit.com/submit?url=http://www.darknet.org.uk/2006/11/installing-nessus-on-debian-based-oss-like-ubuntu/&amp;title=Installing+Nessus+on+Debian-based+OSs+like+Ubuntu" title="Post to Reddit"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit-micro3.png" alt="Post to Reddit" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://www.darknet.org.uk/2006/11/installing-nessus-on-debian-based-oss-like-ubuntu/&amp;title=Installing+Nessus+on+Debian-based+OSs+like+Ubuntu" title="Post to StumbleUpon"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/su/tt-su-micro3.png" alt="Post to StumbleUpon" /></a></p></div><div class="AWD_like_button "><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.darknet.org.uk%2F2006%2F11%2Finstalling-nessus-on-debian-based-oss-like-ubuntu%2F&amp;send=false&amp;layout=standard&amp;width=&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font=arial&amp;height=40" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:px; height:40px;" allowTransparency="true"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://www.darknet.org.uk/2006/11/installing-nessus-on-debian-based-oss-like-ubuntu/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

