<?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>SecureSlash.com &#187; System Security</title>
	<atom:link href="http://secureslash.com/category/system-security/feed/" rel="self" type="application/rss+xml" />
	<link>http://secureslash.com</link>
	<description>Because security matters</description>
	<lastBuildDate>Fri, 20 Jan 2012 10:58:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Simple Linux Server Security Tips</title>
		<link>http://secureslash.com/system-security/simple-linux-server-security-tips/</link>
		<comments>http://secureslash.com/system-security/simple-linux-server-security-tips/#comments</comments>
		<pubDate>Thu, 18 Aug 2011 15:31:10 +0000</pubDate>
		<dc:creator>KarthiKeyan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking & Security]]></category>
		<category><![CDATA[Server Administration]]></category>
		<category><![CDATA[System Security]]></category>
		<category><![CDATA[Web Administration]]></category>
		<category><![CDATA[basic level server security]]></category>
		<category><![CDATA[basic linux server security]]></category>
		<category><![CDATA[linux server security tips]]></category>

		<guid isPermaLink="false">http://secureslash.com/?p=185</guid>
		<description><![CDATA[Tweet Linux is one of the secured operating system. However, With the world of crackers (Evil minded Geeks &#38; Hackers) Linux is also not so secure as we think. Step 1: How to secure SSH port in Linux server? Gaining SSH root access is the primary goal of every crackers around. Once they could get [...]]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fsecureslash.com%2Fsystem-security%2Fsimple-linux-server-security-tips%2F&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://secureslash.com/system-security/simple-linux-server-security-tips/"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://secureslash.com/system-security/simple-linux-server-security-tips/"  data-text="Simple Linux Server Security Tips" data-count="horizontal">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://secureslash.com/system-security/simple-linux-server-security-tips/" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://secureslash.com/system-security/simple-linux-server-security-tips/"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p>Linux is one of the secured operating system. However, With the world of crackers (Evil minded Geeks &amp; Hackers) Linux is also not so secure as we think.</p>
<p><span style="text-decoration: underline;"><strong>Step 1: How to secure SSH port in Linux server?</strong></span></p>
<p>Gaining SSH root access is the primary goal of every crackers around. Once they could get root access., They will install rookkits, keyloggers, mail bombs and etc. So, They usually try to gain access to your server using some formal password combinations.  They attempt to login to your server using bruteforce method.</p>
<p>SSH always runs on port number 22</p>
<p>You have to change it to some non-default number like., 2323 or 3009  some number that is hard to guess.</p>
<blockquote><p><tt>/etc/ssh/sshd_config</tt></p></blockquote>
<p>above file is the default ssh configuration file. You can change its &#8220;Port&#8221; value by opening it using Vi or Nano.  <a href="http://wiki.centos.org/HowTos/Network/SecuringSSH#head-3579222198adaf43a3ecbdc438ebce74da40d8ec" target="_blank">CentOS Documentation</a> has clear information about how to change linux server ssh port to a non-standard number. This instructions applies for any redhat kernel based distro.</p>
<p><strong><span style="text-decoration: underline;">Step 2: Always check your /tmp folder</span></strong></p>
<p>It is like., Checking your trash can of your bedroom for any hidden cams. Yes., Some crackers upload a *.php  *.py *.sh files to your server&#8217;s /tmp file and let them to become a primary spamming bot in your server.  You have to always try to find if there are any suspicious file around there in /tmp and delete them.  Usually deleting the file wont pay off. You have to find the source loop hole that allows such file in /tmp . You have to audit your web applications that allows file-uploads and anonymous FTP uploads to your server.</p>
<p><span style="text-decoration: underline;"><strong>Step 3: Disable Anonymous FTP Service</strong></span></p>
<p>Enabling anonymous FTP service is most like., Inviting robbers by opening your house window.</p>
<p>&nbsp;</p>
<blockquote><p>/etc/proftpd.conf</p>
<p>/etc/vsftpdvsftpd.conf</p></blockquote>
<p>Simply disable anonymous FTP.</p>
<p><span style="text-decoration: underline;"><strong>Step 3:  Always use SFTP and completely stop using FTP</strong></span></p>
<p>SFTP is more secure than you think. Most windows based ftp clients such as filezilla, smartftp &amp; coreftp could be affected by many malwares and it will upload &#8220;Trojan Horse JavaScript&#8221; code to your website files. I personally got affected my many javascript trojans because of virus infected ftp client transfers.  This<a href="http://wiki.vpslink.com/Configuring_vsftpd_for_secure_connections_%28TLS/SSL/SFTP%29#Install_vsftpd" target="_blank"> wiki page</a> has clear &amp; simple information about how to install SFTP</p>
<p><span style="text-decoration: underline;"><strong>Step 4:  How to disable direct file or image hotlinking?</strong></span></p>
<p>Lets say you have a cool picture file in your website. http://mywebsite.com/images/picture.jpg  . If  a guy puts your file in his website and lets say his website has thousands of visitors per day., Then, You will be endup paying money for your excessive bandwidth. Disabling hotlink is like., Saving money in your server bandwidth. This is one of the best tool that lets your to <a href="http://www.htaccesstools.com/hotlink-protection/" target="_blank">generate .htaccess code for hotlink protection</a>.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://secureslash.com/system-security/simple-linux-server-security-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript Trojan Virus Everywhere and How to fix it</title>
		<link>http://secureslash.com/uncategorized/javascript-trojan-virus-everywhere-and-how-to-fix-it/</link>
		<comments>http://secureslash.com/uncategorized/javascript-trojan-virus-everywhere-and-how-to-fix-it/#comments</comments>
		<pubDate>Sat, 01 Mar 2008 12:54:28 +0000</pubDate>
		<dc:creator>paimpozhil</dc:creator>
				<category><![CDATA[Computer Users]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Security Tools]]></category>
		<category><![CDATA[Server Administration]]></category>
		<category><![CDATA[System Security]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Website Security]]></category>
		<category><![CDATA[Javascript Trojan]]></category>
		<category><![CDATA[Javascript Trojan virus deletion fix]]></category>
		<category><![CDATA[Latest Virus 2008]]></category>

		<guid isPermaLink="false">http://secureslash.com/uncategorized/javascript-trojan-virus-everywhere-and-how-to-fix-it/</guid>
		<description><![CDATA[Tweet Its getting hit by Trojan virus: Read the News about Thousands of infected websites. A lot of sites are now being attacked with JavaScript Trojans the server is not attacked by virus , this happens to both Linux and windows server sites. so it is doesnt look like a server based attack How this [...]]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fsecureslash.com%2Funcategorized%2Fjavascript-trojan-virus-everywhere-and-how-to-fix-it%2F&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://secureslash.com/uncategorized/javascript-trojan-virus-everywhere-and-how-to-fix-it/"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://secureslash.com/uncategorized/javascript-trojan-virus-everywhere-and-how-to-fix-it/"  data-text="Javascript Trojan Virus Everywhere and How to fix it" data-count="horizontal">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://secureslash.com/uncategorized/javascript-trojan-virus-everywhere-and-how-to-fix-it/" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://secureslash.com/uncategorized/javascript-trojan-virus-everywhere-and-how-to-fix-it/"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p><strong>Its getting hit by Trojan virus:</strong></p>
<p>Read the News about <a href="http://www.onestopclick.com/news/Thousands-of-websites-now-infected-with-Trojan_18435798.html" target="_blank">Thousands of infected websites</a>.</p>
<p>A lot of sites are now being attacked with <strong>JavaScript Trojans</strong></p>
<p>the server is not attacked by virus , this <strong>happens to both Linux and windows server</strong> sites.<br />
<script type="text/javascript"><!--
google_ad_client = "pub-1553934370392546";
google_ad_width = 300;
google_ad_height = 250;
google_ad_format = "300x250_as";
google_ad_type = "text";
//2007-08-15: SecureSlash - SideBox
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "2f63b3";
google_color_text = "000000";
google_color_url = "CCCCCC";

//-->
</script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<br />
so it is doesnt look like a server based attack</p>
<p><strong>How this happens?</strong></p>
<p>when the computer from where you upload data thru FTP/fp is infected , it injects some JavaScript to all html files.</p>
<p>so how you can prevent this happening is keep your pc up2date by having recent antivirus,antispyware and then change your ftp logins.</p>
<p>If there is a Repeating same pattern of JavaScript on 100s of your files you have a shell script for Linux server users that can remove these injected javascript .</p>
<p>so you can request your host or you yourself can run this on your shell</p>
<pre></pre>
<blockquote><p>find ./ -type f -exec sed -i &#8216;/unescape/d&#8217; {} \;</p></blockquote>
<p>this command will remove all the lines with pattern &#8216;unescape&#8217;</p>
<p>some virus has lines of function <strong>okban</strong>, in that case you can try pattern <strong>&#8216;okban&#8217;</strong></p>
<p>it depends on your need.</p>
<p>you can do the same with a software called <strong>GrepWin</strong> for replacing/searching PERL Regular Expression patterns on your files</p>
<p><a href="http://tools.tortoisesvn.net/grepWin" title="http://tools.tortoisesvn.net/grepWin">http://tools.tortoisesvn.net/grepWin</a></p>
<p>use it to search for patterns and replace with null or use the options to delete those lines</p>
<p>this can be either used on a windows server or client side (but then you have to upload all modified files again )</p>
<pre></pre>
]]></content:encoded>
			<wfw:commentRss>http://secureslash.com/uncategorized/javascript-trojan-virus-everywhere-and-how-to-fix-it/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Tutorial: Hacking a Windows PC to Get Administrator Access</title>
		<link>http://secureslash.com/learn-hacking/windows-admin-access-hacking/</link>
		<comments>http://secureslash.com/learn-hacking/windows-admin-access-hacking/#comments</comments>
		<pubDate>Mon, 16 Jul 2007 11:29:46 +0000</pubDate>
		<dc:creator>KarthiKeyan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Learn Hacking]]></category>
		<category><![CDATA[System Security]]></category>
		<category><![CDATA[Vidoes]]></category>

		<guid isPermaLink="false">http://secureslash.com/learn-hacking/windows-admin-access-hacking/</guid>
		<description><![CDATA[Tweet Learn how to get Admin access in a XP machine. Source: http://fadeproofonline.com/?p=171]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fsecureslash.com%2Flearn-hacking%2Fwindows-admin-access-hacking%2F&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://secureslash.com/learn-hacking/windows-admin-access-hacking/"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://secureslash.com/learn-hacking/windows-admin-access-hacking/"  data-text="Tutorial: Hacking a Windows PC to Get Administrator Access" data-count="horizontal">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://secureslash.com/learn-hacking/windows-admin-access-hacking/" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://secureslash.com/learn-hacking/windows-admin-access-hacking/"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p>Learn how to get Admin access in a XP machine.<br />
<object type="application/x-shockwave-flash" style="width:425px; height:350px;" data="http://www.youtube.com/v/zWiOivsVXIE"><param name="movie" value="http://www.youtube.com/v/zWiOivsVXIE"/></object><br />
<script type="text/javascript"><!--
google_ad_client = "pub-1553934370392546";
google_ad_width = 300;
google_ad_height = 250;
google_ad_format = "300x250_as";
google_ad_type = "text";
//2007-08-15: SecureSlash - SideBox
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "2f63b3";
google_color_text = "000000";
google_color_url = "CCCCCC";

//-->
</script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<br />
Source: <a href="http://fadeproofonline.com/?p=171" title="http://fadeproofonline.com/?p=171" target="_blank">http://fadeproofonline.com/?p=171</a></p>
]]></content:encoded>
			<wfw:commentRss>http://secureslash.com/learn-hacking/windows-admin-access-hacking/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Fedora &#8211; NTFS Read/Write</title>
		<link>http://secureslash.com/system-security/fedora-ntfs-read-write/</link>
		<comments>http://secureslash.com/system-security/fedora-ntfs-read-write/#comments</comments>
		<pubDate>Sat, 14 Jul 2007 05:27:05 +0000</pubDate>
		<dc:creator>anim-eh</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[System Security]]></category>

		<guid isPermaLink="false">http://secureslash.com/opensource-world/ntfs-3g-install-and-usage/</guid>
		<description><![CDATA[Tweet Make Sure To Read All Of This Post Before Doing Anything, If You Don&#8217;t Understand It ALL, Do Not Continue Install NTFS Support yum -y install fuse fuse-libs ntfs-3g ntfsprogs ntfsprogs-gnomevfs Check Your Partitions Use fdisk to list partitions. Most ATA hard drives will be /dev/hda. Drives may also show up as /dev/hdb or [...]]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fsecureslash.com%2Fsystem-security%2Ffedora-ntfs-read-write%2F&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://secureslash.com/system-security/fedora-ntfs-read-write/"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://secureslash.com/system-security/fedora-ntfs-read-write/"  data-text="Fedora &#8211; NTFS Read/Write" data-count="horizontal">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://secureslash.com/system-security/fedora-ntfs-read-write/" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://secureslash.com/system-security/fedora-ntfs-read-write/"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p><strong><em>Make Sure To Read All Of This Post Before Doing Anything, If You Don&#8217;t Understand It ALL, Do Not Continue<br />
</em></strong><br />
Install NTFS Support<br />
<em>yum -y install fuse fuse-libs ntfs-3g ntfsprogs ntfsprogs-gnomevfs </em><br />
<!--adsense--><br />
Check Your Partitions<br />
Use fdisk to list partitions. Most ATA hard drives will be /dev/hda. Drives may also show up as /dev/hdb or /dev/sda depending on your configuration.<br />
<em>fdisk -l </em><br />
(find all NTFS labels, using the partitions you want below)</p>
<p>Create Mount Points<br />
For every partition in step 2 that you wish to access, you will need a &#8220;mount point&#8221;. A mount point is just a directory. Common directories are: /media/ and /mnt/. Use whichever, but be consistent.<br />
<em>cd /media/<br />
mkdir c d e </em><br />
(no spaces for the mount name, put a space between each &#8220;folder&#8221; you want to make)</p>
<p>Mount Partitions(first time)<br />
Using NTFS-3G, we mount the NTFS partition using read-write.<br />
<em>mount /dev/hda1 /media/c -t ntfs-3g -rw -o umask=0000,force<br />
mount /dev/hda2 /media/d -t ntfs-3g -rw -o umask=0000,force<br />
mount /dev/hda3 /media/e -t ntfs-3g -rw -o umask=0000,force</em><br />
(remember to only mount NTFS partitions this way, never leave out &#8220;force&#8221; else fedora may cause partition errors)</p>
<p>Install gedit Editor(including the stars)<br />
<em>yum -y install *gedit* </em></p>
<p>Fedora Boot Mounting<br />
<em>gedit /etc/fstab </em></p>
<p>Add mount lines to the END of the file you just opened in gedit<br />
<em>/dev/hda1 /media/c ntfs-3g rw,defaults,umask=0000,force 0 0<br />
/dev/hda2 /media/d ntfs-3g rw,defaults,umask=0000,force 0 0<br />
/dev/hda3 /media/e ntfs-3g rw,defaults,umask=0000,force 0 0</em></p>
<p><strong>Hints:<br />
hda# should be changed to your drive numbers, delete the extra commands&#8230;<br />
c,d,e should be changed to whatever you want JUST NO SPACES IN THE NAMES </strong></p>
<p>Deviating from this tutorial might damage your ntfs, this is proven to work over 9 months</p>
]]></content:encoded>
			<wfw:commentRss>http://secureslash.com/system-security/fedora-ntfs-read-write/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>newfolder.exe containment procedure</title>
		<link>http://secureslash.com/system-security/newfolderexe-containment-procedure/</link>
		<comments>http://secureslash.com/system-security/newfolderexe-containment-procedure/#comments</comments>
		<pubDate>Tue, 12 Jun 2007 06:28:14 +0000</pubDate>
		<dc:creator>KarthiKeyan</dc:creator>
				<category><![CDATA[System Security]]></category>

		<guid isPermaLink="false">http://secureslash.com/system-security/newfolderexe-containment-procedure/</guid>
		<description><![CDATA[Tweet How to Identify: File Size equals 208Kb, uses a folder Icon the same name as parent folder, but is an executable: NB: Turn on view of system files and hidden files, also show file extension types. Removal instructions (Some of the info below was from AGV forum) Description of what it does: I you [...]]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fsecureslash.com%2Fsystem-security%2Fnewfolderexe-containment-procedure%2F&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://secureslash.com/system-security/newfolderexe-containment-procedure/"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://secureslash.com/system-security/newfolderexe-containment-procedure/"  data-text="newfolder.exe containment procedure" data-count="horizontal">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://secureslash.com/system-security/newfolderexe-containment-procedure/" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://secureslash.com/system-security/newfolderexe-containment-procedure/"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p><strong>How to Identify:</strong><br />
File Size equals 208Kb, uses a folder Icon the same name as parent folder,<br />
but is an executable:<br />
NB: Turn on view of system files and hidden files, also show file extension<br />
types.<br />
<!--adsense--><br />
<strong>Removal instructions</strong> (Some of the info below was from AGV forum)<br />
Description of what it does:<br />
I you enter a directory it creates an exe of that directory, eg<br />
Enter the directory c:\Program Files\ and it will create Program Files.exe</p>
<p><strong>Properties of Program Files.exe:</strong><br />
Version:<br />
Comments &#8211; Butterfly.<br />
File version &#8211; 1.00<br />
Internal name &#8211; My Things<br />
Language &#8211; English(United states)<br />
Legal Trademarks &#8211; 2007<br />
Orignal file name &#8211; My Things.exe<br />
Product Name &#8211; butterfly</p>
<p>Ensure you set the PC to show hidden and system files and file extensions.<br />
Where it is located:<br />
<strong>Registery:</strong><br />
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr  entVersion\Run<br />
That is the entry that starts the bug.</p>
<p><strong>Physical location if windows XP:</strong><br />
c:\WINDOWS\Help\sched.exe  or schedl.exe</p>
<p>If Windows 2000: C:\WINNT\Help\sched.exe or schedl.exe</p>
<p><strong>How to stop it:</strong><br />
0) Turn off system restore<br />
1) Open Task Manager goto Processes sort by Image Name. Find the sched.exe<br />
and kill it.<br />
2) Delete the entry from the registery<br />
3) Delete the sched.exe file<br />
4) Need to find all the infected *.exe and delete them. If you run them, it<br />
will reinstall itself.<br />
5) Search for *.exe from 01 May 2007 to present, look for hidden files with<br />
a maximum size of 209Kb and make a detailed list of them.<br />
6) Check the properties. If they match delete them! Empty the recycle bin<br />
(Safety net incase any valid files are deleted).<br />
7) Restart machine and check 1) to 3).<br />
 <img src='http://secureslash.com/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> If the user is using Offline files and folders and has no reason to be<br />
