<?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>Namesnaw Sdn Bhd</title>
	<atom:link href="http://www.namesnaw.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.namesnaw.com</link>
	<description>Company Registration # 974901-A</description>
	<lastBuildDate>Fri, 04 May 2012 07:32:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>ORACLE WON&#8217;T PATCH FOUR-YEAR-OLD ZERO-DAY IN TNS LISTENER</title>
		<link>http://www.namesnaw.com/oracle-wont-patch-four-year-old-zero-day-in-tns-listener/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=oracle-wont-patch-four-year-old-zero-day-in-tns-listener</link>
		<comments>http://www.namesnaw.com/oracle-wont-patch-four-year-old-zero-day-in-tns-listener/#comments</comments>
		<pubDate>Fri, 04 May 2012 07:32:06 +0000</pubDate>
		<dc:creator>pentadbir</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[tns]]></category>

		<guid isPermaLink="false">http://www.namesnaw.com/?p=26</guid>
		<description><![CDATA[&#160; Oracle has issued a security bulletin this week, recommending customers consider workarounds to address a long-standing zero-day vulnerability in nearly all versions of its database management system. &#160; The four-year-old Oracle database vulnerability became an issue last week when the researcher who discovered the flaw issued details and proof-of-concept code to carry out a [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p>Oracle has issued a security bulletin this week, recommending customers consider workarounds to address a long-standing zero-day vulnerability in nearly all versions of its database management system.</p>
<p>&nbsp;<br />
The four-year-old Oracle database vulnerability became an issue last week when the researcher who discovered the flaw issued details and proof-of-concept code to carry out a &#8220;TNS listener poison attack.&#8221; Joxean Koret, a security researcher based in Spain, reported the vulnerability to Oracle in 2008. According to Oracle&#8217;s blog, last week Koret, &#8220;[had] mistakenly, assuming that the issue had been backported through the CPU&#8230; fully disclosed its details.&#8221;</p>
<p><span style="font-family: Calibri;"><br />
</span></p>
<p>Read more:<br />
<a href="http://go.techtarget.com/r/17217581/992593" target="_blank"><span style="text-decoration: underline;"><span style="color: #0000ff; font-family: Calibri;">http://go.techtarget.com/r/17217581/992593</span></span></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.namesnaw.com/oracle-wont-patch-four-year-old-zero-day-in-tns-listener/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mapping PIDS to ports and vice versa in Solaris</title>
		<link>http://www.namesnaw.com/mapping-pids-to-ports-and-vice-versa-in-solaris/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mapping-pids-to-ports-and-vice-versa-in-solaris</link>
		<comments>http://www.namesnaw.com/mapping-pids-to-ports-and-vice-versa-in-solaris/#comments</comments>
		<pubDate>Thu, 26 Apr 2012 05:33:20 +0000</pubDate>
		<dc:creator>pentadbir</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[netstat]]></category>
		<category><![CDATA[redhat]]></category>
		<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false">http://www.namesnaw.com/?p=23</guid>
		<description><![CDATA[Replacement command for netstat -punat in Linux, which display pids associates with ports. Here is the script &#160; #!/usr/bin/ksh # # PCP (PID con Port) # v1.10 08/10/2010 Sam Nelson sam @ unix.ms # # If you have a Solaris 8, 9 or 10 box and you can't # install lsof, try this. It maps [...]]]></description>
			<content:encoded><![CDATA[<p>Replacement command for netstat -punat in Linux, which display pids associates with ports. Here is the script</p>
<p>&nbsp;</p>
<pre>#!/usr/bin/ksh
#
# PCP (PID con Port)
# v1.10 08/10/2010 Sam Nelson sam @ unix.ms
#
# If you have a Solaris 8, 9 or 10 box and you can't
# install lsof, try this. It maps PIDS to ports and vice versa.
# It also shows you which peers are connected on which port.
# Wildcards are accepted for -p and -P options.
#
# Many thanks Daniel Trinkle trinkle @ cs.purdue.edu
# for the help, much appreciated.
i=0
while getopts :p:P:a opt
do
case "${opt}" in
p ) port="${OPTARG}";i=3;;
P ) pid="${OPTARG}";i=3;;
a ) all=all;i=2;;
esac
done
if [ $OPTIND != $i ]
then
echo &gt;&amp;2 "usage: $0 [-p PORT] [-P PID] [-a] (Wildcards OK) "
exit 1
fi
shift `expr $OPTIND - 1`
if [ "$port" ]
then
# Enter the port number, get the PID
#
port=${OPTARG}
echo "PID\tProcess Name and Port"
echo "_________________________________________________________"
for proc in `ptree -a | awk '/ptree/ {next} {print $1};'`
do
result=`pfiles $proc 2&gt; /dev/null| egrep "port: $port$"`
if [ ! -z "$result" ]
then
program=`ps -fo comm= -p $proc`
echo "$proc\t$program\t$port\n$result"
echo "_________________________________________________________"
fi
done
elif [ "$pid" ]
then
# Enter the PID, get the port
#
pid=$OPTARG
# Print out the information
echo "PID\tProcess Name and Port"
echo "_________________________________________________________"
for proc in `ptree -a | awk '/ptree/ {next} $1 ~ /^'"$pid"'$/ {print $1};'`
do
result=`pfiles $proc 2&gt; /dev/null| egrep port:`
if [ ! -z "$result" ]
then
program=`ps -fo comm= -p $proc`
echo "$proc\t$program\n$result"
echo "_________________________________________________________"
fi
done
elif [ $all ]
then
# Show all PIDs, Ports and Peers
#
echo "PID\tProcess Name and Port"
echo "_________________________________________________________"
for proc in `ptree -a | sort -n | awk '/ptree/ {next} {print $1};'`
do
out=`pfiles $proc 2&gt;/dev/null| egrep "port:"`
if [ ! -z "$out" ]
then
name=`ps -fo comm= -p $proc`
echo "$proc\t$name\n$out"
echo "_________________________________________________________"
fi
done
fi
exit 0</pre>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.namesnaw.com/mapping-pids-to-ports-and-vice-versa-in-solaris/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Calculate your Windows Memory Usage</title>
		<link>http://www.namesnaw.com/how-to-calculate-your-windows-memory-usage/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-calculate-your-windows-memory-usage</link>
		<comments>http://www.namesnaw.com/how-to-calculate-your-windows-memory-usage/#comments</comments>
		<pubDate>Wed, 25 Apr 2012 01:30:53 +0000</pubDate>
		<dc:creator>pentadbir</dc:creator>
				<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://www.namesnaw.com/?p=18</guid>
		<description><![CDATA[p/s: Applicable to windows 2003 and below 1) Use your command prompt and type systeminfo &#124; more 2) Press &#60;enter&#62; a few times until you see this information:- Total Physical RAM Available Physical RAM PageFile In Use Formula: Total RAM usage = (Total Physical Memory – Available Physical Memory) + (Page File In Use – [...]]]></description>
			<content:encoded><![CDATA[<p>p/s: Applicable to windows 2003 and below</p>
<p>1) Use your command prompt and type systeminfo | more</p>
<p>2) Press &lt;enter&gt; a few times until you see this information:-</p>
<p>Total Physical RAM<br />
Available Physical RAM<br />
PageFile In Use</p>
<p>Formula:<br />
Total RAM usage = (Total Physical Memory – Available Physical Memory) + (Page File In Use – 250)<br />
You should always be sure to have 80-100 MB of Physical RAM over your Total RAM usage or you will experience slow response from your computer</p>
]]></content:encoded>
			<wfw:commentRss>http://www.namesnaw.com/how-to-calculate-your-windows-memory-usage/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Combating SQL Injection using htaccess</title>
		<link>http://www.namesnaw.com/combating-sql-injection-using-htaccess/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=combating-sql-injection-using-htaccess</link>
		<comments>http://www.namesnaw.com/combating-sql-injection-using-htaccess/#comments</comments>
		<pubDate>Mon, 23 Apr 2012 16:34:27 +0000</pubDate>
		<dc:creator>pentadbir</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[IT Security]]></category>

		<guid isPermaLink="false">http://www.namesnaw.com/?p=15</guid>
		<description><![CDATA[&#60;IfModule mod_rewrite.c&#62; RewriteEngine On RewriteBase / RewriteCond %{REQUEST_METHOD} ^(HEAD&#124;TRACE&#124;DELETE&#124;TRACK) [NC] RewriteRule ^(.*)$ - [F,L] RewriteCond %{QUERY_STRING} \.\.\/ [NC,OR] RewriteCond %{QUERY_STRING} boot\.ini [NC,OR] RewriteCond %{QUERY_STRING} tag\= [NC,OR] RewriteCond %{QUERY_STRING} ftp\: [NC,OR] RewriteCond %{QUERY_STRING} http\: [NC,OR] RewriteCond %{QUERY_STRING} https\: [NC,OR] RewriteCond %{QUERY_STRING} (\&#60;&#124;%3C).*script.*(\&#62;&#124;%3E) [NC,OR] RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=&#124;%3D) [NC,OR] RewriteCond %{QUERY_STRING} base64_encode.*\(.*\) [NC,OR] RewriteCond %{QUERY_STRING} ^.*(\[&#124;\]&#124;\(&#124;\)&#124;&#60;&#124;&#62;&#124;ê&#124;"&#124;;&#124;\?&#124;\*&#124;=$).* [NC,OR] RewriteCond [...]]]></description>
			<content:encoded><![CDATA[<pre>&lt;IfModule mod_rewrite.c&gt;
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_METHOD} ^(HEAD|TRACE|DELETE|TRACK) [NC]
RewriteRule ^(.*)$ - [F,L]
RewriteCond %{QUERY_STRING} \.\.\/ [NC,OR]
RewriteCond %{QUERY_STRING} boot\.ini [NC,OR]
RewriteCond %{QUERY_STRING} tag\= [NC,OR]
RewriteCond %{QUERY_STRING} ftp\:  [NC,OR]
RewriteCond %{QUERY_STRING} http\:  [NC,OR]
RewriteCond %{QUERY_STRING} https\:  [NC,OR]
RewriteCond %{QUERY_STRING} (\&lt;|%3C).*script.*(\&gt;|%3E) [NC,OR]
RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|%3D) [NC,OR]
RewriteCond %{QUERY_STRING} base64_encode.*\(.*\) [NC,OR]
RewriteCond %{QUERY_STRING} ^.*(\[|\]|\(|\)|&lt;|&gt;|ê|"|;|\?|\*|=$).* [NC,OR]
RewriteCond %{QUERY_STRING} ^.*(&amp;#x22;|&amp;#x27;|&amp;#x3C;|&amp;#x3E;|&amp;#x5C;|&amp;#x7B;|&amp;#x7C;).* [NC,OR]
RewriteCond %{QUERY_STRING} ^.*(%24&amp;x).* [NC,OR]
RewriteCond %{QUERY_STRING} ^.*(%0|%A|%B|%C|%D|%E|%F|127\.0).* [NC,OR]
RewriteCond %{QUERY_STRING} ^.*(globals|encode|localhost|loopback).* [NC,OR]
RewriteCond %{QUERY_STRING} ^.*(request|select|insert|union|declare).* [NC]
RewriteCond %{HTTP_COOKIE} !^.*wordpress_logged_in_.*$
RewriteRule ^(.*)$ - [F,L]
&lt;/IfModule&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.namesnaw.com/combating-sql-injection-using-htaccess/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

