<?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>NoVirusThanks Blog &#187; Linux</title>
	<atom:link href="http://blog.novirusthanks.org/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.novirusthanks.org</link>
	<description>Security News and Malware Analysis</description>
	<lastBuildDate>Wed, 01 Feb 2012 13:34:38 +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>How to change owner and group to a file</title>
		<link>http://blog.novirusthanks.org/2009/02/linux-how-to-change-owner-and-group-to-a-file/</link>
		<comments>http://blog.novirusthanks.org/2009/02/linux-how-to-change-owner-and-group-to-a-file/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 22:33:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[chgrp]]></category>
		<category><![CDATA[chown]]></category>

		<guid isPermaLink="false">http://novirusthanks.org/blog/?p=900</guid>
		<description><![CDATA[Before you try the codes below remember that these commands can only be used by the owner of the files or by root. &#160; To change the owner of a file or a directory type: #change owner to a file chown username file &#160; #change owner to a directory chown username directory To change the [...]]]></description>
			<content:encoded><![CDATA[<p>Before you try the codes below remember that these commands can only be used by the owner of the files or by root.</p>
<p>&nbsp;</p>
<p>To change the owner of a file or a directory type:</p>
<blockquote><p>
#change owner to a file<br />
chown username file</p>
<p>&nbsp;</p>
<p>#change owner to a directory<br />
chown username directory
</p></blockquote>
<p>To change the group to a file or a directory type:</p>
<blockquote><p>
#change group to a file<br />
chgrp group file</p>
<p>&nbsp;</p>
<p>#change group to a directory<br />
chgrp group directory
</p></blockquote>
<p>Recursive and Verbose</p>
<p>&nbsp;</p>
<p>To change the owner of a directory and of all its content and subfolders, type:</p>
<blockquote><p>
chown -R username directory
</p></blockquote>
<p>You can also use the -v parameter for <i>verbose</i> mode as follow:</p>
<blockquote><p>
chown -Rv username directory
</p></blockquote>
<p>The above parameters are valid also for chgrp, that is used to change group.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.novirusthanks.org/2009/02/linux-how-to-change-owner-and-group-to-a-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to interrupt a command in foreground</title>
		<link>http://blog.novirusthanks.org/2009/02/linux-how-to-interrupt-a-command-in-foreground/</link>
		<comments>http://blog.novirusthanks.org/2009/02/linux-how-to-interrupt-a-command-in-foreground/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 22:30:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://novirusthanks.org/blog/?p=899</guid>
		<description><![CDATA[If you started a command in foreground (not in background) and you want to interrupt it you can use this command: CTRL + C The above command will interrupt the previous started command and will return the shell prompt.]]></description>
			<content:encoded><![CDATA[<p>If you started a command in foreground (not in background) and you want to interrupt it you can use this command:</p>
<blockquote><p>
CTRL + C
</p></blockquote>
<p>The above command will interrupt the previous started command and will return the shell prompt.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.novirusthanks.org/2009/02/linux-how-to-interrupt-a-command-in-foreground/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove duplicate lines using uniq</title>
		<link>http://blog.novirusthanks.org/2009/02/linux-remove-duplicate-lines-using-uniq/</link>
		<comments>http://blog.novirusthanks.org/2009/02/linux-remove-duplicate-lines-using-uniq/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 22:27:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[uniq]]></category>

		<guid isPermaLink="false">http://novirusthanks.org/blog/?p=896</guid>
		<description><![CDATA[Display all the lines sorted in alphabetic order: sort file_name Now show only the unique lines: sort file_name &#124; uniq And finally save the unique lines in a new file: sort file_name &#124; uniq &#62; file_name_uniques]]></description>
			<content:encoded><![CDATA[<p>Display all the lines sorted in alphabetic order:</p>
<blockquote><p>sort file_name</p>
</blockquote>
<p>Now show only the unique lines:</p>
<blockquote><p>sort file_name | uniq</p>
</blockquote>
<p>And finally save the unique lines in a new file:</p>
<blockquote><p>sort file_name | uniq &gt; file_name_uniques</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.novirusthanks.org/2009/02/linux-remove-duplicate-lines-using-uniq/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Snort &#8211; Network Intrusion Detection and Prevention System</title>
		<link>http://blog.novirusthanks.org/2008/12/snort-intrusion-detection-and-prevention-system/</link>
		<comments>http://blog.novirusthanks.org/2008/12/snort-intrusion-detection-and-prevention-system/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 22:55:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[IDS]]></category>
		<category><![CDATA[snort]]></category>

		<guid isPermaLink="false">http://novirusthanks.org/blog/?p=564</guid>
		<description><![CDATA[A NIDS (Network Intrusion Detection Systems) is a system for monitoring the network traffic to identify patterns of potentially hostile packages in response that can be carried out certain actions (notification via email, closing a connection, logging on a database). &#160; Snort is an open source network intrusion prevention system, capable of performing real-time traffic [...]]]></description>
			<content:encoded><![CDATA[<p>A NIDS (Network Intrusion Detection Systems) is a system for monitoring the network traffic to identify patterns of potentially hostile packages in response that can be carried out certain actions (notification via email, closing a connection, logging on a database).</p>
<p>&nbsp;</p>
<p><img src="http://blog.novirusthanks.org/wp-content/uploads/Snort.gif" alt="Snort Logo" title="Snort Logo" /></p>
<blockquote><p>
<a href="http://www.snort.org" target="_blank">Snort</a> is an open source network intrusion prevention system, capable of performing real-time traffic analysis and packet logging on IP networks. It can perform protocol analysis, content searching/matching, and can be used to detect a variety of attacks and probes, such as buffer overflows, stealth port scans, CGI attacks, SMB probes, OS fingerprinting attempts, and much more.
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.novirusthanks.org/2008/12/snort-intrusion-detection-and-prevention-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>11 Linux Firewall Software (Free)</title>
		<link>http://blog.novirusthanks.org/2008/10/10-linux-firewall-software-free/</link>
		<comments>http://blog.novirusthanks.org/2008/10/10-linux-firewall-software-free/#comments</comments>
		<pubDate>Sun, 26 Oct 2008 15:58:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[iptables]]></category>
		<category><![CDATA[kde]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://novirusthanks.org/blog/?p=65</guid>
		<description><![CDATA[List of Firewall Software (Free) for Linux Systems: &#160; IPCop Firewall 1.4.21 &#160; &#160; IPCop Firewall is a Linux firewall distribution geared towards home and SOHO (Small Office/Home Office) users. The IPCop interface is very user-friendly and task-based. IPCop offers the critical functionality of an expensive network appliance using stock, or even obsolete, hardware and [...]]]></description>
			<content:encoded><![CDATA[<p>List of Firewall Software (Free) for Linux Systems:</p>
<p>&nbsp;</p>
<p><strong>IPCop Firewall 1.4.21</strong></p>
<p>&nbsp;</p>
<p><a href="http://jua.free.fr/forums/ipcop/WIKI_TraficGFX.png" target="_blank"><img src="http://jua.free.fr/forums/ipcop/WIKI_TraficGFX.png" alt="" width="430" height="400" /></a></p>
<p>&nbsp;</p>
<blockquote><p>IPCop Firewall is a Linux firewall distribution geared towards home and SOHO (Small Office/Home Office) users. The IPCop interface is very user-friendly and task-based. IPCop offers the critical functionality of an expensive network appliance using stock, or even obsolete, hardware and OpenSource Software.<br />
<a href="http://www.ipcop.org" target="_blank">Homepage</a></p></blockquote>
<p><strong>Firestarter</strong></p>
<p>&nbsp;</p>
<p><a href="http://www.fs-security.com/pics/shot1.jpg" target="_blank"><img src="http://www.fs-security.com/pics/shot1.jpg" alt="" /></a></p>
<p>&nbsp;</p>
<blockquote><p>Firestarter is an Open Source visual firewall program. The software aims to combine ease of use with powerful features, therefore serving both Linux desktop users and system administrators.<br />
We strongly believe that your job is to make the high level security policy decisions and ours is to take care of the underlying details. This is a departure from your typical Linux firewall, which has traditionally required arcane implementation specific knowledge.<br />
<a href="http://www.fs-security.com/" target="_blank">Homepage</a></p></blockquote>
<p><strong>Lutel Firewall</strong></p>
<blockquote><p>LutelWall (formerly known as Lutel Firewall) is high-level linux firewall configuration tool. It uses human-readable and easy to understand configuration to set up Netfilter in most secure way. Its flexibility allows firewall admins build from very simple, single-homed firewalls, to most complex ones &#8211; with multiple subnets, DMZ&#8217;s and traffic redirections. It can be used on a dedicated firewall system, a multi-function gateway/router/server or on a standalone system.<br />
<a href="http://firewall.lutel.pl/" target="_blank">Homepage</a></p></blockquote>
<p><strong>LEAF &#8211; Linux Embedded Appliance Framework</strong></p>
<blockquote><p>A secure, feature-rich, customizable embedded Linux network appliance for use in a variety of network topologies. Although it can be used in other ways; it&#8217;s primarily used as a Internet gateway, router, firewall, and wireless access point.<br />
<a href="http://leaf.sourceforge.net/" target="_blank">Homepage</a></p></blockquote>
<p><strong>PCX Firewall 2.24</strong></p>
<blockquote><p>What is the PCXFirewall?<br />
It is a Toolkit of perl libraries that allow you to define firewall rules for the Linux netfilter/iptables subsystem.<br />
<a href="http://pcxfirewall.sourceforge.net/" target="_blank">Homepage</a>
</p></blockquote>
<p><strong>Shoreline Firewall (Shorewall)</strong></p>
<blockquote><p>The Shoreline Firewall, more commonly known as &#8220;Shorewall&#8221;, is a high-level tool for configuring Netfilter. You describe your firewall/gateway requirements using entries in a set of configuration files. Shorewall reads those configuration files and with the help of the iptables utility, Shorewall configures Netfilter to match your requirements. Shorewall can be used on a dedicated firewall system, a multi-function gateway/router/server or on a standalone GNU/Linux system. Shorewall does not use Netfilter&#8217;s ipchains compatibility mode; as a consequence, Shorewall can take advantage of Netfilter&#8217;s connection state tracking capabilities to create a stateful firewall.<br />
<a href="http://www.shorewall.net/" target="_blank">Homepage</a></p></blockquote>
<p><strong>KMyFirewall</strong></p>
<p>&nbsp;</p>
<p><a href="http://www.kmyfirewall.org/pics/kat_pics_240_pic_large.jpg" target="_blanK"><img src="http://www.kmyfirewall.org/pics/kat_pics_240_pic_large.jpg" alt="" width="420" height="400" /></a></p>
<blockquote><p>KMyFirewall is an IPTables based firewall configuration tool for KDE (the K Desktop Environment) running on Linux based systems.<br />
KMyFirewall attempts to make it easier to setup IPTables based firewalls on Linux systems.<br />
It will be the right tool if you like to have a so called &#8220;Personal Firewall&#8221; running on your Linux box, but don&#8217;t have the time and/or the interest to spend hours in front of the IPTables manual just to setup a firewall that keeps the &#8220;bad&#8221; people out.<br />
<a href="http://www.kmyfirewall.org/" target="_blank">Homepage</a></p></blockquote>
<p><strong>Firewall Builder 3.0.1</strong></p>
<p>&nbsp;</p>
<p><a href="http://www.fwbuilder.org/images/screenshot1.png" target="_blanK"><img src="http://www.fwbuilder.org/images/screenshot1.png" alt="" width="420" height="400" /></a></p>
<blockquote><p>Firewall Builder is a GUI firewall configuration and management tool that supports iptables (netfilter), ipfilter, pf, ipfw, Cisco PIX (FWSM, ASA) and Cisco routers extended access lists. Firewall Builder uses object-oriented approach, it helps administrator maintain a database of network objects and allows policy editing using simple drag-and-drop operations.<br />
<a href="http://www.fwbuilder.org/" target="_blank">Homepage</a></p></blockquote>
<p><strong>DNS Flood Detector 1.12</strong></p>
<blockquote><p>DNS Flood Detector was developed to detect abusive usage levels on high traffic nameservers and to enable quick response in halting the use of one&#8217;s nameserver to facilitate spam.<br />
DNS Flood Detector uses libpcap (in non-promiscuous mode) to monitor incoming dns queries to a nameserver. The tool may be run in one of two modes, either daemon mode or &#8220;bindsnap&#8221; mode. In daemon mode, the tool will alarm via syslog. In bindsnap mode, the user is able to get near-real-time stats on usage to aid in more detailed troubleshooting.<br />
<a href="http://www.adotout.com/" target="_blank">Homepage</a></p></blockquote>
<p><strong>Endian Firewall Community 2.2 RC3</strong></p>
<blockquote><p>Endian Firewall Community is a &#8220;turn-key&#8221; linux security distribution that turns every system into a full featured security appliance with Unified Threat Management (UTM) functionality. The software has been de signed with &#8220;usability in mind&#8221; and is very easy to install, use and manage, without losing its flexibility. The features include a stateful packet inspection firewall, application-level proxies for various protocols (HTTP, FTP, POP3, SMTP) with antivirus support, virus and spamfiltering for email traffic (POP and SMTP), content filtering of Web traffic and a &#8220;hassle free&#8221; VPN solution (based on OpenVPN). The main advantage of Endian Firewall is that it is a pure &#8220;Open Source&#8221; solution that is sponsored by Endian.<br />
<a href="http://www.endian.com/" target="_blank">Homepage</a></p></blockquote>
<p><strong>pfSense Open Source Firewall Distribution</strong></p>
<blockquote><p>
pfSense is a free, open source customized distribution of FreeBSD tailored for use as a firewall and router. In addition to being a powerful, flexible firewalling and routing platform, it includes a long list of related features and a package system allowing further expandability without adding bloat and potential security vulnerabilities to the base distribution. pfSense is a popular project with more than 1 million downloads since its inception, and proven in countless installations ranging from small home networks protecting a PC and an Xbox to large corporations, universities and other organizations protecting thousands of network devices.<br />
pfSense includes most all the features in expensive commercial firewalls, and more in many cases. The following is a list of features currently available in the pfSense 1.2 release. All of these things are possible in the web interface, without touching anything at the command line.<br />
<a href="http://www.pfsense.org/" target="_blank">Homepage</a></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.novirusthanks.org/2008/10/10-linux-firewall-software-free/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