using them, clear the offline folder cache by using Shift + left CTRL +<br />
Deltete then disable offline files and folders.<br />
9) Reboot  and re-check 1, 2 and 3<br />
10) The user may have browsed to network shares and used a memory stick, mp3<br />
player or cellphone to view or store data. Run from step 5 to search and<br />
delete the dormant virus files.</p>
<p>You can add the following basic script to the beginning (must be beginning)<br />
of a logon batch file to kill the virus on a XP workstation. (Can also be<br />
added as a startup script via a GPO).</p>
<p>rem **************************************************  **<br />
rem Butterfly virus containment 06-06-07 mtd (thanks uct for the basics!)<br />
rem **************************************************  **<br />
echo This batch will kill the schedl.exe<br />
echo process and remove it from startup<br />
echo &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
rem &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
taskkill /F /IM schedl.exe /T<br />
REG DELETE<br />
&#8220;HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Cur  rentVersion\Run&#8221; /v schedl<br />
/f</p>
<p>del /ah c:\WINDOWS\Help\schedl.exe<br />
cls<br />
echo Completed &#8220;schedl.exe&#8221; removal</p>
<p>Explorer stays very slow after the reboot!<br />
<!--adsense--><br />
This is a temporary fix until the AV vendors recognise this as a virus and<br />
provide a fix with a system clean. We are unsure as to what else this bug<br />
gets upto. It is possible that your antispam box will hammered with<br />
x@yourdomain.x!</p>
<p>Fix by: Mark<br />
Source: http://forums.techarena.in/showthread.php?s=edf51f2ef2d263961aec2ede790d5a5a&amp;t=761551</p>
]]></content:encoded>
			<wfw:commentRss>http://secureslash.com/system-security/newfolderexe-containment-procedure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>chrooting Apache</title>
		<link>http://secureslash.com/system-security/chrooting-apache/</link>
		<comments>http://secureslash.com/system-security/chrooting-apache/#comments</comments>
		<pubDate>Thu, 12 Apr 2007 13:19:56 +0000</pubDate>
		<dc:creator>KarthiKeyan</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Server Administration]]></category>
		<category><![CDATA[System Security]]></category>

		<guid isPermaLink="false">http://secureslash.com/apache/chrooting-apache/</guid>
		<description><![CDATA[Tweet Installing Apache binary There are no special steps needed to build the Apache binary in order to install it in a chroot jail. The following steps apply equally to a precompiled binary (such as an RPM) or one you have compiled yourself. Starting with a working binary helps with debugging later, if necessary. Just [...]]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fsecureslash.com%2Fsystem-security%2Fchrooting-apache%2F&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://secureslash.com/system-security/chrooting-apache/"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://secureslash.com/system-security/chrooting-apache/"  data-text="chrooting Apache" data-count="horizontal">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://secureslash.com/system-security/chrooting-apache/" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://secureslash.com/system-security/chrooting-apache/"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p><strong>Installing Apache binary</strong><br />
There are no special steps needed to build the Apache binary in order to install it in a chroot jail. The following steps apply equally to a precompiled binary (such as an RPM) or one you have compiled yourself. Starting with a working binary helps with debugging later, if necessary. Just make sure that you are using the latest patched version of the server, install Apache normally, and ensure that it is working as expected.<br />
<!--adsense--><br />
Finally, make sure you configure Apache to run with its own user and group IDs. Create a user and group with the commands:</p>
<p><span class="code"># groupadd apache<br />
# useradd -c &#8220;Apache Server&#8221; -d /dev/null -g apache -s  /bin/false apache </span><br />
These commands create the regular user apache and the apache group. Apache runs as nobody by default. User nobody may be used by many processes, and if it is compromised an intruder will gain access to all processes on your system running under that UID.<br />
<strong>Creating the chroot tree</strong><br />
Our chroot jail is a mini-version of the Linux filesystem. I prefer to use a seperate partition mounted as /chroot, with Apache under a directory named httpd on my chroot partition.</p>
<p align="justify">&nbsp;</p>
<pre class="code"># mkdir /chroot/httpd</pre>
<pre class="code"># mkdir /chroot/httpd/dev</pre>
<pre class="code"># mkdir /chroot/httpd/lib</pre>
<pre class="code"># mkdir /chroot/httpd/etc</pre>
<pre class="code"># mkdir -p /chroot/httpd/usr/sbin</pre>
<pre class="code"># mkdir /chroot/httpd/usr/lib</pre>
<pre class="code"># mkdir /chroot/httpd/usr/libexec</pre>
<pre class="code"># mkdir -p /chroot/httpd/var/run</pre>
<pre class="code"># mkdir -p /chroot/httpd/var/log/apache</pre>
<pre class="code"># mkdir -p /chroot/httpd/home/httpd</pre>
<p align="justify">Now set the permissions on your directory structure:</p>
<p align="justify">&nbsp;</p>
<pre class="code"># chown -R root /chroot/httpd</pre>
<pre class="code"># chmod -R 0755 /chroot/httpd</pre>
<pre class="code"># chmod 750 /chroot/httpd/var/log/apache/</pre>
<p align="justify">Your exact structure may vary slightly depending upon what features of Apache you are using and where the nescessary libraries live on your main file system.<br />
Once you have created the nescessary directories you need to create the null device.</p>
<p align="justify">&nbsp;</p>
<pre class="code"># mknod  /chroot/httpd/dev/null c 1 3</pre>
<pre class="code"># chown root.sys /chroot/httpd/dev/null</pre>
<pre class="code"># chmod 666 /chroot/httpd/dev/null</pre>
<p align="justify">You need the null device and /chroot/httpd/var/log/httpd/ because, when run in chroot jail, Apache sees the /chroot/httpd directory as the equivalent of /. This means that it cannot access /dev/null or /var/log on the normal filesystem.<br />
<strong>Copying the nescessary files</strong><br />
Now shut down Apache, run killall httpd, and you&#8217;re ready to start copying across the necessary files. Note that some directory names may be different in your case depending upon how you originally installed Apache. First, copy your configuration files:<br />
<span class="code"># cp -r /etc/apache /chroot/httpd/etc/ </span><br />
Next, copy your Apache DocumentRoot and CGI scripts:<br />
<span class="code"># cp -r /home/httpd/html  /chroot/httpd/home/httpd/<br />
# cp -r /home/httpd/cgi-bin /chroot/httpd/home/httpd/ </span><br />
Now copy your httpd binary (and, if you use them, the Apache scripts) from /usr/sbin:<br />
<span class="code"># cp /usr/sbin/httpd /chroot/usr/sbin/<br />
# cp /usr/sbin/apache* /chroot/usr/sbin/ </span><br />
If you use mod_ssl you need to copy the /etc/ssl  directory and its contents too:<br />
<span class="code"># cp -a /etc/ssl /chroot/httpd/etc/ </span><br />
You should also copy any modules from your original install:<br />
<span class="code">cp -r /usr/libexec/apache  /chroot/httpd/usr/libexec/ </span><br />
Once you have copied Apache itself (and ssl if needed) you need to copy all of the shared libraries Apache relies on to run. To find out which libraries you need, execute # ldd /chroot/httpd/usr/sbin/httpd. This should give output something like:</p>
<p align="justify">&nbsp;</p>
<pre class="code">/lib/libsafe.so.2 =&gt; /lib/libsafe.so.2 (0x40017000)</pre>
<pre class="code">libm.so.6 =&gt; /lib/libm.so.6 (0x40037000)</pre>
<pre class="code">libcrypt.so.1 =&gt; /lib/libcrypt.so.1 (0x40059000)</pre>
<pre class="code">libdb.so.2 =&gt; /lib/libdb.so.2 (0x40086000)</pre>
<pre class="code">libexpat.so.0 =&gt; /usr/lib/libexpat.so.0 (0x40096000)</pre>
<pre class="code">libdl.so.2 =&gt; /lib/libdl.so.2 (0x400b6000)</pre>
<pre class="code">libc.so.6 =&gt; /lib/libc.so.6 (0x400b9000)</pre>
<pre class="code">/lib/ld-linux.so.2 =&gt; /lib/ld-linux.so.2 (0x40000000)</pre>
<p align="justify">The exact output will depend upon how your httpd binary was built in the first place. Copy the required files to their respective directories in your chroot:</p>
<p align="justify">&nbsp;</p>
<pre class="code"># cp /lib/libsafe* /chroot/httpd/lib/</pre>
<pre class="code"># cp /lib/libm* /chroot/httpd/lib/</pre>
<pre class="code"># cp /lib/libcrypt* /chroot/httpd/lib/</pre>
<pre class="code"># cp /lib/libdb* /chroot/httpd/lib/</pre>
<pre class="code"># cp /usr/lib/libexpat* /chroot/httpd/usr/lib/</pre>
<pre class="code"># cp /lib/libdl* /chroot/httpd/lib/</pre>
<pre class="code"># cp /lib/libc* /chroot/httpd/lib/</pre>
<pre class="code"># cp /lib/ld-* /chroot/httpd/lib/</pre>
<p align="justify">You need certain libraries for some standard networking functionality:</p>
<p align="justify">&nbsp;</p>
<pre class="code"># cp /lib/libnss_compat* /chroot/httpd/lib/</pre>
<pre class="code"># cp /lib/libnss_dns* /chroot/httpd/lib/</pre>
<pre class="code"># cp /lib/libnss_files* /chroot/httpd/lib/</pre>
<pre class="code"># cp /lib/libnsl* /chroot/httpd/lib/</pre>
<p align="justify"><strong>The /chroot/httpd/etc configuration files</strong><br />
For Apache to function properly you also need several configuration files from /etc. First, edit the /etc/passwd and /etc/group files. These should contain only entries for the Apache user and group you created earlier. For example:</p>
<p align="justify">&nbsp;</p>
<pre class="code">/etc/passwd:</pre>
<pre class="code">apache:x:12347:12348:Apache Server:/dev/null:/bin/false</pre>
<pre class="code">/etc/group:</pre>
<pre class="code">apache:x:12347:</pre>
<p align="justify">You also need several network configuration files:</p>
<p align="justify">&nbsp;</p>
<pre class="code"># cp /etc/hosts /chroot/httpd/etc/</pre>
<pre class="code"># cp /etc/host.conf /chroot/httpd/etc/</pre>
<pre class="code"># cp /etc/resolv.conf /chroot/httpd/etc/</pre>
<pre class="code"># cp /etc/nsswitch.conf /chroot/httpd/etc/</pre>
<p align="justify">For extra security you can set the immutable bit on these configuration files. When the immutable bit is set, root has to specifically unset it before a file can be modified, making it much harder for an intruder to tamper with the files:</p>
<p align="justify">&nbsp;</p>
<pre class="code"># chattr +i /chroot/httpd/etc/hosts</pre>
<pre class="code"># chattr +i /chroot/httpd/etc/host.conf</pre>
<pre class="code"># chattr +i /chroot/httpd/etc/resolv.conf</pre>
<pre class="code"># chattr +i /chroot/httpd/etc/nsswitch.conf</pre>
<pre class="code"># chattr +i /chroot/httpd/etc/passwd</pre>
<pre class="code"># chattr +i /chroot/httpd/etc/group</pre>
<p align="justify">In order that the log files be written with the correct time, you need to check /etc/localtime. localtime is a symlink to a file in /usr/share/zoneinfo. To find out which file, run ls -l /etc/localtime and copy the appropriate file to /chroot/httpd/etc/localtime.<br />
By default, syslogd monitors log files only in /var/log. The chrooted httpd daemon will write its logs to /chroot/httpd/var/log, however, so you need to tell syslogd to monitor this directory too. To change this you need to edit the appropriate startup script, /etc/rc.d/rc.syslog or /etc/rc.d/init.d/syslog, depending upon your distro.<br />
For /etc/rc.d/rc.syslog change daemon syslogd -m 0 to daemon syslogd -m 0 -a /chroot/httpd/dev/log.<br />
For /etc/rc.d/rc.syslog  change:</p>
<p align="justify">&nbsp;</p>
<pre class="code">    echo -n " /usr/sbin/syslogd"</pre>
<pre class="code">    /usr/sbin/syslogd</pre>
<p align="justify">to:</p>
<p align="justify">&nbsp;</p>
<pre class="code">    echo -n " /usr/sbin/syslogd"</pre>
<pre class="code">    /usr/sbin/syslogd -m 0 -a /chroot/httpd/dev/log</pre>
<p align="justify">It is a good idea to create the nescessary log files and set the appendable  bit on them too.</p>
<p align="justify">&nbsp;</p>
<pre class="code"># touch /chroot/httpd/var/log/apache/access_log</pre>
<pre class="code"># touch /chroot/httpd/var/log/apache/error_log</pre>
<pre class="code"># chmod 600 /chroot/httpd/var/log/apache/*</pre>
<pre class="code"># chattr +a /chroot/httpd/var/log/apache/*</pre>
<p>Finally, you need to change the httpd startup script to run the chrooted httpd. Depending on your distro, open up /etc/rc.d/rc.httpd or /etc/rc.d/init.d/httpd and change the command that starts the httpd daemon to read /usr/sbin/chroot /chroot/httpd/ /usr/sbin/httpd.<br />
<strong>Testing the server</strong><br />
If you have not already done so you should shut down the httpd daemon now. Next, restart the syslog daemon:<span class="code"> /etc/rc.d/rc.syslog  restart</span> (or <span class="code">/etc/rc.d/init.d/syslog  restart</span> accordingly). Now start the chrooted version of Apache  with<span class="code"> /etc/rc.d/rc.httpd start</span> (or<span class="code"> /etc/rc.d/init.d/httpd start</span>).<br />
If there are no errors, check the daemon is running with the command ps -aux | grep httpd. You should see several entries indicating a running httpd process. Taking the process number from the output of ps and running ls<span class="code"> -l /proc/PROC_NUMBER/root/ </span>should show the structure of your <span class="code">/chroot/httpd</span> rather than your server&#8217;s /  filesystem.<br />
If something has gone wrong, you should try running your chrooted httpd with strace. The command # strace chroot /chroot/httpd /usr/sbin/httpd 2&gt; httpd.strace redirects the output of strace to a file named httpd.strace which should give you an idea where the problem lies.<br />
Once everything is running you can remove your original Apache install.<br />
<strong>Summary</strong><br />
<!--adsense--><br />
Although chroot can be used to help create a more secure environment, it is not perfect. You still need to keep your Web server patched up to date and monitor your logs. Your chroot environment should help to contain a potential breakin and protect your system&#8217;s main filesystem from unseen vulnerabilities in your Web server.</p>
]]></content:encoded>
			<wfw:commentRss>http://secureslash.com/system-security/chrooting-apache/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fedora Core Security</title>
		<link>http://secureslash.com/system-security/fedora-core-security/</link>
		<comments>http://secureslash.com/system-security/fedora-core-security/#comments</comments>
		<pubDate>Thu, 12 Apr 2007 13:15:59 +0000</pubDate>
		<dc:creator>KarthiKeyan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Server Administration]]></category>
		<category><![CDATA[System Security]]></category>

		<guid isPermaLink="false">http://secureslash.com/system-security/fedora-core-security/</guid>
		<description><![CDATA[Tweet Fedora is the thought and action leader in many cutting-edge Linux security initiatives. The following security features were developed by Fedora engineers. In line with the Fedora policy, these security features have been pushed upstream and they are available to all Linux distributions who choose to take advantage of them. SELinux Fedora is the [...]]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fsecureslash.com%2Fsystem-security%2Ffedora-core-security%2F&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://secureslash.com/system-security/fedora-core-security/"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://secureslash.com/system-security/fedora-core-security/"  data-text="Fedora Core Security" data-count="horizontal">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://secureslash.com/system-security/fedora-core-security/" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://secureslash.com/system-security/fedora-core-security/"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p>Fedora is the thought and action leader in many cutting-edge Linux  security<br />
initiatives. The following security features were developed by  Fedora engineers.<br />
In line with the Fedora policy, these security  features have been pushed<br />
upstream and they are available to all Linux  distributions who choose<br />
to take advantage of them.</p>
<h5 align="justify">SELinux</h5>
<p><!--adsense--></p>
<p align="justify">Fedora is the first mainstream operating system to provide MAC (Mandatory Access Control) based security using <a href="http://fedoraproject.org/wiki/SELinux">SELinux</a> enabled by default. SELinux was developed in partnership with the NSA (National Security Agency) &#8211; A US based goverment security organisation and Red Hat with developers from projects such as Gentoo and Debian. Security Enhanced Linux protects users and processes by watching all actions on the system, from opening a file to using a socket. Users may write their own SELinux security policies according to their risk tolerance. By default, Fedora runs a targeted security policy that protects network daemons that have a higher chance of being attacked. If compromised, these programs are extremely limited in the damage they can do, even if the root account is cracked.</p>
<p align="justify">For example, Apache is protected in four different ways. The executable for Apache, httpd, is protected at compile time by PIE and Exec-Shield. The executable binary file on the system is protected by ELF hardening. Finally, SELinux policies are in place so that if httpd is cracked, it can only append to the Apache logs and mangle content in specific directories; it cannot roam around home directories or otherwise interact with the rest of the system.</p>
<p align="justify">References:</p>
<p align="justify"><a href="http://fedoraproject.org/wiki/SELinux"> http://fedoraproject.org/wiki/SELinux</a></p>
<h5 align="justify">Exec-Shield</h5>
<p align="justify"> <strong>No eXecute (NX)</strong></p>
<p align="justify">Modern processors support a feature called NX which allows a system to control the execution of various portions of memory. Data memory is flagged as non-executable and program memory is flagged as non-writeable. This help prevent certain types of buffer overflow exploits from working as expected.</p>
<p align="justify">Since not all processors support the NX feature, attemptes have been made to support this feature via segment limits. A segment limit will prevent certain portions of memory from being executed. This provides very similar functionality to NX technology.</p>
<p align="justify"> <strong>Position Independent Executables (PIE)</strong></p>
<p align="justify">PIE is an Exec-Shield technology that allows a programmer to make the executable load at a different memory address each time it starts. Attackers cannot predict where the application will start, making it very hard to exploit. Not all packages are compiled as PIE executables in Fedora Core. Using PIE causes a fair amount of processing overhead, so only select packages are compiled as PIE executables.</p>
<p align="justify">Applications that are not compiled as PIE, still have a small amount of added protection. The usage of prelink does place binaries and libraries at known locations. Fedora Core contains a feature which runs prelink every two weeks at which time the memory locations of binaries and libraries is randomized. Applications that are compiled as PIE do not use prelink, all memory addresses are randomized with each execution.</p>
<h5 align="justify">Compile Time Buffer Checks (FORTIFY_SOURCE)</h5>
<p align="justify">GCC compiler and GLIBC C library from Fedora Core 4 onwards has gained a feature called &#8220;FORTIFY_SOURCE&#8221; that will detect and prevent a subset of the buffer overflows before they can do damage. The idea behind FORTIFY_SOURCE is relatively simple: there are cases where the compiler can know the size of a buffer (if it&#8217;s a fixed sized buffer on the stack, as in the example, or if the buffer just came from a malloc() function call). With a known buffer size, functions that operate on the buffer can make sure the buffer will not overflow.</p>
<p align="justify">References:</p>
<p align="justify"><a href="http://gcc.gnu.org/ml/gcc-patches/2004-09/msg02055.html"> http://gcc.gnu.org/ml/gcc-patches/2004-09/msg02055.html</a></p>
<h5 align="justify">ELF (Executable and Linkable Format) Data Hardening</h5>
<p align="justify">These are changes to the file components that protect the structure of the file itself.</p>
<p align="justify">References:</p>
<p align="justify"><a href="http://people.redhat.com/drepper/nonselsec.pdf"> http://people.redhat.com/drepper/nonselsec.pdf</a></p>
<h5 align="justify">Restricted Kernel Memory access</h5>
<p align="justify">Fedora restricts how the kernel memory (/dev/mem) can be overwritten. This prevents several rootkits from functioning resulting in a safer and more secure system.</p>
<p align="justify">References:</p>
<p align="justify"><a href="http://lwn.net/Articles/160380/"> http://lwn.net/Articles/160380/</a></p>
<h5 align="justify">Stack Smash Protection, Buffer Overflow Detection and Variable Reordering</h5>
<p align="justify">For this release, all of the software in the Fedora Core and Fedora Extras software repositories is compiled using a security feature called fstack-protector. fstack-protector puts a canary value on the stack of key functions. Just before the return address and just before returning from that value, that canary value is verified. If there was a buffer overflow, the canary no longer matches and the program aborts. The canary value is random for each time the application is started and makes it impossible to guess remotely. This is a security feature that has been backported from GCC 4.1 to the version of the GCC compiler used in Fedora Core 5 test1. This feature<br />
<!--adsense--><br />
[<a href="http://gcc.gnu.org/ml/gcc-patches/2005-05/msg01193.html">http://gcc.gnu.org/ml/gcc-patches/2005-05/msg01193.html</a>) has been written by Red Hat developers and provides similar functionality to the IBM propolice/ssp patches.</p>
<p align="justify">This is in addition to using FORTIFY_SOURCE from Fedora Core 4 onwards.</p>
<p align="justify">References:</p>
<p align="justify"><a href="http://gcc.gnu.org/gcc-4.1/changes.html"> http://gcc.gnu.org/gcc-4.1/changes.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://secureslash.com/system-security/fedora-core-security/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tor: Anonymity Online</title>
		<link>http://secureslash.com/learn-hacking/tor-anonymity-online/</link>
		<comments>http://secureslash.com/learn-hacking/tor-anonymity-online/#comments</comments>
		<pubDate>Thu, 12 Apr 2007 13:06:06 +0000</pubDate>
		<dc:creator>KarthiKeyan</dc:creator>
				<category><![CDATA[Learn Hacking]]></category>
		<category><![CDATA[Networking & Security]]></category>
		<category><![CDATA[System Security]]></category>

		<guid isPermaLink="false">http://secureslash.com/learn-hacking/tor-anonymity-online/</guid>
		<description><![CDATA[Tweet Tor is a toolset for a wide range of organizations and people that want to improve their safety and security on the Internet. Using Tor can help you anonymize web browsing and publishing, instant messaging, IRC, SSH, and other applications that use the TCP protocol. Tor also provides a platform on which software developers [...]]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fsecureslash.com%2Flearn-hacking%2Ftor-anonymity-online%2F&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://secureslash.com/learn-hacking/tor-anonymity-online/"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://secureslash.com/learn-hacking/tor-anonymity-online/"  data-text="Tor: Anonymity Online" data-count="horizontal">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://secureslash.com/learn-hacking/tor-anonymity-online/" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://secureslash.com/learn-hacking/tor-anonymity-online/"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p> Tor is a toolset for a wide range of organizations and people that want to improve their safety and security on the Internet. Using Tor can help you anonymize web browsing and publishing, instant messaging, IRC, SSH, and other applications that use the TCP protocol. Tor also provides a platform on which software developers can build new applications with built-in anonymity, safety, and privacy features.<br />
<!--adsense--><br />
Tor is a network of virtual tunnels that allows people and groups to improve their privacy and security on the Internet. It also enables software developers to create new communication tools with built-in privacy features. Tor provides the foundation for a range of applications that allow organizations and individuals to share information over public networks without compromising their privacy.</p>
<h3>Why we need Tor</h3>
<p>Using Tor protects you against a common form of Internet surveillance known as &#8220;traffic analysis.&#8221; Traffic analysis can be used to infer who is talking to whom over a public network. Knowing the source and destination of your Internet traffic allows others to track your behavior and interests. This can impact your checkbook if, for example, an e-commerce site uses price discrimination based on your country or institution of origin. It can even threaten your job and physical safety by revealing who and where you are. For example, if you&#8217;re travelling abroad and you connect to your employer&#8217;s computers to check or send mail, you can inadvertently reveal your national origin and professional affiliation to anyone observing the network, even if the connection is encrypted.</p>
<p>How does traffic analysis work? Internet data packets have two parts: a data payload and a header used for routing. The data payload is whatever is being sent, whether that&#8217;s an email message, a web page, or an audio file. Even if you encrypt the data payload of your communications, traffic analysis still reveals a great deal about what you&#8217;re doing and, possibly, what you&#8217;re saying. That&#8217;s because it focuses on the header, which discloses source, destination, size, timing, and so on.</p>
<p><span class="style3"><strong>Useful Links:</strong></span><br />
<a href="http://tor.eff.org/index.html.en">Tor Home Page</a><br />
<a href="http://tor.eff.org/overview.html.en">Tor                                  Overview</a><br />
<span class="style3"><strong>Download Links:</strong></span><br />
<a href="http://tor.eff.org/download-unix.html.en">Linux/Unix packages</a><br />
<a href="http://tor.eff.org/dist/vidalia-bundles/vidalia-bundle-0.1.1.26-0.0.9-tiger.dmg">Mac OS X 10.4 (Tiger)</a><br />
<a href="http://tor.eff.org/dist/vidalia-bundles/vidalia-bundle-0.1.1.26-0.0.7.exe">Windows Installer</a></p>
]]></content:encoded>
			<wfw:commentRss>http://secureslash.com/learn-hacking/tor-anonymity-online/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Packet Sniffers</title>
		<link>http://secureslash.com/security-tools/packet-sniffers/</link>
		<comments>http://secureslash.com/security-tools/packet-sniffers/#comments</comments>
		<pubDate>Thu, 12 Apr 2007 12:57:52 +0000</pubDate>
		<dc:creator>KarthiKeyan</dc:creator>
				<category><![CDATA[Networking & Security]]></category>
		<category><![CDATA[Security Tools]]></category>
		<category><![CDATA[System Security]]></category>

		<guid isPermaLink="false">http://secureslash.com/security-tools/packet-sniffers/</guid>
		<description><![CDATA[Tweet Wireshark : Sniffing the glue that holds the Internet together Wireshark (known as Ethereal until a trademark dispute in Summer 2006) is a fantastic open source network protocol analyzer for Unix and Windows. It allows you to examine data from a live network or from a capture file on disk. You can interactively browse [...]]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fsecureslash.com%2Fsecurity-tools%2Fpacket-sniffers%2F&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://secureslash.com/security-tools/packet-sniffers/"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://secureslash.com/security-tools/packet-sniffers/"  data-text="Packet Sniffers" data-count="horizontal">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://secureslash.com/security-tools/packet-sniffers/" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://secureslash.com/security-tools/packet-sniffers/"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p><a href="http://www.wireshark.org/"> Wireshark</a> : Sniffing the glue that holds the Internet together</p>
<p>Wireshark (known as <a href="http://www.ethereal.com/">Ethereal</a> until a trademark dispute in Summer 2006) is a fantastic open source network protocol analyzer for Unix and Windows. It allows you to examine data from a live network or from a capture file on disk. You can interactively browse the capture data, delving down into just the level of packet detail you need. Wireshark has several powerful features, including a rich display filter language and the ability to view the reconstructed stream of a TCP session. It also supports hundreds of protocols and media types. A tcpdump-like console version named tethereal is included. One word of caution is that Ethereal has suffered from dozens of remotely exploitable security holes, so stay up-to-date and be wary of running it on untrusted or hostile networks (such as security conferences).<br />
<!--adsense--><br />
<a href="http://www.kismetwireless.net/">Kismet</a> : A powerful wireless sniffer<br />
Kismet is an console (ncurses) based 802.11 layer2 wireless network detector, sniffer, and intrusion detection system. It identifies networks by passively sniffing (as opposed to more active tools such as NetStumbler), and can even decloak hidden (non-beaconing) networks if they are in use. It can automatically detect network IP blocks by sniffing TCP, UDP, ARP, and DHCP packets, log traffic in Wireshark/TCPDump compatible format, and even plot detected networks and estimated ranges on downloaded maps. As you might expect, this tool is commonly used for <a href="http://en.wikipedia.org/wiki/Wardriving">wardriving</a>.  Oh, and also <a href="http://en.wikipedia.org/wiki/Warwalking">warwalking</a>, <a href="http://www.tgdaily.com/2004/04/30/thg_takes_to_the_air_for_wi/print.html">warflying</a>, and <a href="http://www.oldskoolphreak.com/tfiles/wifi/warskating/warskating.html">warskating</a>, &#8230;</p>
<p><a href="http://www.tcpdump.org/">Tcpdump</a> : The classic sniffer for network monitoring and data acquisition<br />
Tcpdump is the IP sniffer we all used before Ethereal (Wireshark) came on the scene, and many of us continue to use it frequently. It may not have the bells and whistles (such as a pretty GUI or parsing logic for hundreds of application protocols) that Wireshark has, but it does the job well and with fewer security holes. It also requires fewer system resources. While it doesn&#8217;t receive new features often, it is actively maintained to fix bugs and portability problems. It is great for tracking down network problems or monitoring activity. There is a separate Windows port named <a href="http://windump.polito.it/">WinDump</a>.  TCPDump is the source of the <a href="http://www.tcpdump.org/">Libpcap</a>/<a href="http://winpcap.polito.it/">WinPcap</a> packet capture library, which is used by <a href="http://insecure.org/nmap/">Nmap</a> among many other tools.</p>
<p><a href="http://www.oxid.it/cain.html">Cain and Abel</a> : The top password recovery tool for Windows<br />
UNIX users often smugly assert that the best free security tools support their platform first, and Windows ports are often an afterthought. They are usually right, but Cain &amp; Abel is a glaring exception. This Windows-only password recovery tool handles an enormous variety of tasks. It can recover passwords by sniffing the network, cracking encrypted passwords using Dictionary, Brute-Force and Cryptanalysis attacks, recording VoIP conversations, decoding scrambled passwords, revealing password boxes, uncovering cached passwords and analyzing routing protocols. It is also <a href="http://www.oxid.it/ca_um/">well documented</a>.</p>
<p><a href="http://ettercap.sourceforge.net/">Ettercap</a> : In case you still thought switched LANs provide much extra security<br />
Ettercap is a terminal-based network sniffer/interceptor/logger for ethernet LANs. It supports active and passive dissection of many protocols (even ciphered ones, like ssh and https). Data injection in an established connection and filtering on the fly is also possible, keeping the connection synchronized. Many sniffing modes were implemented to give you a powerful and complete sniffing suite. Plugins are supported. It has the ability to check whether you are in a switched LAN or not, and to use OS fingerprints (active or passive) to let you know the geometry of the LAN.</p>
<p><a href="http://www.monkey.org/%7Edugsong/dsniff/">Dsniff</a> : A suite of powerful network auditing and penetration-testing tools<br />
This popular and well-engineered suite by Dug Song includes many tools. dsniff, filesnarf, mailsnarf, msgsnarf, urlsnarf, and webspy passively monitor a network for interesting data (passwords, e-mail, files, etc.). arpspoof, dnsspoof, and macof facilitate the interception of network traffic normally unavailable to an attacker (e.g, due to layer-2 switching). sshmitm and webmitm implement active monkey-in-the-middle attacks against redirected ssh and https sessions by exploiting weak bindings in ad-hoc PKI. A separately maintained partial Windows port is available <a href="http://www.datanerds.net/%7Emike/dsniff.html">here</a>.  Overall, this is a great toolset.  It handles pretty much all of your password sniffing needs.</p>
<p><a href="http://www.stumbler.net/">NetStumbler</a> : Free Windows 802.11 Sniffer<br />
Netstumbler is the best known Windows tool for finding open wireless access points (&#8220;wardriving&#8221;). They also distribute a WinCE version for PDAs and such named <a href="http://www.stumbler.net/">Ministumbler</a>. The tool is currently free but Windows-only and no source code is provided. It uses a more active approach to finding WAPs than passive sniffers such as &gt;Kismet or KisMAC.</p>
<p><a href="http://www.ntop.org/">Ntop</a> : A network traffic usage monitor<br />
Ntop shows network usage in a way similar to what top does for processes. In interactive mode, it displays the network status on the user&#8217;s terminal. In Web mode, it acts as a Web server, creating an HTML dump of the network status. It sports a NetFlow/sFlow emitter/collector, an HTTP-based client interface for creating ntop-centric monitoring applications, and RRD for persistently storing traffic statistics.</p>
<p><a href="http://www.packetfactory.net/projects/ngrep/">Ngrep</a> : Convenient packet matching &amp; display<br />
ngrep strives to provide most of GNU grep&#8217;s common features, applying them to the network layer. ngrep is a pcap-aware tool that will allow you to specify extended regular or hexadecimal expressions to match against data payloads of packets. It currently recognizes TCP, UDP and ICMP across Ethernet, PPP, SLIP, FDDI, Token Ring and null interfaces, and understands bpf filter logic in the same fashion as more common packet sniffing tools, such as tcpdump and snoop.</p>
<p><a href="http://etherape.sourceforge.net/">EtherApe</a> : EtherApe is a graphical network monitor for Unix modeled after etherman<br />
Featuring link layer, IP and TCP modes, EtherApe displays network activity graphically with a color coded protocols display. Hosts and links change in size with traffic. It supports Ethernet, FDDI, Token Ring, ISDN, PPP and SLIP devices. It can filter traffic to be shown, and can read traffic from a file as well as live from the network.<br />
<!--adsense--><br />
<a href="http://kismac.de/">KisMAC</a> : A A GUI passive wireless stumbler for Mac OS X<br />
This popular stumbler for Mac OS X offers many of the features of its namesake Kismet, though the codebase is entirely different. Unlike console-based Kismet, KisMAC offers a pretty GUI and was around before Kismet was ported to OS X. It also offers mapping, Pcap-format import and logging, and even some decryption and deauthentication attacks.</p>
]]></content:encoded>
			<wfw:commentRss>http://secureslash.com/security-tools/packet-sniffers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Intrusion Detection Systems</title>
		<link>http://secureslash.com/security-tools/intrusion-detection-systems/</link>
		<comments>http://secureslash.com/security-tools/intrusion-detection-systems/#comments</comments>
		<pubDate>Thu, 12 Apr 2007 12:56:29 +0000</pubDate>
		<dc:creator>KarthiKeyan</dc:creator>
				<category><![CDATA[Security Tools]]></category>
		<category><![CDATA[System Security]]></category>

		<guid isPermaLink="false">http://secureslash.com/security-tools/intrusion-detection-systems/</guid>
		<description><![CDATA[Tweet Snort : A Everyone&#8217;s favorite open source IDS This lightweight network intrusion detection and prevention system excels at traffic analysis and packet logging on IP networks. Through protocol analysis, content searching, and various pre-processors, Snort detects thousands of worms, vulnerability exploit attempts, port scans, and other suspicious behavior. Snort uses a flexible rule-based language [...]]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fsecureslash.com%2Fsecurity-tools%2Fintrusion-detection-systems%2F&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://secureslash.com/security-tools/intrusion-detection-systems/"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://secureslash.com/security-tools/intrusion-detection-systems/"  data-text="Intrusion Detection Systems" data-count="horizontal">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://secureslash.com/security-tools/intrusion-detection-systems/" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://secureslash.com/security-tools/intrusion-detection-systems/"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p><a href="http://www.snort.org/">Snort</a> : A Everyone&#8217;s favorite open source IDS<br />
This lightweight network intrusion detection and prevention system excels at traffic analysis and packet logging on IP networks. Through protocol analysis, content searching, and various pre-processors, Snort detects thousands of worms, vulnerability exploit attempts, port scans, and other suspicious behavior. Snort uses a flexible rule-based language to describe traffic that it should collect or pass, and a modular detection engine. Also check out the free <a href="http://secureideas.sourceforge.net/">Basic Analysis and Security Engine (BASE)</a>, a web interface for analyzing Snort alerts.<br />
<!--adsense--><br />
Open source Snort works fine for many individuals, small businesses, and departments.  Parent company <a href="http://www.sourcefire.com/">SourceFire</a> offers a complimentary product line with more enterprise-level features and real-time rule updates. They offer a free (with registration) 5-day-delayed rules feed, and you can also find many great free rules at <a href="http://www.bleedingsnort.com/">Bleeding Edge Snort</a>.</p>
<p><a href="http://www.ossec.net/">OSSEC HIDS</a> : An Open Source Host-based Intrusion Detection System<br />
OSSEC HIDS performs log analysis, integrity checking, rootkit detection, time-based alerting and active response. In addition to its IDS functionality, it is commonly used as a SEM/SIM solution. Because of its powerful log analysis engine, ISPs, universities and data centers are running OSSEC HIDS to monitor and analyze their firewalls, IDSs, web servers and authentication logs.<br />
<a href="http://www.monkey.org/%7Edugsong/fragroute/">Fragroute</a>/<a href="http://www.packetstormsecurity.nl/UNIX/IDS/nidsbench/fragrouter.html">Fragrouter</a> : A network intrusion detection evasion toolkit<br />
Fragrouter is a one-way fragmenting router &#8211; IP packets get sent from the attacker to the Fragrouter, which transforms them into a fragmented data stream to forward to the victim. Many network IDS are unable or simply don&#8217;t bother to reconstruct a coherent view of the network data (via IP fragmentation and TCP stream reassembly), as discussed in <a href="http://insecure.org/stf/secnet_ids/secnet_ids.html">this classic paper</a>. Fragrouter helps an attacker launch IP-based attacks while avoiding detection.  It is part of the <a href="http://www.packetstormsecurity.nl/UNIX/IDS/nidsbench/nidsbench.html">NIDSbench</a> suite of tools by Dug Song.  Fragroute is a similar tool which is also by Dug Song.</p>
<p><a href="http://sourceforge.net/projects/secureideas/">BASE</a> : The Basic Analysis and Security Engine<br />
BASE is a PHP-based analysis engine to search and process a database of security events generated by various IDSs, firewalls, and network monitoring tools. Its features include a query-builder and search interface for finding alerts matching different patterns, a packet viewer/decoder, and charts and statistics based on time, sensor, signature, protocol, IP address, etc.</p>
<p><a href="http://sguil.sourceforge.net/">Sguil</a> : The Analyst Console for Network Security Monitoring<br />
Sguil (pronounced sgweel) is built by network security analysts for network security analysts. Sguil&#8217;s main component is an intuitive GUI that provides realtime events from Snort/barnyard. It also includes other components which facilitate the practice of Network Security Monitoring and event driven analysis of IDS alerts.</p>
]]></content:encoded>
			<wfw:commentRss>http://secureslash.com/security-tools/intrusion-detection-systems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vulnerablility Exploitation Tools</title>
		<link>http://secureslash.com/security-tools/vulnerablility-exploitation-tools/</link>
		<comments>http://secureslash.com/security-tools/vulnerablility-exploitation-tools/#comments</comments>
		<pubDate>Thu, 12 Apr 2007 12:55:24 +0000</pubDate>
		<dc:creator>KarthiKeyan</dc:creator>
				<category><![CDATA[Networking & Security]]></category>
		<category><![CDATA[Security Tools]]></category>
		<category><![CDATA[System Security]]></category>

		<guid isPermaLink="false">http://secureslash.com/security-tools/vulnerablility-exploitation-tools/</guid>
		<description><![CDATA[Tweet Metasploit Framework : Hack the Planet Metasploit took the security world by storm when it was released in 2004. No other new tool even broke into the top 15 of this list, yet Metasploit comes in at #5, ahead of many well-loved tools that have been developed for more than a decade. It is [...]]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fsecureslash.com%2Fsecurity-tools%2Fvulnerablility-exploitation-tools%2F&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://secureslash.com/security-tools/vulnerablility-exploitation-tools/"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://secureslash.com/security-tools/vulnerablility-exploitation-tools/"  data-text="Vulnerablility Exploitation Tools" data-count="horizontal">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://secureslash.com/security-tools/vulnerablility-exploitation-tools/" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://secureslash.com/security-tools/vulnerablility-exploitation-tools/"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p><a href="http://www.metasploit.com/">Metasploit Framework</a> : Hack the Planet</p>
<p>Metasploit took the security world by storm when it was released in 2004. No other new tool even broke into the top 15 of this list, yet Metasploit comes in at #5, ahead of many well-loved tools that have been developed for more than a decade. It is an advanced open-source platform for developing, testing, and using exploit code. The extensible model through which payloads, encoders, no-op generators, and exploits can be integrated has made it possible to use the Metasploit Framework as an outlet for cutting-edge exploitation research. It ships with hundreds of exploits, as you can see in their <a href="http://metasploit.com:55555/">online exploit building demo</a>. <!--adsense--> This makes writing your own exploits easier, and it certainly beats scouring the darkest corners of the Internet for illicit shellcode of dubious quality. Similar professional exploitation tools, such as Core Impact and Canvas already existed for wealthy users on all sides of the ethical spectrum. Metasploit simply brought this capability to the masses.</p>
<p><a href="http://www.coresecurity.com/products/coreimpact/">Core Impact</a> : An automated, comprehensive penetration testing product<br />
Core Impact isn&#8217;t cheap (be prepared to spend tens of thousands of dollars), but it is widely considered to be the most powerful exploitation tool available. It sports a large, regularly updated database of professional exploits, and can do neat tricks like exploiting one machine and then establishing an encrypted tunnel through that machine to reach and exploit other boxes. If you can&#8217;t afford Impact, take a look at the cheaper Canvas or the excellent and free Metasploit Framework. Your best bet is to use all three.</p>
<p><a href="http://www.immunitysec.com/products-canvas.shtml">Canvas</a> : A Comprehensive Exploitation Framework<br />
Canvas is a commercial vulnerability exploitation tool from Dave Aitel&#8217;s<a href="http://www.immunitysec.com/">ImmunitySec</a>. It includes more than 150 exploits and is less expensive than Core Impact, though it still costs thousands of dollars. You can also buy the optional <a href="http://www.immunitysec.com/products-visualsploit.shtml">VisualSploit Plugin</a> for drag and drop GUI exploit creation.  Zero-day exploits can occasionally be found within Canvas.</p>
]]></content:encoded>
			<wfw:commentRss>http://secureslash.com/security-tools/vulnerablility-exploitation-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Packet Crafting Tools</title>
		<link>http://secureslash.com/security-tools/packet-crafting-tools/</link>
		<comments>http://secureslash.com/security-tools/packet-crafting-tools/#comments</comments>
		<pubDate>Thu, 12 Apr 2007 12:53:07 +0000</pubDate>
		<dc:creator>KarthiKeyan</dc:creator>
				<category><![CDATA[Networking & Security]]></category>
		<category><![CDATA[Security Tools]]></category>
		<category><![CDATA[System Security]]></category>

		<guid isPermaLink="false">http://secureslash.com/security-tools/packet-crafting-tools/</guid>
		<description><![CDATA[Tweet Hping2 : A network probing utility like ping on steroids This handy little utility assembles and sends custom ICMP, UDP, or TCP packets and then displays any replies. It was inspired by the ping command, but offers far more control over the probes sent. It also has a handy traceroute mode and supports IP [...]]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fsecureslash.com%2Fsecurity-tools%2Fpacket-crafting-tools%2F&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://secureslash.com/security-tools/packet-crafting-tools/"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://secureslash.com/security-tools/packet-crafting-tools/"  data-text="Packet Crafting Tools" data-count="horizontal">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://secureslash.com/security-tools/packet-crafting-tools/" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://secureslash.com/security-tools/packet-crafting-tools/"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p><a href="http://www.hping.org/">Hping2</a> : A network probing utility like ping on steroids</p>
<p>This handy little utility assembles and sends custom ICMP, UDP, or TCP packets and then displays any replies. It was inspired by the ping command, but offers far more control over the probes sent. It also has a handy traceroute mode and supports IP fragmentation. This tool is particularly useful when trying to traceroute/ping/probe hosts behind a firewall that blocks attempts using the standard utilities. This often allows you to map out firewall rulesets. It is also great for learning more about TCP/IP and experimenting with IP protocols.<br />
<!--adsense--><br />
<a href="http://www.secdev.org/projects/scapy/">Scapy</a> : Interactive packet manipulation tool<br />
Scapy is a powerful interactive packet manipulation tool, packet generator, network scanner, network discovery tool, and packet sniffer. It provides classes to interactively create packets or sets of packets, manipulate them, send them over the wire, sniff other packets from the wire, match answers and replies, and more. Interaction is provided by the Python interpreter, so Python programming structures can be used (such as variables, loops, and functions). Report modules are possible and easy to make.</p>
<p><a href="http://www.packetfactory.net/projects/nemesis/">Nemesis</a> : Packet injection simplified<br />
The Nemesis Project is designed to be a commandline-based, portable human IP stack for UNIX/Linux (and now Windows!). The suite is broken down by protocol, and should allow for useful scripting of injected packet streams from simple shell scripts.</p>
<p><a href="http://www.yersinia.net/">Yersinia</a> : A multi-protocol low-level attack tool<br />
Yersinia is a low-level protocol attack tool useful for penetration testing. It is capable of many diverse attacks over multiple protocols, such as becoming the root role in the Spanning Tree (Spanning Tree Protocol), creating virtual CDP (Cisco Discovery Protocol) neighbors, becoming the active router in a HSRP (Hot Standby Router Protocol) scenario, faking DHCP replies, and other low-level attacks.</p>
]]></content:encoded>
			<wfw:commentRss>http://secureslash.com/security-tools/packet-crafting-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Application Specific Scanners</title>
		<link>http://secureslash.com/security-tools/application-specific-scanners/</link>
		<comments>http://secureslash.com/security-tools/application-specific-scanners/#comments</comments>
		<pubDate>Thu, 12 Apr 2007 07:57:15 +0000</pubDate>
		<dc:creator>KarthiKeyan</dc:creator>
				<category><![CDATA[Security Tools]]></category>
		<category><![CDATA[System Security]]></category>

		<guid isPermaLink="false">http://secureslash.com/security-tools/application-specific-scanners/</guid>
		<description><![CDATA[Tweet THC Amap : An application fingerprinting scanner Amap is a great tool for determining what application is listening on a given port. Their database isn&#8217;t as large as what Nmap uses for its version detection feature, but it is definitely worth trying for a 2nd opinion or if Nmap fails to detect a service. [...]]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fsecureslash.com%2Fsecurity-tools%2Fapplication-specific-scanners%2F&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://secureslash.com/security-tools/application-specific-scanners/"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://secureslash.com/security-tools/application-specific-scanners/"  data-text="Application Specific Scanners" data-count="horizontal">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://secureslash.com/security-tools/application-specific-scanners/" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://secureslash.com/security-tools/application-specific-scanners/"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p><a href="http://www.thc.org/thc-amap/">THC Amap</a> : An application fingerprinting scanner</p>
<p>Amap is a great tool for determining what application is listening on a given port. Their database isn&#8217;t as large as what <a href="http://insecure.org/nmap/">Nmap</a> uses for its <a href="http://insecure.org/nmap/vscan/">version detection</a> feature, but it is definitely worth trying for a 2nd opinion or if Nmap fails to detect a service. Amap even knows how to parse Nmap output files. This is yet another valuable tool from the great guys at <a href="http://www.thc.org/">THC</a>.<br />
<!--adsense--><br />
<a href="http://www.inetcat.net/software/nbtscan.html">Nbtscan</a> : Gathers NetBIOS info from Windows networks<br />
NBTscan is a program for scanning IP networks for NetBIOS name information. It sends a NetBIOS status query to each address in supplied range and lists received information in human readable form. For each responded host it lists IP address, NetBIOS computer name, logged-in user name and MAC address.</p>
<p><a href="http://www.nta-monitor.com/tools/ike-scan/">Ike-scan</a> : VPN detector/scanner<br />
Ike-scan exploits transport characteristics in the Internet Key Exchange (IKE) service, the mechanism used by VPNs to establish a connection between a server and a remote client. It scans IP addresses for VPN servers by sending a specially crafted IKE packet to each host within a network. Most hosts running IKE will respond, identifying their presence. The tool then remains silent and monitors retransmission packets. These retransmission responses are recorded, displayed and matched against a known set of VPN product fingerprints. Ike-scan can VPNs from manufacturers including Checkpoint, Cisco, Microsoft, Nortel, and Watchguard.</p>
<p><a href="http://www.immunitysec.com/resources-freesoftware.shtml">SPIKE Proxy</a> : HTTP Hacking<br />
Spike Proxy is an open source HTTP proxy for finding security flaws in web sites. It is part of the <a href="http://www.immunitysec.com/resources-freesoftware.shtml">Spike Application Testing Suite</a> and supports automated SQL injection detection, web site crawling, login form brute forcing, overflow detection, and directory traversal detection.</p>
]]></content:encoded>
			<wfw:commentRss>http://secureslash.com/security-tools/application-specific-scanners/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Port Scanners</title>
		<link>http://secureslash.com/security-tools/port-scanners/</link>
		<comments>http://secureslash.com/security-tools/port-scanners/#comments</comments>
		<pubDate>Thu, 12 Apr 2007 07:55:46 +0000</pubDate>
		<dc:creator>KarthiKeyan</dc:creator>
				<category><![CDATA[Learn Hacking]]></category>
		<category><![CDATA[Networking & Security]]></category>
		<category><![CDATA[Security Tools]]></category>
		<category><![CDATA[System Security]]></category>

		<guid isPermaLink="false">http://secureslash.com/security-tools/port-scanners/</guid>
		<description><![CDATA[Tweet Angry IP Scanner : A fast windows IP scanner and port scanner Angry IP Scanner can perform basic host discovery and port scans on Windows. Its binary file size is very small compared to other scanners and other pieces of information about the target hosts can be extended with a few plugins. Superscan : [...]]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fsecureslash.com%2Fsecurity-tools%2Fport-scanners%2F&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://secureslash.com/security-tools/port-scanners/"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://secureslash.com/security-tools/port-scanners/"  data-text="Port Scanners" data-count="horizontal">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://secureslash.com/security-tools/port-scanners/" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://secureslash.com/security-tools/port-scanners/"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p><a href="http://www.angryziber.com/ipscan/">Angry IP Scanner</a> : A fast windows IP scanner and port scanner</p>
<p>Angry IP Scanner can perform basic host discovery and port scans on Windows. Its binary file size is very small compared to other scanners and other pieces of information about the target hosts can be extended with <a href="http://www.angryziber.com/ipscan/plugins/">a few plugins</a>.<br />
<!--adsense--><br />
<a href="http://www.foundstone.com/resources/proddesc/superscan.htm">Superscan</a> : A Windows-only port scanner, pinger, and resolver<br />
SuperScan is a free Windows-only closed-source TCP/UDP port scanner by Foundstone. It includes a variety of additional networking tools such as ping, traceroute, http head, and whois.</p>
<p><a href="http://www.unicornscan.org/">Unicornscan</a> : Not your mother&#8217;s port scanner<br />
Unicornscan is an attempt at a User-land Distributed TCP/IP stack for information gathering and correlation. It is intended to provide a researcher a superior interface for introducing a stimulus into and measuring a response from a TCP/IP enabled device or network. Some of its features include asynchronous stateless TCP scanning with all variations of TCP flags, asynchronous stateless TCP banner grabbing, and active/passive remote OS, application, and component identification by analyzing responses. it isn&#8217;t for the faint of heart.</p>
<p><a href="http://www.doxpara.com/paketto">Scanrand</a> : An unusually fast stateless network service and topology discovery system<br />
Scanrand is a stateless host-discovery and port-scanner similar in design to Unicornscan. It trades off reliability for amazingly fast speeds and uses cryptographic techniques to prevent attackers from manipulating scan results. This utility is a part of a software package called <a href="http://www.doxpara.com/paketto">Paketto Keiretsu</a> which was written by <a href="http://www.doxpara.com/">Dan Kaminsky</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://secureslash.com/security-tools/port-scanners/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firewall</title>
		<link>http://secureslash.com/security-tools/firewall/</link>
		<comments>http://secureslash.com/security-tools/firewall/#comments</comments>
		<pubDate>Thu, 12 Apr 2007 07:54:13 +0000</pubDate>
		<dc:creator>KarthiKeyan</dc:creator>
				<category><![CDATA[Networking & Security]]></category>
		<category><![CDATA[Security Tools]]></category>
		<category><![CDATA[System Security]]></category>

		<guid isPermaLink="false">http://secureslash.com/security-tools/firewall/</guid>
		<description><![CDATA[Tweet Netfilter : The current Linux kernel packet filter/firewall Netfilter is a powerful packet filter implemented in the standard Linux kernel. The userspace iptables tool is used for configuration. It now supports packet filtering (stateless or stateful), all kinds of network address and port translation (NAT/NAPT), and multiple API layers for 3rd party extensions. It [...]]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fsecureslash.com%2Fsecurity-tools%2Ffirewall%2F&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://secureslash.com/security-tools/firewall/"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://secureslash.com/security-tools/firewall/"  data-text="Firewall" data-count="horizontal">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://secureslash.com/security-tools/firewall/" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://secureslash.com/security-tools/firewall/"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p><a href="http://www.netfilter.org/">Netfilter</a> : The current Linux kernel packet filter/firewall</p>
<p>Netfilter is a powerful packet filter implemented in the standard Linux kernel. The userspace iptables tool is used for configuration. It now supports packet filtering (stateless or stateful), all kinds of network address and port translation (NAT/NAPT), and multiple API layers for 3rd party extensions. It includes many different modules for handling unruly protocols such as FTP. For other UNIX platforms (OpenBSD specific), or IP Filter. <!--adsense-->Many <a href="http://en.wikipedia.org/wiki/Personal_firewall">personal firewalls</a> are available for Windows (<a href="http://www.tinysoftware.com/">Tiny</a>,<a href="http://www.zonelabs.com/">Zone Alarm</a>, Norton, <a href="http://www.kerio.com/">Kerio</a>, &#8230;), though none made this list. Microsoft included a very basic firewall in Windows XP SP2, and will nag you incessantly until you install it.</p>
<p><a href="http://www.benzedrine.cx/pf.html">Openbsd PF</a> : The OpenBSD Packet Filter<br />
Like Netfilter and IP Filter on other platforms, OpenBSD users love PF, their firewall tool. It handles network address translation, normalizing TCP/IP traffic, providing bandwidth control, and packet prioritization. It also offers some eccentric features, such as passive OS detection. Coming from the same guys who created OpenBSD, you can trust that it has been well audited and coded to avoid the sort of security holes we have seen in <a href="http://www3.ca.com/securityadvisor/vulninfo/Vuln.aspx?ID=28350">other</a>  <a href="http://netfilter.org/security/">packet</a>  <a href="http://www.osvdb.org/displayvuln.php?osvdb_id=4745">filters</a>.</p>
<p><a href="http://coombs.anu.edu.au/%7Eavalon/">IP Filter</a> : Portable UNIX Packet Filter<br />
IP Filter is a software package that can be used to provide network address translation (NAT) or firewall services. It can either be used as a loadable kernel module or incorporated into your UNIX kernel; use as a loadable kernel module where possible is highly recommended. Scripts are provided to install and patch system files, as required. IP Filter is distributed with FreeBSD, NetBSD, and Solaris.</p>
]]></content:encoded>
			<wfw:commentRss>http://secureslash.com/security-tools/firewall/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rootkit Detectors</title>
		<link>http://secureslash.com/security-tools/rootkit-detectors/</link>
		<comments>http://secureslash.com/security-tools/rootkit-detectors/#comments</comments>
		<pubDate>Thu, 12 Apr 2007 07:52:47 +0000</pubDate>
		<dc:creator>KarthiKeyan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Security Tools]]></category>
		<category><![CDATA[Server Administration]]></category>
		<category><![CDATA[System Security]]></category>

		<guid isPermaLink="false">http://secureslash.com/security-tools/rootkit-detectors/</guid>
		<description><![CDATA[Tweet Sysinternals : An extensive collection of powerful windows utilities Sysinternals provides many small windows utilities that are quite useful for low-level windows hacking. Some are free of cost and/or include source code, while others are proprietary. Survey respondents were most enamored with: ProcessExplorer for keeping an eye on the files and directories open by [...]]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fsecureslash.com%2Fsecurity-tools%2Frootkit-detectors%2F&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://secureslash.com/security-tools/rootkit-detectors/"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://secureslash.com/security-tools/rootkit-detectors/"  data-text="Rootkit Detectors" data-count="horizontal">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://secureslash.com/security-tools/rootkit-detectors/" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://secureslash.com/security-tools/rootkit-detectors/"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p><a href="http://www.microsoft.com/technet/sysinternals/default.mspx">Sysinternals</a> : An extensive collection of powerful windows utilities</p>
<p>Sysinternals provides many small windows utilities that are quite useful for low-level windows hacking. Some are free of cost and/or include source code, while others are proprietary. Survey respondents were most enamored with:<!--adsense--></p>
<ul>
<li><a href="http://www.microsoft.com/technet/sysinternals/utilities/ProcessExplorer.mspx">ProcessExplorer</a> for keeping an eye on the files and directories open by any process (like LSoF on UNIX).</li>
<li><a href="http://www.microsoft.com/technet/sysinternals/utilities/PsTools.mspx">PsTools</a> for managing (executing, suspending, killing, detailing) local and remote processes.</li>
<li><a href="http://www.microsoft.com/technet/sysinternals/utilities/Autoruns.mspx">Autoruns</a> for discovering what executables are set to run during system boot up or login.</li>
<li><a href="http://www.microsoft.com/technet/sysinternals/utilities/RootkitRevealer.mspx">RootkitRevealer</a> for detecting registry and file system API discrepancies that may indicate the presence of a user-mode or kernel-mode rootkit.</li>
<li><a href="http://www.microsoft.com/technet/sysinternals/utilities/TcpView.mspx">TCPView</a>, for viewing TCP and UDP traffic endpoints used by each process (like Netstat on UNIX).</li>
</ul>
<p><strong>Update:</strong> Microsoft <a href="http://www.winternals.com/Company/PressRelease92.aspx">acquired Sysinternals</a> in July 2006, <a href="http://www.winternals.com/Company/PressRelease92.aspx">promising</a> that â€œCustomers will be able to continue building on Sysinternals&#8217; advanced utilities, technical information and source codeâ€. Less than four months later, Microsoft <a href="http://seclists.org/dailydave/2006/q4/0134.html">removed</a> most of that source code.  Future product direction is uncertain.</p>
<p><a href="http://www.tripwire.com/">Tripwire</a> : The grand-daddy of file integrity checkers<br />
A file and directory integrity checker. Tripwire is a tool that aids system administrators and users in monitoring a designated set of files for any changes. Used with system files on a regular (e.g., daily) basis, Tripwire can notify system administrators of corrupted or tampered files, so damage control measures can be taken in a timely manner. An open source Linux version is freely available at <a href="http://www.tripwire.org/">Tripwire.Org</a>.  UNIX users may also want to consider <a href="http://www.cs.tut.fi/%7Erammer/aide.html">AIDE</a>, which has been designed to be a free Tripwire replacement.  Or you may wish to investigate <a href="http://www.radmind.org/">Radmind</a>, RKHunter, or chkrootkit.  Windows users may like <a href="http://www.sysinternals.com/utilities/rootkitrevealer.html">RootkitRevealer</a> from Sysinternals.</p>
<p><a href="http://www.rootkit.nl/projects/rootkit_hunter.html">RKHunter</a> : An Unix Rootkit Detector<br />
RKHunter is scanning tool that checks for signs of various pieces of nasty software on your system like rootkits, backdoors and local exploits. It runs many tests, including MD5 hash comparisons, default filenames used by rootkits, wrong file permissions for binaries, and suspicious strings in LKM and KLD modules.</p>
<p><a href="http://www.chkrootkit.org/">chkrootkit</a> : Locally checks for signs of a rootkit<br />
chkrootkit is a flexible, portable tool that can check for many signs of rootkit intrusion on Unix-based systems. Its features include detecting binary modification, utmp/wtmp/lastlog modifications, promiscuous interfaces, and malicious kernel modules.</p>
]]></content:encoded>
			<wfw:commentRss>http://secureslash.com/security-tools/rootkit-detectors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vulnerability Scanner</title>
		<link>http://secureslash.com/security-tools/vulnerability-scanner/</link>
		<comments>http://secureslash.com/security-tools/vulnerability-scanner/#comments</comments>
		<pubDate>Thu, 12 Apr 2007 07:36:54 +0000</pubDate>
		<dc:creator>KarthiKeyan</dc:creator>
				<category><![CDATA[Security Tools]]></category>
		<category><![CDATA[System Security]]></category>

		<guid isPermaLink="false">http://secureslash.com/security-tools/vulnerability-scanner/</guid>
		<description><![CDATA[Tweet Nessus : Premier UNIX vulnerability assessment tool Nessus is the best free network vulnerability scanner available, and the best to run on UNIX at any price. It is constantly updated, with more than 11,000 plugins for the free (but registration and EULA-acceptance required) feed. Key features include remote and local (authenticated) security checks, a [...]]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fsecureslash.com%2Fsecurity-tools%2Fvulnerability-scanner%2F&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://secureslash.com/security-tools/vulnerability-scanner/"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://secureslash.com/security-tools/vulnerability-scanner/"  data-text="Vulnerability Scanner" data-count="horizontal">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://secureslash.com/security-tools/vulnerability-scanner/" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://secureslash.com/security-tools/vulnerability-scanner/"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p><a href="http://www.nessus.org/">Nessus</a> : Premier UNIX vulnerability assessment tool</p>
<p>Nessus is the best free network vulnerability scanner available, and the best to run on UNIX at any price. It is constantly updated, with more than 11,000 plugins for the free (but registration and EULA-acceptance required) feed. Key features include remote and local (authenticated) security checks, a client/server architecture with a GTK graphical interface, and an embedded scripting language for writing your own plugins or understanding the existing ones.<!--adsense--> Nessus 3 is <a href="http://software.newsforge.com/article.pl?sid=05/10/06/1716257&amp;tid=132&amp;tid=78&amp;tid=27">now closed source</a>, but is still free-of-cost unless you want the very newest plugins.</p>
<p><a href="http://www.gfi.com/lannetscan/">GFI LANguard</a> : A commercial network security scanner for Windows<br />
GFI LANguard scans IP networks to detect what machines are running. Then it tries to discern the host OS and what applications are running. I also tries to collect Windows machine&#8217;s service pack level, missing security patches, wireless access points, USB devices, open shares, open ports, services/applications active on the computer, key registry entries, weak passwords, users and groups, and more. Scan results are saved to an HTML report, which can be customized/queried. It also includes a patch manager which detects and installs missing patches. A free trial version is available, though it only works for up to 30 days.</p>
<p><a href="http://www.eeye.com/html/Products/Retina/index.html">Retina</a> : Commercial vulnerability assessment scanner by eEye<br />
. Retina&#8217;s function is to scan all the hosts on a network and report on any vulnerabilities found. It was written by <a href="http://www.eeye.com/">eEye</a>, who are well known for their <a href="http://www.eeye.com/html/research/index.html">security research</a>.</p>
<p><a href="http://www.coresecurity.com/products/coreimpact/">Core Impact</a> : An automated, comprehensive penetration testing product<br />
Core Impact isn&#8217;t cheap (be prepared to spend tens of thousands of dollars), but it is widely considered to be the most powerful exploitation tool available. It sports a large, regularly updated database of professional exploits, and can do neat tricks like exploiting one machine and then establishing an encrypted tunnel through that machine to reach and exploit other boxes. If you can&#8217;t afford Impact, take a look at the cheaper Canvas or the excellent and free Metasploit Framework. Your best bet is to use all three.</p>
<p><a href="http://www.iss.net/products_services/enterprise_protection/vulnerability_assessment/scanner_internet.php">ISS Internet Scanner</a> : Application-level vulnerability assessment<br />
Internet Scanner started off in &#8217;92 as a tiny open source scanner by Christopher Klaus. Now he has grown ISS into a billion-dollar company with a myriad of security products.</p>
<p><a href="http://www.xfocus.net/tools/200507/1057.html">X-scan</a> : A general scanner for scanning network vulnerabilities<br />
A multi-threaded, plug-in-supported vulnerability scanner. X-Scan includes many features, including full NASL support, detecting service types, remote OS type/version detection, weak user/password pairs, and more. You may be able to find newer versions available <a href="http://www.xfocus.net/tools/">here</a> if you can deal with most of the page being written in Chinese.</p>
<p><a href="http://www-arc.com/sara/">Sara</a> : Security Auditor&#8217;s Research Assistant<br />
SARA is a vulnerability assessment tool that was derived from the infamous SATAN scanner. They try to release updates twice a month and try to leverage other software created by the open source community (such as <a href="http://insecure.org/nmap/">Nmap</a> and <a href="http://samba.org/">Samba</a>).</p>
<p><a href="http://www.qualys.com/">QualysGuard</a> : A web-based vulnerability scanner<br />
Delivered as a service over the Web, QualysGuard eliminates the burden of deploying, maintaining, and updating vulnerability management software or implementing ad-hoc security applications. Clients securely access QualysGuard through an easy-to-use Web interface. QualysGuard features 5,000+ unique vulnerability checks, an Inference-based scanning engine, and automated daily updates to the QualysGuard vulnerability KnowledgeBase.</p>
<p><a href="http://www.saintcorporation.com/saint/">SAINT</a> : Security Administrator&#8217;s Integrated Network Tool<br />
SAINT is another commercial vulnerability assessment tool (like Nessus, ISS Internet Scanner, or Retina). It runs on UNIX and used to be free and open source, but is now a commercial product.</p>
<p><a href="http://www.microsoft.com/technet/security/tools/mbsahome.mspx">MBSA</a> : Microsoft Baseline Security Analyzer<br />
Microsoft Baseline Security Analyzer (MBSA) is an easy-to-use tool designed for the IT professional that helps small and medium-sized businesses determine their security state in accordance with Microsoft security recommendations and offers specific remediation guidance. Built on the Windows Update Agent and Microsoft Update infrastructure, MBSA ensures consistency with other Microsoft management products including Microsoft Update (MU), Windows Server Update Services (WSUS), Systems Management Server (SMS) and Microsoft Operations Manager (MOM). Apparently MBSA on average scans over 3 million computers each week.</p>
]]></content:encoded>
			<wfw:commentRss>http://secureslash.com/security-tools/vulnerability-scanner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OS Detection Tools</title>
		<link>http://secureslash.com/security-tools/os-detection-tools/</link>
		<comments>http://secureslash.com/security-tools/os-detection-tools/#comments</comments>
		<pubDate>Thu, 12 Apr 2007 07:17:03 +0000</pubDate>
		<dc:creator>KarthiKeyan</dc:creator>
				<category><![CDATA[Learn Hacking]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Security Tools]]></category>
		<category><![CDATA[System Security]]></category>

		<guid isPermaLink="false">http://secureslash.com/security-tools/os-detection-tools/</guid>
		<description><![CDATA[Tweet P0f : A versatile passive OS fingerprinting tool P0f is able to identify the operating system of a target host simply by examining captured packets even when the device in question is behind an overzealous packet firewall. P0f does not generate ANY additional network traffic, direct or indirect. No name lookups, no mysterious probes, [...]]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fsecureslash.com%2Fsecurity-tools%2Fos-detection-tools%2F&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://secureslash.com/security-tools/os-detection-tools/"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://secureslash.com/security-tools/os-detection-tools/"  data-text="OS Detection Tools" data-count="horizontal">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://secureslash.com/security-tools/os-detection-tools/" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://secureslash.com/security-tools/os-detection-tools/"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p><a href="http://lcamtuf.coredump.cx/p0f.shtml">P0f</a> : A versatile passive OS fingerprinting tool</p>
<p>P0f is able to identify the operating system of a target host simply by examining captured packets even when the device in question is behind an overzealous packet firewall. P0f does not generate ANY additional network traffic, direct or indirect. No name lookups, no mysterious probes, no ARIN queries, nothing. In the hands of advanced users, P0f can detect firewall presence, NAT use, existence of load balancers, and more!<br />
<!--adsense--><br />
<a href="http://www.sys-security.com/index.php?page=xprobe">Xprobe2</a> : Active OS fingerprinting tool<br />
XProbe is a tool for determining the operating system of a remote host. They do this using some of the <a href="http://insecure.org/nmap/osdetect/">same techniques</a> as <a href="http://insecure.org/nmap/">Nmap</a> as well as some of their own ideas.  Xprobe has always emphasized the ICMP protocol in its fingerprinting approach.</p>
]]></content:encoded>
			<wfw:commentRss>http://secureslash.com/security-tools/os-detection-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

