<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.1.3" -->
<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/"
	>

<channel>
	<title>J_K9 @ Linux</title>
	<link>http://wolphination.com/linux</link>
	<description>J_K9</description>
	<pubDate>Sun, 18 Nov 2007 01:25:12 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1.3</generator>
	<language>en</language>
			<item>
		<title>Silica - CANVAS On Debian On The Nokia 770 Internet&#160;Tablet</title>
		<link>http://wolphination.com/linux/2007/02/10/silica-canvas-on-debian-on-the-nokia-770-internet-tablet/</link>
		<comments>http://wolphination.com/linux/2007/02/10/silica-canvas-on-debian-on-the-nokia-770-internet-tablet/#comments</comments>
		<pubDate>Sat, 10 Feb 2007 15:46:16 +0000</pubDate>
		<dc:creator>J_K9</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://wolphination.com/linux/2007/02/10/silica-canvas-on-debian-on-the-nokia-770-internet-tablet/</guid>
		<description><![CDATA[IMMUNITY Silica is a stunning new product whose tagline is &#8220;Redefining Penetration Testing.&#8221; Sporting an easy-to-use interface (as shown on its product page), this device allows you to scan wireless networks, perform vulnerability scans of computers on those networks, exploit some of those vulnerabilities at the touch of a button, find and store &#8220;interesting&#8221; and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.immunitysec.com/products-silica.shtml">IMMUNITY Silica</a> is a stunning new product whose tagline is &#8220;Redefining Penetration Testing.&#8221; Sporting an easy-to-use interface (as shown on its <a href="http://www.immunitysec.com/products-silica.shtml">product page</a>), this device allows you to scan wireless networks, perform vulnerability scans of computers on those networks, exploit some of those vulnerabilities at the touch of a button, find and store &#8220;interesting&#8221; and possibly confidential files, and much, much more, using a simplified and smaller version of IMMUNITY Inc.&#8217;s <a href="http://www.immunitysec.com/products-canvas.shtml">CANVAS</a> product.</p>
<p>Silica was first shown running on Debian Linux on the Nokia 770 Internet Tablet, which is <a href="http://www.immunitysec.com/silica-dev-mouse.jpg">just larger than a mouse</a> (and can do far more than it ;)).</p>
<p>While this device may be purchased by nefarious users to carry out illegal activities, IMMUNITY Inc. is doing its best to sell Silica to penetration testers and security professionals who will use this device responsibly.</p>
<p>Handheld 802.11 penetration testing by hitting a few buttons and letting the device perform an automated process while resting inside your pocket? It sounds very cool indeed. Ryan Naraine has published a more <a href="http://blogs.zdnet.com/security/?p=19">in-depth review</a> of it on his ZDNet blog.</p>
]]></content:encoded>
			<wfw:commentRss>http://wolphination.com/linux/2007/02/10/silica-canvas-on-debian-on-the-nokia-770-internet-tablet/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Problem With PHP Application&#160;Security</title>
		<link>http://wolphination.com/linux/2007/01/13/the-problem-with-php-application-security/</link>
		<comments>http://wolphination.com/linux/2007/01/13/the-problem-with-php-application-security/#comments</comments>
		<pubDate>Sat, 13 Jan 2007 20:40:06 +0000</pubDate>
		<dc:creator>J_K9</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://wolphination.com/linux/2007/01/13/the-problem-with-php-application-security/</guid>
		<description><![CDATA[PHP application security and the vulnerabilities which are often found in PHP apps have already been discussed at length. PHP is a great language, but it suffers in that it provides no simple method of escaping special characters when handling input and thus leaves many budding programmers&#8217; web applications vulnerable to remote file inclusion (RFI) [...]]]></description>
			<content:encoded><![CDATA[<p>PHP application security and the vulnerabilities which are often found in PHP apps have already been <a href="http://www.securityfocus.com/columnists/427">discussed at length</a>. PHP is a great language, but it suffers in that it provides no simple method of escaping special characters when handling input and thus leaves many budding programmers&#8217; web applications vulnerable to <a href="http://lwn.net/Articles/203904/">remote file inclusion</a> (RFI) exploits, <a href="http://en.wikipedia.org/wiki/XSS">Cross Site Scripting</a> (XSS), <a href="http://en.wikipedia.org/wiki/SQL_Injection">SQL injection</a> and a host of other remote exploitation techniques which may allow the attacker to steal confidential data (such as clients&#8217; credit card details), disrupt services and cause many other problems. These techniques allow the attackers to use the web application to do things it was not originally designed for.</p>
<p>The programmer in question can be blamed to a certain extent for not reading up on how to secure their web application, but the problem is that many new programmers are not aware of the fact that they need to escape and clean the data they receive from the application&#8217;s inputs in order to stop it from doing what it was not designed to do. They are probably unaware that such types of attacks exist anyway. However, PHP provides limited, complex and slightly obscure functions to secure input handling which are usually insufficient and lack the functionality required to prevent certain attacks. Worse still, many books and tutorials written to teach people with no previous experience how to code in PHP usually omit secure data handling techniques or tips, and provide examples thoughout the book/tutorial which are vulnerable to the attacks mentioned above! This is irresponsible on the authors&#8217; behalf: it&#8217;s no wonder that PHP application vulnerabilities accounted for <a href="http://www.securityfocus.com/news/11430">43% of the security issues found in 2006</a>.</p>
<p>However, all hope is not lost. The <a href="http://www.owasp.org/index.php/Main_Page">Open Web Application Security Project</a> (OWASP) have produced a set of <a href="http://www.owasp.org/index.php/OWASP_PHP_Filters">PHP filters</a> which allow the newest of PHP programmers to secure their input data handling methods. Doing so is a simple as <a href="http://sourceforge.net/project/showfiles.php?group_id=64424&#038;package_id=106757">downloading the filters</a>, including them in the web app (with a command such as <em>require_once(&#8217;sanitize.inc.php&#8217;)</em>), storing the input into a variable and then sanitizing the data as shown on the <a href="http://www.owasp.org/index.php/OWASP_PHP_Filters">project&#8217;s homepage</a>.</p>
<p>It would be better if the PHP developers added functions such as OWASP&#8217;s PHP filters into the PHP code itself and if the authors of PHP instruction material added sections on securing input handling, but these filters are far better than nothing <img src='http://wolphination.com/linux/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://wolphination.com/linux/2007/01/13/the-problem-with-php-application-security/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SnortVM</title>
		<link>http://wolphination.com/linux/2006/09/18/snortvm/</link>
		<comments>http://wolphination.com/linux/2006/09/18/snortvm/#comments</comments>
		<pubDate>Mon, 18 Sep 2006 06:56:02 +0000</pubDate>
		<dc:creator>J_K9</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Security]]></category>

		<category><![CDATA[Server]]></category>

		<guid isPermaLink="false">http://wolphination.com/linux/2006/09/18/snortvm/</guid>
		<description><![CDATA[As I&#8217;ve been inundated with work, I haven&#8217;t had much time to post anything. So, here&#8217;s a little something, to show you that I am, contrary to popular belief, still alive  
CentOS is one of the most popular Linux server distributions, Snort the most popular Open Source IDS (Intrusion Detection System), and VMware Server [...]]]></description>
			<content:encoded><![CDATA[<p>As I&#8217;ve been inundated with work, I haven&#8217;t had much time to post anything. So, here&#8217;s a little something, to show you that I am, contrary to popular belief, still alive <img src='http://wolphination.com/linux/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p><a href="http://centos.org">CentOS</a> is one of the most popular Linux server distributions, <a href="http://snort.org">Snort</a> the most popular Open Source IDS (Intrusion Detection System), and <a href="http://vmware.com">VMware Server</a> quite possibly the most popular free (as in beer) virtualisation app. Now, what could you do to tie these together to make an amazing, free product? Install Snort on CentOS in a VM, and release it for public download, of course!</p>
<p>So, fresh from the, er, streets: <a href="http://snort.org/dl/contrib/">SnortVM</a>. Deploy it wherever you want, and discover things you didn&#8217;t know before. Why not bridge it with your main connection to your router on your home PC? That way, you can find out if anything nasty is getting past your router. Or even put it in the DMZ, for a bit of fun?</p>
<p>I quote:</p>
<blockquote><p>This VMWare is a basic build of Snort using BASE and MySQL on CentOS 4.3. It was contributed by Patrick Harper and is based on his popular Snort Installation Guide. Patrick tested the image in VMware player, ESX 3, and Workstation 5.X. It’s backward compatible so those running older versions of Workstation will be able to use it too. The download is 427 MB</p></blockquote>
<p>This is the most interesting VM I have seen in quite a while&#8230; So, run along and <a href="http://snort.org/dl/contrib/">download it</a>! <img src='http://wolphination.com/linux/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>(You will need an app like <a href="http://www.vmware.com/products/player/">VMware Player</a> or <a href="http://www.vmware.com/products/server/">VMware Server</a> (both free) to run it)</p>
]]></content:encoded>
			<wfw:commentRss>http://wolphination.com/linux/2006/09/18/snortvm/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SpamMailBag.com</title>
		<link>http://wolphination.com/linux/2006/08/26/spammailbagcom/</link>
		<comments>http://wolphination.com/linux/2006/08/26/spammailbagcom/#comments</comments>
		<pubDate>Sat, 26 Aug 2006 01:09:30 +0000</pubDate>
		<dc:creator>J_K9</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://wolphination.com/linux/2006/08/26/spammailbagcom/</guid>
		<description><![CDATA[I&#8217;m participating in a project started by HTRegz, a friend of mine. It is called SpamMailBag. What is its purpose? Well, I think HT explains it far better than I could:

I’d like to introduce my latest project… SpamMailBag.com. Here’s the plan:
Using domain/task specific email addresses, I will be signing up for various services, websites and [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m participating in a project started by <a href="http://www.computerdefense.org">HTRegz</a>, a friend of mine. It is called <a href="http://www.spammailbag.com">SpamMailBag</a>. What is its purpose? Well, I think HT explains it far better than I could:</p>
<blockquote>
<p>I’d like to introduce my latest project… SpamMailBag.com. Here’s the plan:</p>
<p>Using domain/task specific email addresses, I will be signing up for various services, websites and posting on various forums. I’m also hoping to pull some favours and have some fellow bloggers do blog specific ones…. For example I will be setting up computerdefense.org@spammailbag.com. I would give other examples but that would negate the effort. All emails will automatically be posted to SpamMailBag.com.</p>
<p>What is the goal? Well, for me it’s simply a social project. I’m curious to see which services and websites requiring sign-ups sell your information and who they sell it to. I’m curious to see which blogs are harvested and which aren’t, I’m curious to see which forums are harvested. I may even ask users to create contacts for certain addresses in outlook and outlook express or maybe gmail or hotmail to see if those addresses end up elsewhere.</p>
<p>Full post: <a>http://www.computerdefense.org/?p=72</a></p>
</blockquote>
<p>HT has already set up my email account, so here goes: <a href="mailto:j_k9@spammailbag.com">j_k9@spammailbag.com</a></p>
<p>Come on, dear bots - you know you want to pick it up and spam it! <img src='http://wolphination.com/linux/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>If you want to take part in the project, simple pop over to <a href="http://www.computerdefense.org">his site</a>, register an account, and post a comment! I&#8217;m sure he&#8217;ll be more than glad to set an account up for you <img src='http://wolphination.com/linux/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://wolphination.com/linux/2006/08/26/spammailbagcom/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Reveal The Holes In Your Webserver With&#160;Nikto</title>
		<link>http://wolphination.com/linux/2006/08/22/reveal-the-holes-in-your-webserver-with-nikto/</link>
		<comments>http://wolphination.com/linux/2006/08/22/reveal-the-holes-in-your-webserver-with-nikto/#comments</comments>
		<pubDate>Tue, 22 Aug 2006 11:15:14 +0000</pubDate>
		<dc:creator>J_K9</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://wolphination.com/linux/2006/08/22/reveal-the-holes-in-your-webserver-with-nikto/</guid>
		<description><![CDATA[Having seen the (poor) quality of the HowTo Forge tutorial on Nikto, I decided to write my own. I wanted to explain every parameter in detail, rather than just pass over them as if they were not useful.
Well, after God knows how many hours of work (I hadn&#8217;t anticipated that it would take so long!), [...]]]></description>
			<content:encoded><![CDATA[<p>Having seen the (poor) quality of the <a href="http://www.howtoforge.com/apache_security_testing_with_nikto">HowTo Forge tutorial on Nikto</a>, I decided to write my own. I wanted to explain every parameter in detail, rather than just pass over them as if they were not useful.</p>
<p>Well, after God knows how many hours of work (I hadn&#8217;t anticipated that it would take so long!), it&#8217;s up! I posted it on <a href="http://tazforum.thetazzone.com/">TAZForum</a>, and you can find it <a href="http://tazforum.thetazzone.com/viewtopic.php?t=3124">here</a>. I hope you like it <img src='http://wolphination.com/linux/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>However, there&#8217;s something that&#8217;s annoying me.</p>
<p> <a href="http://wolphination.com/linux/2006/08/22/reveal-the-holes-in-your-webserver-with-nikto/#more-99" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wolphination.com/linux/2006/08/22/reveal-the-holes-in-your-webserver-with-nikto/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Linux And&#160;Security</title>
		<link>http://wolphination.com/linux/2006/04/24/linux-and-security/</link>
		<comments>http://wolphination.com/linux/2006/04/24/linux-and-security/#comments</comments>
		<pubDate>Mon, 24 Apr 2006 20:12:21 +0000</pubDate>
		<dc:creator>J_K9</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://wolphination.com/linux/2006/04/24/linux-and-security/</guid>
		<description><![CDATA[I&#8217;m sorry about my absence, but I have been extremely busy the past few days. Revising for exams, building a computer from scratch, reading quite a few documents, finding out more about a degree in Computer Science, and returning to school after a brilliant Easter. So what is this post about? Linux, and security. I [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m sorry about my absence, but I have been extremely busy the past few days. Revising for exams, building a computer from scratch, reading quite a few documents, finding out more about a degree in Computer Science, and returning to school after a brilliant Easter. So what is this post about? Linux, and security. I have been talking to a security professional about my first article, <a href="http://wolphination.com/linux/2005/11/05/article-proposing-a-compelling-linux-business-case/">Proposing a Compelling Linux Business Case</a>. First of all, my article was aimed at the public sector, and so certain parts of it may seem irrational and outright wrong to a security professional. I&#8217;m hoping that one of my readers knows enough about Linux to be able to respond to him with a valuable argument, because this has reached a stage which is too complex for me to handle. Maybe you could give it a shot! Contact me via the contact form if you&#8217;re interested <img src='http://wolphination.com/linux/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p> <a href="http://wolphination.com/linux/2006/04/24/linux-and-security/#more-86" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wolphination.com/linux/2006/04/24/linux-and-security/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SELinux&#160;Webcast</title>
		<link>http://wolphination.com/linux/2006/04/04/selinux-webcast/</link>
		<comments>http://wolphination.com/linux/2006/04/04/selinux-webcast/#comments</comments>
		<pubDate>Tue, 04 Apr 2006 17:16:14 +0000</pubDate>
		<dc:creator>J_K9</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://wolphination.com/linux/2006/04/04/selinux-webcast/</guid>
		<description><![CDATA[
This Webcast by Red Hat is an excellent introduction to SELinux - it is easy to understand, but still manages to cover the topic in a large amount of detail. It is slightly old (it talks of Fedora core 5 as being unreleased as of yet), but it is still very informative. I highly recommend [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.redhat.com/v/swf/SELinux/" title="SELinux Webcast"><img src="http://www.wolphination.com/linux/data/060404-selinux.JPG" style="padding-top: 7px; padding-bottom: 7px; padding-left: 96px; padding-right: 97px;" border="0" /></a><br />
This Webcast by Red Hat is an excellent introduction to SELinux - it is easy to understand, but still manages to cover the topic in a large amount of detail. It is slightly old (it talks of Fedora core 5 as being unreleased as of yet), but it is still very informative. I highly recommend you take a look at it if you are new to SELinux, because I think every Linux user should be aware of its power. Watch it <a href="http://www.redhat.com/v/swf/SELinux/">here</a>.</p>
<p>Peace.</p>
]]></content:encoded>
			<wfw:commentRss>http://wolphination.com/linux/2006/04/04/selinux-webcast/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Why Windows&#160;Sucks</title>
		<link>http://wolphination.com/linux/2006/02/22/why-windows-sucks/</link>
		<comments>http://wolphination.com/linux/2006/02/22/why-windows-sucks/#comments</comments>
		<pubDate>Wed, 22 Feb 2006 21:36:51 +0000</pubDate>
		<dc:creator>J_K9</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://wolphination.com/linux/2006/02/22/why-windows-sucks/</guid>
		<description><![CDATA[
Forgive me if I&#8217;m wrong, but since when does Microsoft contract sponsors to host its updates, or write them for that matter? Even if the sponsors had access to the source code (which we all know would never happen), Microsoft would never distribute a third-party patch (as everyone vulnerable to and aware of the recent [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://linux.wolphination.com/data/060222-spam.jpg"><img src="http://linux.wolphination.com/data/060222-spamthumb.jpg" alt="Windows Scam Email - Click&#038;Die" align="center" style="padding-top: 7px; padding-bottom: 7px;" /></a><br />
Forgive me if I&#8217;m wrong, but since when does Microsoft contract <em>sponsors</em> to host its updates, or write them for that matter? Even if the sponsors had access to the source code (which we all know would never happen), Microsoft would never distribute a third-party patch (as everyone vulnerable to and aware of the recent WMF exploit might have discovered).</p>
<p>Ok, to be fair, I could talk for hours about the topic proposed by the post&#8217;s title. So, I&#8217;ll say this is just one reason why Windows sucks&#8230; you can probably work the rest out for yourself anyway. <img src='http://wolphination.com/linux/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://wolphination.com/linux/2006/02/22/why-windows-sucks/feed/</wfw:commentRss>
		</item>
		<item>
		<title>AntiOnline&#160;Tutorials</title>
		<link>http://wolphination.com/linux/2006/02/19/antionline-tutorials/</link>
		<comments>http://wolphination.com/linux/2006/02/19/antionline-tutorials/#comments</comments>
		<pubDate>Sun, 19 Feb 2006 17:32:10 +0000</pubDate>
		<dc:creator>J_K9</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://wolphination.com/linux/2006/02/19/antionline-tutorials/</guid>
		<description><![CDATA[I have been a member of the AntiOnline forums for over a year and a half now, and over this time I have learnt a lot about security - from the threads, tutorials, and other members. So, I thought I would share the wonderful world of AO with you! I have chosen the general security [...]]]></description>
			<content:encoded><![CDATA[<p>I have been a member of the <a href="http://antionline.com">AntiOnline</a> forums for over a year and a half now, and over this time I have learnt a lot about security - from the threads, tutorials, and other members. So, I thought I would share the wonderful world of AO with you! I have chosen the general security tutorials, and also the Linux-related ones.</p>
<p>First of all, there are the undeniably amazing video tutorials by <a href="http://www.antionline.com/member.php?s=&#038;action=getinfo&#038;userid=185215">Irongeek</a>. You can find them all on <a href="http://www.irongeek.com/">his website</a> - they range from a simple penetration test on a web server to using <a href="http://insecure.org">nmap</a>.</p>
<p>Then there are the in-depth tutorials by <a href="http://www.antionline.com/member.php?s=&#038;action=getinfo&#038;userid=127654">thehorse13</a>. You can find them all <a href="http://www.antionline.com/search.php?s=&#038;action=showresults&#038;getnew=true&#038;searchid=280872">here</a>. I highly recommend his nmap and hping tutorials, but they are all very informative and good reads.</p>
<p><a href="http://www.antionline.com/member.php?s=&#038;action=getinfo&#038;userid=104916">Tony Bradley</a> - editor of the <a href="http://netsecurity.about.com/">Internet/Network Security</a> section on About.com - also has a good set of introductions to the background info on vulnerability scanning, firewalls, Intrusion Detection Systems, sniffers and the like. The rest of his tutorials are aimed at Windows XP users, but the mentioned ones are universal. <a href="http://www.antionline.com/search.php?s=&#038;action=showresults&#038;getnew=true&#038;searchid=280874">Click here</a> to see them.</p>
<p>Finally, the King of Operating Systems, <a href="http://www.antionline.com/member.php?s=&#038;action=getinfo&#038;userid=114435">gore</a> himself. You&#8217;ll find <a href="http://www.antionline.com/search.php?s=&#038;action=showresults&#038;getnew=true&#038;searchid=280381">tons of tutorials</a> on installing different flavours of Linux, and also some <a href="http://www.antionline.com/search.php?s=&#038;action=showresults&#038;getnew=true&#038;searchid=280446">security tutorials</a> for SUSE. If you are ever having trouble, you might want to check out his tutorial list - chances are that the solution is in one of them.</p>
<p>There is a plethora of other great information in the Security Tutorials and Other Tutorials forums, and I cannot name all the members, but some more are: <a href="http://www.antionline.com/search.php?s=&#038;action=showresults&#038;getnew=true&#038;searchid=280367">Tiger Shark</a>, <a href="http://www.antionline.com/search.php?s=&#038;action=showresults&#038;getnew=true&#038;searchid=280875">Ennis</a>, <a href="http://www.antionline.com/search.php?s=&#038;action=showresults&#038;getnew=true&#038;searchid=280880">catch</a>, and <a href="http://www.antionline.com/search.php?s=&#038;action=showresults&#038;getnew=true&#038;searchid=280876">Soda Popinsky</a>. Why not become a member yourself to learn more?</p>
]]></content:encoded>
			<wfw:commentRss>http://wolphination.com/linux/2006/02/19/antionline-tutorials/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Nmap 4.00&#160;Released</title>
		<link>http://wolphination.com/linux/2006/02/05/nmap-400-released/</link>
		<comments>http://wolphination.com/linux/2006/02/05/nmap-400-released/#comments</comments>
		<pubDate>Sun, 05 Feb 2006 17:16:26 +0000</pubDate>
		<dc:creator>J_K9</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://wolphination.com/linux/2006/02/05/nmap-400-released/</guid>
		<description><![CDATA[I am finally able to post here! Anyway, it is with great pleasure that I (re-)announce the release of nmap 4.00! I have tested it and it is not only faster than its predecessor, but also has more accurate OS detection. Here is part of Fyodor&#8217;s interview on this new release:

You just released Nmap 4.00 [...]]]></description>
			<content:encoded><![CDATA[<p>I am finally able to post here! Anyway, it is with great pleasure that I (re-)announce the release of nmap 4.00! I have tested it and it is not only faster than its predecessor, but also has more accurate OS detection. Here is part of Fyodor&#8217;s interview on this new release:</p>
<blockquote>
<p><strong>You just released Nmap 4.00 after two years of work since 3.50. What are the most exciting changes?</strong></p>
<p><em>Fyodor:</em> Well, the Changelog shows more than 230 improvements since that release, so it is hard to choose just a few favorites. But some really do stand out. The port scanning engine has been rewritten to be much faster and (after the &#8220;diet Nmap&#8221; project) more memory efficient. The low-level packet sending subsystem has changed dramatically as well. Nmap can now send and route raw Ethernet frames rather than rely on the host&#8217;s raw sockets implementation. This is critical for Windows, since Microsoft disabled raw sockets as of Windows XP SP2. And all platforms benefit from the new ARP scanning and MAC address spoofing functionality that this change allows.</p>
<p>Nmap 4.0 has new, better organized and more comprehensive documentation, including a rewritten man page available in seven languages. Huge improvements have also been made in version detection, which offers many new features and saw its signature database triple in size.</p>
<p>Many Nmap users pick runtime interaction as their favorite new feature. If you find yourself staring at the screen wondering when Nmap will finish, just press [enter] for an estimate. If you forgot to enable verbose mode, press &#8216;v&#8217; to enable it. Or press &#8216;V&#8217; to turn it off. Packet tracing and debugging can be enabled or disabled on a whim as well. </p>
</blockquote>
<p><a href="http://www.securityfocus.com/columnists/384">Read more at SecurityFocus</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wolphination.com/linux/2006/02/05/nmap-400-released/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
