<?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"
	>

<channel>
	<title>Ayoi's</title>
	<atom:link href="http://blog.hazrulnz.net/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.hazrulnz.net</link>
	<description>I dunno why on earth I have this blog.</description>
	<pubDate>Thu, 24 Jul 2008 04:03:40 +0000</pubDate>
	<generator>http://wordpress.org/?v=</generator>
	<language>en</language>
			<item>
		<title>SSH Brute Force..Reconnaissance or Attempted Unauthorized Access?</title>
		<link>http://blog.hazrulnz.net/813/ssh-brute-forcereconnaissance-or-attempted-unauthorized-access.html</link>
		<comments>http://blog.hazrulnz.net/813/ssh-brute-forcereconnaissance-or-attempted-unauthorized-access.html#comments</comments>
		<pubDate>Wed, 23 Jul 2008 04:50:29 +0000</pubDate>
		<dc:creator>ayoi</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[work and IT]]></category>

		<category><![CDATA[brute force]]></category>

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

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

		<guid isPermaLink="false">http://blog.hazrulnz.net/?p=813</guid>
		<description><![CDATA[ not this Brute Force

This is the big question when we try to categorized this type of attacks. Whether this SSH Brute Force attack falls under reconnaissance/scanning/information gathering or already at the exploitation phase which can be categorized as Attempted Unauthorized Access. Some said it should be categorized under Reconnaissance, while others preferred it to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/brute_force_wide.gif"><img class="alignnone size-medium wp-image-815" title="brute_force_wide" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/brute_force_wide.gif" alt="" width="150" height="116" /> not this Brute Force<br />
</a></p>
<p>This is the big question when we try to categorized this type of attacks. Whether this SSH Brute Force attack falls under reconnaissance/scanning/information gathering or already at the exploitation phase which can be categorized as Attempted Unauthorized Access. Some said it should be categorized under Reconnaissance, while others preferred it to be categorized as Attempted Unauthorized Attempt.</p>
<p><span id="more-813"></span></p>
<p><a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/recon.jpg"><img class="alignnone size-medium wp-image-816" title="recon" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/recon.jpg" alt="" width="114" height="143" /></a></p>
<p>In my opinion, both of these category can be used, however it depends on how this brute force attack was launched or performed. In other words, IF tools like Hydra, GuessWho was used then for this type of attack can be categorized as Reconnaissance/Information Gathering/Scanning.</p>
<p><a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/unauth.jpg"><img class="alignnone size-medium wp-image-817" title="unauth" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/unauth.jpg" alt="" width="112" height="130" /></a></p>
<p>Why?</p>
<p>Let do some simulation on this. The tool that I use is Hydra 5.4 running on Redhat 9. So the attacker machine is using 10.10.3.126 as its IP Address. For the target, I have to install OpenSSH for windows on my Windows 2003 Enterprise machine as I have problem with my FreeBSD&#8217;s snapshot file. Oh yes, as I need to run this simulation in controlled environment, so this simulation will be performed by my Virtual Machines in my Virtual Network. So the target (win2k3) will has 10.10.4.128 as its IP Address.</p>
<p><a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/openssh_windows.jpg"><img class="alignnone size-medium wp-image-818" title="openssh_windows" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/openssh_windows-300x69.jpg" alt="" width="300" height="69" /></a></p>
<p>Also for clarity purpose, I&#8217;ve created a user (ayoi) with the password set to &#8220;kambing&#8221; while for attacking purpose, the Hydra will use a password list created by me where it has only 3 password that are &#8220;password, password1 and kambing&#8221;. If I want to use John The Ripper password list (3107 entries for JTR 1.7), Hydra will perform 3107 login tries, with 194 tries for each of the 16 tasks (by default) and will generate 27330 packets. So with my own password list, Hydra will only perform 3 tasks,  3 login tries with 1 try per task and will only generate 76 packets which is kewl for us <img src='http://blog.hazrulnz.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>First as we want to capture the packet as well, we run our all time favourite sniffing tool;tcpdump on the attacker machine</p>
<p><em>[root@t4linux root]# tcpdump -s 0 -nn -i eth0 -w &#8220;`date +%Y-%m-%d-%H:%M`.`hostname`.pcap&#8221; host 10.10.4.128 and tcp port 22 &amp;</em></p>
<p>Then we can execute Hydra;</p>
<p><em>[root@t4linux tools]# hydra -l ayoi -P password1.lst 10.10.4.128 ssh2<br />
Hydra v5.4 (c) 2006 by van Hauser / THC - use allowed only for legal purposes.<br />
Hydra (http://www.thc.org) starting at 2008-07-22 16:39:48</em></p>
<p>Ok now is the interesting part. Remember that I said for brute force/dictionary/password guessing attacks performed via this kind of tools can be categorized as Information Gathering/Reconnaissance/Scanning? As in Hydra case, that&#8217;s what it does. It just perform (I might call it dictionary attack as well) brute force by trying to logon to the system using the combination of users and passwords listed in the defined password file. Once this tool identified the right combination of the username and password to access the system, it will disconnect itself and prompt the result either to the attacker&#8217;s console or to any defined output file.</p>
<p>Just like the example below:</p>
<p><em>[DATA] 3 tasks, 1 servers, 3 login tries (l:1/p:3), ~1 tries per task<br />
[DATA] attacking service ssh2 on port 22<br />
[STATUS] attack finished for 10.10.4.128 (waiting for childs to finish)<br />
[22][ssh2] host: 10.10.4.128   login: ayoi   password: kambing<br />
Hydra (http://www.thc.org) finished at 2008-07-22 16:39:48</em></p>
<p>Let&#8217;s analyse based on the packets generated by this activity</p>
<p>For the sake of the space in my blog, I&#8217;ll post the packets that performed successful password guessing. How do I know which one? As in the traffics, there are 3 connections initiated by the attacker where the 1st one is to test the 1st password, the second for the second password and the third one meant for the correct password (based on the password list I&#8217;ve supplied to Hydra that is).</p>
<p>Oh yeah, I will post the last 5 packets to show how Hydra will disconnecting itself when either correct or incorrect password guessed.</p>
<p>So these are the traffic tail end.</p>
<p><em>16:39:49.812628 IP 10.10.3.126.33569 &gt; 10.10.4.128.22: P 3690477673:3690477757(84) ack 1946435082 win 7904 &lt;nop,nop,timestamp 952831 14984&gt;<br />
</em></p>
<p><em>16:39:49.830210 IP 10.10.4.128.22 &gt; 10.10.3.126.33569: P 1946435082:1946435166(84) ack 3690477757 win 63671 &lt;nop,nop,timestamp 14985 952831&gt;<br />
</em></p>
<p><em>16:39:49.850464 IP 10.10.3.126.33569 &gt; 10.10.4.128.22: F 3690477757:3690477757(0) ack 1946435166 win 7904 &lt;nop,nop,timestamp 952835 14985&gt;<br />
</em></p>
<p><em>16:39:49.850698 IP 10.10.4.128.22 &gt; 10.10.3.126.33569: . ack 3690477758 win 63671 &lt;nop,nop,timestamp 14985 952835&gt;<br />
</em></p>
<p><em>16:39:49.860120 IP 10.10.4.128.22 &gt; 10.10.3.126.33569: F 1946435166:1946435166(0) ack 3690477758 win 63671 &lt;nop,nop,timestamp 14985 952835&gt;<br />
</em></p>
<p><em>16:39:49.860196 IP 10.10.3.126.33569 &gt; 10.10.4.128.22: . ack 1946435167 win 7904 &lt;nop,nop,timestamp 952836 14985&gt;</em></p>
<p>Can you see that in fact the connection terminated gracefully? Also another interesting thing is take note on the window size. Compared to normal SSH access, the default 65K size will be used especially from the requestor but in this case also similar with other scanning tools, the window size would be smaller as they don&#8217;t have any intention to establish only one session<!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves /> <w:TrackFormatting /> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF /> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> <w:SplitPgBreakAndParaMark /> <w:DontVertAlignCellWithSp /> <w:DontBreakConstrainedForcedTables /> <w:DontVertAlignInTxbx /> <w:Word11KerningPairs /> <w:CachedColBalance /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> <m:mathPr> <m:mathFont m:val="Cambria Math" /> <m:brkBin m:val="before" /> <m:brkBinSub m:val=" " /> <m:smallFrac m:val="off" /> <m:dispDef /> <m:lMargin m:val="0" /> <m:rMargin m:val="0" /> <m:defJc m:val="centerGroup" /> <m:wrapIndent m:val="1440" /> <m:intLim m:val="subSup" /> <m:naryLim m:val="undOvr" /> </m:mathPr></w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"   DefSemiHidden="true" DefQFormat="false" DefPriority="99"   LatentStyleCount="267"> <w:LsdException Locked="false" Priority="0" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Normal" /> <w:LsdException Locked="false" Priority="9" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="heading 1" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9" /> <w:LsdException Locked="false" Priority="39" Name="toc 1" /> <w:LsdException Locked="false" Priority="39" Name="toc 2" /> <w:LsdException Locked="false" Priority="39" Name="toc 3" /> <w:LsdException Locked="false" Priority="39" Name="toc 4" /> <w:LsdException Locked="false" Priority="39" Name="toc 5" /> <w:LsdException Locked="false" Priority="39" Name="toc 6" /> <w:LsdException Locked="false" Priority="39" Name="toc 7" /> <w:LsdException Locked="false" Priority="39" Name="toc 8" /> <w:LsdException Locked="false" Priority="39" Name="toc 9" /> <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption" /> <w:LsdException Locked="false" Priority="10" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Title" /> <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font" /> <w:LsdException Locked="false" Priority="11" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtitle" /> <w:LsdException Locked="false" Priority="22" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Strong" /> <w:LsdException Locked="false" Priority="20" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Emphasis" /> <w:LsdException Locked="false" Priority="59" SemiHidden="false"    UnhideWhenUsed="false" Name="Table Grid" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text" /> <w:LsdException Locked="false" Priority="1" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="No Spacing" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 1" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 1" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 1" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 1" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision" /> <w:LsdException Locked="false" Priority="34" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="List Paragraph" /> <w:LsdException Locked="false" Priority="29" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Quote" /> <w:LsdException Locked="false" Priority="30" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Quote" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 1" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 1" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 1" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 1" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 1" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 2" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 2" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 2" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 2" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 2" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 2" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 2" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 2" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 3" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 3" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 3" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 3" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 3" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 3" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 3" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 3" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 3" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 4" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 4" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 4" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 4" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 4" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 4" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 4" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 4" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 4" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 5" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 5" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 5" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 5" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 5" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 5" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 5" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 5" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 5" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 6" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 6" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 6" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 6" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 6" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 6" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 6" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 6" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 6" /> <w:LsdException Locked="false" Priority="19" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis" /> <w:LsdException Locked="false" Priority="21" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis" /> <w:LsdException Locked="false" Priority="31" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference" /> <w:LsdException Locked="false" Priority="32" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Reference" /> <w:LsdException Locked="false" Priority="33" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Book Title" /> <w:LsdException Locked="false" Priority="37" Name="Bibliography" /> <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading" /> </w:LatentStyles> </xml><![endif]--> &lt;!&#8211;  /* Font Definitions */  @font-face 	{font-family:&#8221;Cambria Math&#8221;; 	panose-1:2 4 5 3 5 4 6 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:roman; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1107304683 0 0 159 0;} @font-face 	{font-family:Calibri; 	panose-1:2 15 5 2 2 2 4 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1073750139 0 0 159 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-unhide:no; 	mso-style-qformat:yes; 	mso-style-parent:&#8221;"; 	margin-top:0in; 	margin-right:0in; 	margin-bottom:10.0pt; 	margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:&#8221;Calibri&#8221;,&#8221;sans-serif&#8221;; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:&#8221;Times New Roman&#8221;; 	mso-bidi-theme-font:minor-bidi;} .MsoChpDefault 	{mso-style-type:export-only; 	mso-default-props:yes; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:&#8221;Times New Roman&#8221;; 	mso-bidi-theme-font:minor-bidi;} .MsoPapDefault 	{mso-style-type:export-only; 	margin-bottom:10.0pt; 	line-height:115%;} @page Section1 	{size:8.5in 11.0in; 	margin:1.0in 1.0in 1.0in 1.0in; 	mso-header-margin:.5in; 	mso-footer-margin:.5in; 	mso-paper-source:0;} div.Section1 	{page:Section1;} &#8211;&gt; <!--[if gte mso 10]><br />
<mce:style><!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin-top:0in; 	mso-para-margin-right:0in; 	mso-para-margin-bottom:10.0pt; 	mso-para-margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:"Times New Roman"; 	mso-fareast-theme-font:minor-fareast; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin;} --></p>
<p><!--[endif]--><span style="font-size: 11pt; line-height: 115%; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;">. So they need to perhaps use as small as possible available buffer and this enable them to create as many sessions as possible (not only SSH sessions)</span> <img src='http://blog.hazrulnz.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Just like Nessus scanning tools from Tenable Security. It will perform vulnerability scanning activities on the systems, try to find any possible flaws and bugs that can be exploited BUT the moment it discovers any vulnerability, does Nessus continue with exploitation phase or it stopped and record the findings for the final report? So when your IDS screaming about Nessus activities, under which category these alerts will fall? Reconnaissance/Information Gathering/Scanning or Attempted Unauthorized Access?</p>
<p>However if you try to guess a system password manually, the moment you eventually managed to guess the correct combination of username and password, are you going to disconnect your self, write down the information and reconnect back later OR, you just continue using that access?</p>
<p>What category for this kind of activity will be? <img src='http://blog.hazrulnz.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hazrulnz.net/813/ssh-brute-forcereconnaissance-or-attempted-unauthorized-access.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Do your systems have Warning Banners?</title>
		<link>http://blog.hazrulnz.net/807/do-your-systems-have-warning-banners.html</link>
		<comments>http://blog.hazrulnz.net/807/do-your-systems-have-warning-banners.html#comments</comments>
		<pubDate>Tue, 22 Jul 2008 08:14:44 +0000</pubDate>
		<dc:creator>ayoi</dc:creator>
		
		<category><![CDATA[work and IT]]></category>

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

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

		<category><![CDATA[warning banners]]></category>

		<guid isPermaLink="false">http://blog.hazrulnz.net/?p=807</guid>
		<description><![CDATA[I think this is one of the most overlooked items when putting machines/systems/application on the wire. Perhaps when we build up as example a machine that will host web applications that will be offered to the public via internet, or for our business partner via extranet and perhaps for internal purpose only via Intranet, we [...]]]></description>
			<content:encoded><![CDATA[<p>I think this is one of the most overlooked items when putting machines/systems/application on the wire. Perhaps when we build up as example a machine that will host web applications that will be offered to the public via internet, or for our business partner via extranet and perhaps for internal purpose only via Intranet, we might concentrate on the auditing the source code to eliminate any possible flaws, opened ports, necessary services required to run on the machine, platform harderning and many others.</p>
<p><span id="more-807"></span></p>
<p><a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/rhs-moodpic21.jpg"><img class="alignnone size-medium wp-image-808" title="rhs-moodpic21" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/rhs-moodpic21.jpg" alt="" width="186" height="244" /></a></p>
<p>However do we ever emplace any warning banners within the main page of our authentication required web page? As example like web based email login page, business partners login page or perhaps for the general public as well when your organization offers web application services to them.</p>
<p>Why Warning Banners?</p>
<p>First of all, warning banners will limit the presumption of privacy of the users. Let say you provide a remote access services (ssh/rlogin/telnet/VPN) to your network for your staff to enable them working from remote places. It&#8217;s a good practice which will save a lot of travel time and resource mobilization. But what if some day you&#8217;ve detected that the machine that provide remote access behave strangely or you&#8217;ve discovered that some of the sensitive files have been missing/copied/transferred from the machine? So as a good security personnel you will start your investigation, analyzing the logs, collecting evidence, scrutinize the keylogger logs, performing the incident handling phases accordingly and after spent few days doing these, you&#8217;ve managed to gather all the necessary information and evidence to nail down the culprit.</p>
<p>Then you present the evidence to the HR for further action. So the HR calls the culprit, questioning him on what he has done and decided that dicipline actions will be taken against him.</p>
<p>But then the culprit says,</p>
<p>&#8220;How do I know that what I&#8217;ve done is wrong? I have a legitimate access to the machine, there&#8217;s no notice that says what I can or can not do, in fact it says</p>
<pre><code>Welcome to FreeBSD!

Before seeking technical support, please use the following resources:...."
</code></pre>
<p>Btw I didn&#8217;t know that my activities in the machine will be recorded and monitored. I think you guys have intrude my privacy and my rights on that machine.&#8221;</p>
<p>Kewl eh?</p>
<p>That&#8217;s why it is better to have a warning banner that will make the users aware about the policy of using those assets. A warning banner should inform the users that:</p>
<p>a). Authorized activity permitted by the policy on that particular machine or device.</p>
<p>b). Any abuse of usage or unauthorized activity or unauthorized access will face civil or criminal penalties.</p>
<p>c). All the activity will be monitored and will be recorded</p>
<p>d). Any possible criminal activities or evidence recorded can be submitted to the law enforcement for further actions.</p>
<p>However it is important that the words or phrases that you are going to use in the warning banners to be reviewed by the legal department and endorsed by them. Also ensure that this endorsement should be in writing so that we can record it.</p>
<p>There are many samples of this warning banners either in sense of the content or the emplacement of the banner itself. Papers like the one available at <a href="http://www.unixworks.net/papers/wp-007.pdf" target="_blank">unixwork.net titled &#8220;Login Warning Banners: A Discussion about Login/Warning Banners, Their Emplacement and Their Uses&#8221;</a> discuss on the emplacement of the warning banners, their purpose and of cause it does provide a simple how to create and emplace this banners in Windows based and Unix based operating systems.</p>
<p>So do your systems have Warning Banners?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hazrulnz.net/807/do-your-systems-have-warning-banners.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Not just a job&#8230;</title>
		<link>http://blog.hazrulnz.net/791/not-just-a-job.html</link>
		<comments>http://blog.hazrulnz.net/791/not-just-a-job.html#comments</comments>
		<pubDate>Mon, 21 Jul 2008 07:49:47 +0000</pubDate>
		<dc:creator>ayoi</dc:creator>
		
		<category><![CDATA[work and IT]]></category>

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

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

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

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

		<guid isPermaLink="false">http://blog.hazrulnz.net/?p=791</guid>
		<description><![CDATA[
Last few weeks I did a presentation on our department general work flow. I&#8217;ve prepared some presentation slides, some handouts indicates the work flow (I try my best to be as clear as possible) and everything was fine at that time. Soon afterward one of my colleagues complained that it seems that the stakeholders affected [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/img_1617.jpg"><img class="alignnone size-medium wp-image-792" title="img_1617" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/img_1617-300x225.jpg" alt="" width="228" height="171" /></a></p>
<p>Last few weeks I did a presentation on our department general work flow. I&#8217;ve prepared some presentation slides, some handouts indicates the work flow (I try my best to be as clear as possible) and everything was fine at that time. Soon afterward one of my colleagues complained that it seems that the stakeholders affected in the work flow either did not understand partially on my presentation or totally clueless on that. Hence I end up scratching my heads trying to figure out what went wrong (No wonder my CSO is having lesser hair <img src='http://blog.hazrulnz.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> )</p>
<p><span id="more-791"></span></p>
<p><a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/images.jpg"><img class="alignnone size-medium wp-image-793" title="images" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/images.jpg" alt="" width="112" height="140" /></a></p>
<p>To be honest, I am totally clueless on how to motivate this stakeholders. They are the critical elements in our department and of cause their needs are the highest priority even in my list as well. Sometimes I am puzzled by this condition, what do they want actually?</p>
<p><a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/wdyw.jpg"><img class="alignnone size-medium wp-image-794" title="wdyw" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/wdyw.jpg" alt="" width="121" height="116" /></a></p>
<p>Trainings? I&#8217;ve tried to conduct a series of training before but it turned out that most of my audience are from other department which I am grateful but deep inside a lil bit disappointed. I did ask via email on the type of training that they might required but alas, no response.</p>
<p><a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/not_responding.jpg"><img class="alignnone size-medium wp-image-796" title="not_responding" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/not_responding-300x208.jpg" alt="" width="300" height="208" /></a></p>
<p>Environment? To be honest, I&#8217;ve worked in 8 companies before and so far this is the best working environment I ever had (besides few down points but hey, every company has their own problem rite?). We have experts here (Not saying about me) and this company encourages learning environment, knowledge sharing and skills enhancement.</p>
<p><a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/cube-lg.jpg"><img class="alignnone size-medium wp-image-797" title="cube-lg" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/cube-lg-300x253.jpg" alt="" width="184" height="155" /></a> <a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/interaction.jpg"><img class="alignnone size-medium wp-image-798" title="interaction" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/interaction-300x250.jpg" alt="" width="197" height="163" /></a></p>
<p>Recently the company performed an exercise of restructuring the salary which IMO involve this stakeholders. Some of them now perhaps even getting more than what I earned. So I think this monetary factor can be discounted as well. Or maybe not.</p>
<p><a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/links-salary1.jpg"><img class="alignnone size-medium wp-image-799" title="links-salary1" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/links-salary1.jpg" alt="" width="127" height="176" /></a></p>
<p>IMO, to be success or to progress in this field, you need to have the right attitude (I think it applies to other field of works as well). Right attitude in sense of what?</p>
<p><a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/ill-right-attitude.gif"><img class="alignnone size-medium wp-image-800" title="ill-right-attitude" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/ill-right-attitude.gif" alt="" width="171" height="198" /></a></p>
<p>The first thing is passionate about the job.</p>
<p><a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/6094-img0114s.jpg"><img class="alignnone size-medium wp-image-801" title="6094-img0114s" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/6094-img0114s-300x261.jpg" alt="" width="300" height="261" /></a></p>
<p>IF you accept this job just for the sake of having a job then it won&#8217;t suit you at all. Even a structured work like accounting, you still need to have the passion. Yes accounting has its own process, its own goal but to produce the final accounts statement is not that easy. For a start just stop using the accounting application and try to produce the final accounts manually. Try to produce the Balance Sheet, the Profit and Loss account and yeah the Cash flow statement without using the application. You still need to adhere the accounting policy that your company used like the depreciation policy, the FRS (Financial Reporting Standards), the SSAP (Statement of Standard Accounting Practice). Not to mention on taxation calculations, window dressing etc. Easy?</p>
<p><a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/acct.jpg"><img class="alignnone size-medium wp-image-802" title="acct" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/acct.jpg" alt="" width="150" height="150" /></a></p>
<p>So how about being a security analyst? Easy? IMHO, the title itself requires the person to have adequate knowledge and skills in security plus you need to keep yourselves update with the current trend and technologies. Some people said doing the job is lacking hands on approach. I can&#8217;t see anything more hands on than being an analyst. Like me, from time to time I&#8217;ll study the attacks from its methodology to the impacts that it may caused by performing simulations on my *ehem old *ehem laptop and its codes (if possible). From there I will perhaps build appropriate detection mechanism (if yet available in current IDS rules), and also it can assists me when performing incident handling via advising a proper contaiment or eradication and remediation process and steps to the client.</p>
<p><a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/sa.jpg"><img class="alignnone size-medium wp-image-803" title="sa" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/sa.jpg" alt="" width="146" height="97" /></a></p>
<p>Also from time to time I will study the current and future technology that might be useful for our future solutions and developments.</p>
<p>Again if you keep giving excuses on performing your tasks, perhaps you should ask yourselves whether you are in the right profession because for me, it doesn&#8217;t matter what you want to be, if you don&#8217;t have the right attitude, don&#8217;t have the career goals then perhaps you will going nowhere.</p>
<p><a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/stop_making_excuses2.jpg"><img class="alignnone size-medium wp-image-804" title="stop_making_excuses2" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/stop_making_excuses2-300x225.jpg" alt="" width="222" height="166" /></a></p>
<p>Because if this guy with only SPM as his paper credential can do it, why can&#8217;t you?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hazrulnz.net/791/not-just-a-job.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>A good sign eh?</title>
		<link>http://blog.hazrulnz.net/788/a-good-sign-eh.html</link>
		<comments>http://blog.hazrulnz.net/788/a-good-sign-eh.html#comments</comments>
		<pubDate>Fri, 18 Jul 2008 09:07:58 +0000</pubDate>
		<dc:creator>ayoi</dc:creator>
		
		<category><![CDATA[work and IT]]></category>

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

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

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

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

		<guid isPermaLink="false">http://blog.hazrulnz.net/?p=788</guid>
		<description><![CDATA[
Well my itchy fingers playing around the courses offered by SANS and GIAC. And then out of curiosity I just access the demo of SANS on Demand for the course 517: Cutting Edge Hacking Techniques. It is just a demo and I can see the glimpse of what the course will cover for 2 days. [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/on_demand.jpg"><img class="size-medium wp-image-789 aligncenter" title="on_demand" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/on_demand-300x232.jpg" alt="" width="300" height="232" /></a></p>
<p>Well my itchy fingers playing around the courses offered by <a href="http://www.sans.org" target="_blank">SANS</a> and <a href="http://www.giac.org" target="_blank">GIAC</a>. And then out of curiosity I just access the demo of <a href="http://www.sans.org/ondemand/" target="_blank">SANS on Demand</a> for the course <a href="http://www.giac.org/star/security/517.php" target="_blank">517: Cutting Edge Hacking Techniques</a>. It is just a demo and I can see the glimpse of what the course will cover for 2 days. Basically I think it is extention of the course that I&#8217;ve taken, <a href="http://www.sans.org/training/description.php?mid=40" target="_blank">Hacker Techniques, Exploits and Incident Handling</a> where IF I passed the exam, then I will be a <a href="http://www.giac.org/certifications/security/gcih.php" target="_blank">GIAC (Global Information Assurance Certification) Certified Incident Handler -GCIH</a>.</p>
<p>So this <a href="http://www.sans.org/ondemand/" target="_blank">on-demand course </a>demo let me accessed 2 sets of slides that covers 2 topics and the assessment will be done on the second topics. To be honest, the questions are not that difficult but you might failed the assessment once you DID NOT look carefully. <img src='http://blog.hazrulnz.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Oh yeah, you need an account at <a href="https://portal.sans.org" target="_blank">SANS Portal</a> to access the demo btw.</p>
<p>So hopefully I will get the real certification later on <img src='http://blog.hazrulnz.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hazrulnz.net/788/a-good-sign-eh.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>What is another sensor?</title>
		<link>http://blog.hazrulnz.net/780/what-is-another-sensor.html</link>
		<comments>http://blog.hazrulnz.net/780/what-is-another-sensor.html#comments</comments>
		<pubDate>Thu, 17 Jul 2008 08:32:51 +0000</pubDate>
		<dc:creator>ayoi</dc:creator>
		
		<category><![CDATA[work and IT]]></category>

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

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

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

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

		<guid isPermaLink="false">http://blog.hazrulnz.net/?p=780</guid>
		<description><![CDATA[Oh yeah, while having a light drink with my colleagues discussing about the current problems that we faced and the required solutions, one of my colleagues provide one good story which IMHO enlighten our mood for the day. The story is like this.
He went for interview for a Firewall Analyst at one of the Multinational [...]]]></description>
			<content:encoded><![CDATA[<p>Oh yeah, while having a light drink with my colleagues discussing about the current problems that we faced and the required solutions, one of my colleagues provide one good story which IMHO enlighten our mood for the day. The story is like this.</p>
<p>He went for interview for a Firewall Analyst at one of the Multinational Companies here in Malaysia. During the interview, he was asked by one of the interviewers this question,</p>
<p><strong>&#8220;Besides snort, can you give another example of sensor?&#8221;</strong></p>
<p><span id="more-780"></span></p>
<p>Well first, that kind of question is very very confusing and not that clear. Does the interviewer means another IDS application? or another appliance or the location of the sensors?</p>
<p style="text-align: center;"><a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/confuse.jpg"><img class="size-medium wp-image-781 aligncenter" title="confuse" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/confuse.jpg" alt="" width="116" height="116" /></a></p>
<p>So my collegue blurt out all the possible answers that perhaps might be able to answer the question ranging from the IDS applications up to the sensors emplacement in the network but still the answers that he gave are wrong.</p>
<p><a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/snob.jpg"><img class="alignnone size-medium wp-image-782" title="snob" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/snob-214x300.jpg" alt="" width="153" height="214" /></a></p>
<p>Giving up, my colleague eagerly waiting for the exact answer that the interviewer is looking for. So with the snobbish face (because of my colleague failure to answer his question) he said,</p>
<p>&#8220;The other sensor that I meant is <strong><a href="http://en.wikipedia.org/wiki/Promiscuous_mode" target="_blank">PROMISCUOUS</a>!</strong>&#8221;</p>
<p><a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/dsc00420.jpg"><img class="alignnone size-medium wp-image-783" title="dsc00420" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/dsc00420-300x225.jpg" alt="" width="214" height="160" /></a></p>
<p>yeah, it is shocking and UNBELIEVABLE</p>
<p>Well I guess ..</p>
<p><a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/stupid.jpg"><img class="alignnone size-medium wp-image-784" title="stupid" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/stupid-300x299.jpg" alt="" width="300" height="299" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hazrulnz.net/780/what-is-another-sensor.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Debate&#8230; What are you thinking?</title>
		<link>http://blog.hazrulnz.net/770/debate-what-are-you-thinking.html</link>
		<comments>http://blog.hazrulnz.net/770/debate-what-are-you-thinking.html#comments</comments>
		<pubDate>Wed, 16 Jul 2008 08:59:51 +0000</pubDate>
		<dc:creator>ayoi</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[anwar ibrahim]]></category>

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

		<category><![CDATA[sabery chik]]></category>

		<guid isPermaLink="false">http://blog.hazrulnz.net/?p=770</guid>
		<description><![CDATA[
I seldom post any politics related topics in this blog as I am more bipartisan type of guy plus I dun want this blog to be a political blog. But as yesterday, for the first time in Malaysian Political history, a debate session between an opposition political leader and a representative of the government on [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/debat.jpg"><img class="alignnone size-medium wp-image-779 aligncenter" title="debat" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/debat-300x154.jpg" alt="" width="275" height="142" /></a></p>
<p>I seldom post any politics related topics in this blog as I am more bipartisan type of guy plus I dun want this blog to be a political blog. But as yesterday, for the first time in Malaysian Political history, a debate session between an opposition political leader and a representative of the government on the issue of fuel hike was held. To be honest, the theme of the debate is about the promise by the opposition coalition that once they assume the federal power then the price of the fuel will be reduced on the next day.</p>
<p><span id="more-770"></span></p>
<p><a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/anwar.jpg"><img class="alignnone size-medium wp-image-771" title="anwar" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/anwar-300x254.jpg" alt="" width="201" height="170" /></a></p>
<p>Never mind that the opposition leader is Dato&#8217; Seri Anwar Ibrahim who was known for his oratory capability that able to mesmerize the audience either local or international.</p>
<p><a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/utusan1.jpg"><img class="alignnone size-medium wp-image-774" title="utusan1" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/utusan1-250x300.jpg" alt="" width="175" height="210" /></a></p>
<p>Never mind about that Dato&#8217; Seri Anwar Ibrahim was a former collegian of Malay College Kuala Kangsar, the same school I spent my 5 youth years.</p>
<p><a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/reformasi.gif"><img class="alignnone size-medium wp-image-773" title="reformasi" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/reformasi-240x300.gif" alt="" width="153" height="191" /></a></p>
<p>Never mind that during the &#8220;reformasi&#8221; years, I used to hang a small tag that has a picture of Dato&#8217; Seri Anwar and a word &#8220;REFORMASI&#8221; in my car.</p>
<p><a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/mckk.jpg"><img class="alignnone size-medium wp-image-772" title="mckk" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/mckk-300x86.jpg" alt="" width="300" height="86" /></a></p>
<p>Never mind that (I suspect) because of the MCKK background, the sodomy charges on Dato&#8217; Seri Anwar is looked like legitimate for &#8220;them&#8221;.</p>
<p><a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/shabery.jpg"><img class="alignnone size-medium wp-image-775" title="shabery" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/shabery.jpg" alt="" width="130" height="184" /></a></p>
<p>But the main thing here is how Dato&#8217; Seri Anwar can at least explain his stand/promise/mechanism/methods of reducing the fuel price and how the government, represented by the Minister of Information, Dato&#8217; Ahmad Shabery Chik explain to the people why the government need to increase 40%+ of the fuel price.</p>
<p>So me and wifey watched this historical debate at one of the mamak&#8217;s restaurants at Kinrara. And the crowd is surprisingly (not surprisingly la) overwhelmed the tables and chairs and the restaurant workers have to take our their &#8220;spare&#8221; tables and chairs.</p>
<p><a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/img_5127.jpg"><img class="alignnone size-medium wp-image-776" title="img_5127" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/img_5127-300x200.jpg" alt="" width="273" height="182" /></a></p>
<p>Of cause, I am expecting a very intellectual debate where each speaker or panellist will support his argument with facts and figures because as Dato&#8217; Seri Anwar Ibrahim is a former Finance Minister and former Deputy Prime Minister, he has the inside knowledge on how government do their work while as for Dato&#8217; Ahmad Shabery Chik, he can request all the information needed that can be used in his arguments.</p>
<p><a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/anwar1.jpg"><img class="alignnone size-medium wp-image-777" title="anwar1" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/anwar1-195x300.jpg" alt="" width="195" height="300" /></a></p>
<p>Throughout the debate, it seems Dato&#8217; Seri Anwar Ibrahim never failed my expectation. Of cause because he&#8217;s a seasoned politician, know when to sooth the crowd, how to express or convey his points in short period of time and how to act respectable during the session. I guess his debating experience during his school days is very valuable. Even though he didn&#8217;t elaborate his plan in details, but the idea on how to help reducing the burden of the people is doable and logic. And throughout the debate session itself the main points emphasised by the former Deputy Prime Minister are the sudden price hike is burdening the people, the importance of optimizing national resources (optimizing and not wasting) and the needs to identify the economy leakages and perform the immediate remediation. Of cause this fall under the government responsibilities.</p>
<p><a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/shabery-1.jpg"><img class="alignnone size-medium wp-image-778" title="shabery-1" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/shabery-1-198x300.jpg" alt="" width="198" height="300" /></a></p>
<p>And to be honest, I am totally disappointed with the performance of the Information Minister. You have around 4-5 minutes to explain to the people on government stance and justification for the price hike but instead you wasting those time by attacking your counterpart personality, history and past. We are not wasting 1 hour to hear that and if I want to know that, I&#8217;d rather read politics blogs. You spent most of the time evading from answering the question by (sometimes) even mumbling about other non related things.</p>
<p>As example, you said the former DPM was a firebrand student who critize everbody back in 1974 and promotes street demonstrations which is not our culture. Well if I&#8217;m not mistaken, when the British plan to introduce Malayan Union, our forefathers express their disagreement via demonstrations. Why? Because it seems at that day, the British did not (or pretending) to listen the people&#8217;s opinions. So they bring it on the streets nationwide which in the end the British has to listen. Well, are our government listening to our voices?</p>
<p>What can I conclude from the debate?</p>
<p>a). Dato&#8217; Seri Anwar&#8217;s plan will only become a plan. I dun think our government is listening</p>
<p>b). It seems like this debate was held to attack on Anwar&#8217;s character nationwide</p>
<p>c). How can our Information minister sounds like misinformed minister?</p>
<p>d). It doesn&#8217;t matter if you opponent is a seasoned politician or a school boy, you need to prepare with adequate information as your arsenal. Stay focus on the topic and PLEASE answer the damned questions.</p>
<p>e). Now I know why most of our graduates are unemployed or non competent. Just look at the Advisor to the Information Minister. I am embarrassed.</p>
<p>Unbelievable.. <img src='http://blog.hazrulnz.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>p/s: Anyway to Dato&#8217; Ahmad Shabery Chik, I take my hat off for you as at least you have the courage to have a debate with a more senior, more seasoned politician, compared to your bosses ;P</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hazrulnz.net/770/debate-what-are-you-thinking.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Congratulations to my friends</title>
		<link>http://blog.hazrulnz.net/765/congratulations-to-my-friends.html</link>
		<comments>http://blog.hazrulnz.net/765/congratulations-to-my-friends.html#comments</comments>
		<pubDate>Mon, 14 Jul 2008 03:33:01 +0000</pubDate>
		<dc:creator>ayoi</dc:creator>
		
		<category><![CDATA[work and IT]]></category>

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

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

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

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

		<guid isPermaLink="false">http://blog.hazrulnz.net/?p=765</guid>
		<description><![CDATA[
First of all, I would like to congratulate my friend, mr geek00l and mel (I believe he is one of the brains behind the company as well  ) on the establishment of their new company Defcraft SDN. BHD. Well we can call them the young technopreneur and of cause professionally, Defcraft will become one [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/defcraft-logo-final.gif"><img class="alignnone size-medium wp-image-766 alignleft" style="float: left;" title="defcraft-logo-final" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/defcraft-logo-final-300x33.gif" alt="" width="300" height="33" /></a></p>
<p>First of all, I would like to congratulate my friend, <a href="http://geek00l.blogspot.com" target="_blank">mr geek00l</a> and mel (I believe he is one of the brains behind the company as well <img src='http://blog.hazrulnz.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> ) on the establishment of their new company <a href="http://www.defcraft.net/" target="_blank">Defcraft SDN. BHD</a>. Well we can call them the young technopreneur and of cause professionally, <a href="http://www.defcraft.net/" target="_blank">Defcraft </a>will become one of the competitors for the <a href="http://www.scan-associates.net" target="_blank">company that I work currently</a> as well. Anyway I wish them all the best and a very good luck. Competition aside, they still one of my friends in this industry and I still hope that we still can share few things tho <img src='http://blog.hazrulnz.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/botnet.gif"><img class="alignnone size-medium wp-image-767" title="botnet" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/botnet-300x247.gif" alt="" width="158" height="129" /></a></p>
<p>Well I guess in this industry, the best way is to share our knowledge, skills and methodologies to fend off any cyber attacks and the emerging of new threats and attack trends. IMHO, nowadays the main worry is how can we really mitigate the client side attacks. BOTnets are becoming more and more serious, when usually we just gathered few eggdrops to dos certain users in IRC channels, then it evolves to perform a larger scale of attacks to the IRC servers as well, and I do believe this kind attacks have financial motivation behind it. Now, with the emergence of RBN model, these bots are more than an attack tool but it become as advertising tool in form of spamming and others. And yes, nowadays it is totally about money.</p>
<p><a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/hacker2.png"><img class="alignnone size-medium wp-image-768" title="hacker2" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/hacker2-300x232.png" alt="" width="161" height="124" /></a></p>
<p>I used to agree that we should educate the managers instead of users but now, I think we need to educate both of them. Policies will become useless when nobody appears to adhere them. So for that I do believe we, the so called security professionals need to work together in order to at least minimize the impact or mitigate the risk of this type of attacks. Possible?</p>
<p>On the other hand, my company seems to perform some good exercise which will make certain quaters of the stakeholders more than happy. Even though personally I am not affected by this exercise but I do welcome it as it shows that the wind of change finally arrived <img src='http://blog.hazrulnz.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Again congratulations to <a href="http://security.org.my" target="_blank">my friends</a> and perhaps someday we can have TT together eh?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hazrulnz.net/765/congratulations-to-my-friends.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Spot the difference</title>
		<link>http://blog.hazrulnz.net/763/spot-the-difference.html</link>
		<comments>http://blog.hazrulnz.net/763/spot-the-difference.html#comments</comments>
		<pubDate>Fri, 11 Jul 2008 11:04:18 +0000</pubDate>
		<dc:creator>ayoi</dc:creator>
		
		<category><![CDATA[work and IT]]></category>

		<category><![CDATA[brute force]]></category>

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

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

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

		<guid isPermaLink="false">http://blog.hazrulnz.net/?p=763</guid>
		<description><![CDATA[
Don&#8217;t worry, it is not about my twin btw.
Can you spot the difference (especially in sense of the traffic behavior) of this two packet captured files?
I use windump on my Windows XP machine and the command I executed to produce these outputs is
wd -Snnr packet_capture_file.pcap dst port 22
Packet Capture 1
20:25:00.696718 IP 192.168.4.128.1813 &#62; 192.168.4.126.22: S [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/dsc00303.jpg"><img class="alignnone size-medium wp-image-764" title="dsc00303" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/dsc00303-300x225.jpg" alt="" width="224" height="168" /></a></p>
<p><em>Don&#8217;t worry, it is not about my twin btw.</em></p>
<p>Can you spot the difference (especially in sense of the traffic behavior) of this two packet captured files?</p>
<p>I use windump on my Windows XP machine and the command I executed to produce these outputs is</p>
<p><strong>wd -Snnr packet_capture_file.pcap dst port 22</strong></p>
<p><span style="text-decoration: underline;"><strong>Packet Capture 1</strong></span></p>
<p><em>20:25:00.696718 IP 192.168.4.128.1813 &gt; 192.168.4.126.22: S 2151807408:2151807408(0) win 65535 &lt;mss 1460,nop,wscale 1,nop,nop,sackOK&gt;</em></p>
<p><em>20:25:00.698859 IP 192.168.4.128.1813 &gt; 192.168.4.126.22: . ack 1369704931 win 64000</em></p>
<p><em>20:25:00.751279 IP 192.168.4.128.1813 &gt; 192.168.4.126.22: P 2151807409:2151807437(28) ack 1369704970 win 63980</em></p>
<p><em>20:25:00.760521 IP 192.168.4.128.1813 &gt; 192.168.4.126.22: P 2151807437:2151807941(504) ack 1369705706 win 63612</em></p>
<p><em>20:25:00.760616 IP 192.168.4.128.1813 &gt; 192.168.4.126.22: P 2151807941:2151807957(16) ack 1369705706 win 63612</em></p>
<p><em>20:25:00.900008 IP 192.168.4.128.1813 &gt; 192.168.4.126.22: P 2151807957:2151808229(272) ack 1369705986 win 63472</em></p>
<p><em>20:25:01.094824 IP 192.168.4.128.1813 &gt; 192.168.4.126.22: P 2151808229:2151808245(16) ack 1369706770 win 64000</em></p>
<p><em>20:25:01.095211 IP 192.168.4.128.1813 &gt; 192.168.4.126.22: P 2151808245:2151808297(52) ack 1369706770 win 64000</em></p>
<p><em>20:25:01.211169 IP 192.168.4.128.1813 &gt; 192.168.4.126.22: . ack 1369706822 win 63974</em></p>
<p><em>20:25:06.746347 IP 192.168.4.128.1813 &gt; 192.168.4.126.22: P 2151808297:2151808365(68) ack 1369706822 win 63974</em></p>
<p><em>20:25:07.627074 IP 192.168.4.128.1813 &gt; 192.168.4.126.22: P 2151808365:2151808465(100) ack 1369706890 win 63940</em></p>
<p><em>20:25:07.747682 IP 192.168.4.128.1813 &gt; 192.168.4.126.22: . ack 1369706958 win 63906</em></p>
<p><em>20:25:09.354328 IP 192.168.4.128.1813 &gt; 192.168.4.126.22: P 2151808465:2151808741(276) ack 1369706958 win 63906</em></p>
<p><em>20:25:09.361925 IP 192.168.4.128.1813 &gt; 192.168.4.126.22: P 2151808741:2151808841(100) ack 1369707026 win 63872</em></p>
<p><em>20:25:09.559764 IP 192.168.4.128.1813 &gt; 192.168.4.126.22: . ack 1369707094 win 63838</em></p>
<p><em>20:25:11.762118 IP 192.168.4.128.1813 &gt; 192.168.4.126.22: P 2151808841:2151809117(276) ack 1369707094 win 63838</em></p>
<p><em>20:25:11.768410 IP 192.168.4.128.1813 &gt; 192.168.4.126.22: P 2151809117:2151809217(100) ack 1369707162 win 63804</em></p>
<p><em>20:25:11.973704 IP 192.168.4.128.1813 &gt; 192.168.4.126.22: . ack 1369707230 win 63770</em></p>
<p><em>20:25:13.357811 IP 192.168.4.128.1813 &gt; 192.168.4.126.22: P 2151809217:2151809493(276) ack 1369707230 win 63770</em></p>
<p><em>20:25:13.365031 IP 192.168.4.128.1813 &gt; 192.168.4.126.22: P 2151809493:2151809593(100) ack 1369707298 win 63736</em></p>
<p><em>20:25:13.482591 IP 192.168.4.128.1813 &gt; 192.168.4.126.22: . ack 1369707366 win 63702</em></p>
<p><em>20:25:14.856313 IP 192.168.4.128.1813 &gt; 192.168.4.126.22: F 2151809593:2151809593(0) ack 1369707366 win 63702</em></p>
<p><em>20:25:14.864991 IP 192.168.4.128.1813 &gt; 192.168.4.126.22: . ack 1369707367 win 63702</em></p>
<p><span style="text-decoration: underline;"><strong>Packet Capture 2</strong></span></p>
<p><em>16:30:59.167586 IP 192.168.2.8.32862 &gt; 192.168.2.9.22: S 1789751218:1789751218(0) win 5840 &lt;mss 1460,sackOK,timestamp 25550657 0,nop,wscale 2&gt;</em></p>
<p><em>16:30:59.168266 IP 192.168.2.8.32862 &gt; 192.168.2.9.22: . ack 1673969780 win 1460 &lt;nop,nop,timestamp 25550658 20899740&gt;</em></p>
<p><em>16:30:59.194809 IP 192.168.2.8.32862 &gt; 192.168.2.9.22: . ack 1673969800 win 1460 &lt;nop,nop,timestamp 25550659 20899766&gt;</em></p>
<p><em>16:30:59.194814 IP 192.168.2.8.32862 &gt; 192.168.2.9.22: P 1789751219:1789751240(21) ack 1673969800 win 1460 &lt;nop,nop,timestamp 25550659 20899766&gt;</em></p>
<p><em>16:30:59.203125 IP 192.168.2.8.32862 &gt; 192.168.2.9.22: P 1789751240:1789751392(152) ack 1673970440 win 1780 &lt;nop,nop,timestamp 25550660 20899774&gt;</em></p>
<p><em>16:30:59.210623 IP 192.168.2.8.32863 &gt; 192.168.2.9.22: S 1783492046:1783492046(0) win 5840 &lt;mss 1460,sackOK,timestamp 25550662 0,nop,wscale 2&gt;</em></p>
<p><em>16:30:59.210642 IP 192.168.2.8.32864 &gt; 192.168.2.9.22: S 1787890826:1787890826(0) win 5840 &lt;mss 1460,sackOK,timestamp 25550663 0,nop,wscale 2&gt;</em></p>
<p><em>16:30:59.210647 IP 192.168.2.8.32865 &gt; 192.168.2.9.22: S 1788072431:1788072431(0) win 5840 &lt;mss 1460,sackOK,timestamp 25550664 0,nop,wscale 2&gt;</em></p>
<p><em>16:30:59.212077 IP 192.168.2.8.32863 &gt; 192.168.2.9.22: . ack 1687906519 win 1460 &lt;nop,nop,timestamp 25550665 20899783&gt;</em></p>
<p><em>16:30:59.238583 IP 192.168.2.8.32864 &gt; 192.168.2.9.22: . ack 1678854406 win 1460 &lt;nop,nop,timestamp 25550665 20899784&gt;</em></p>
<p><em>16:30:59.238588 IP 192.168.2.8.32865 &gt; 192.168.2.9.22: . ack 1673861893 win 1460 &lt;nop,nop,timestamp 25550665 20899784&gt;</em></p>
<p><em>16:30:59.238592 IP 192.168.2.8.32863 &gt; 192.168.2.9.22: . ack 1687906539 win 1460 &lt;nop,nop,timestamp 25550666 20899810&gt;</em></p>
<p><em>16:30:59.238596 IP 192.168.2.8.32863 &gt; 192.168.2.9.22: P 1783492047:1783492068(21) ack 1687906539 win 1460 &lt;nop,nop,timestamp 25550666 20899810&gt;</em></p>
<p><em>16:30:59.238600 IP 192.168.2.8.32866 &gt; 192.168.2.9.22: S 1780193083:1780193083(0) win 5840 &lt;mss 1460,sackOK,timestamp 25550667 0,nop,wscale 2&gt;</em></p>
<p><em>16:30:59.238604 IP 192.168.2.8.32867 &gt; 192.168.2.9.22: S 1781912197:1781912197(0) win 5840 &lt;mss 1460,sackOK,timestamp 25550668 0,nop,wscale 2&gt;</em></p>
<p><em>16:30:59.280609 IP 192.168.2.8.32866 &gt; 192.168.2.9.22: . ack 1685157275 win 1460 &lt;nop,nop,timestamp 25550668 20899812&gt;</em></p>
<p><em>16:30:59.280614 IP 192.168.2.8.32867 &gt; 192.168.2.9.22: . ack 1686380212 win 1460 &lt;nop,nop,timestamp 25550669 20899812&gt;</em></p>
<p><em>16:30:59.280619 IP 192.168.2.8.32868 &gt; 192.168.2.9.22: S 1786479460:1786479460(0) win 5840 &lt;mss 1460,sackOK,timestamp 25550670 0,nop,wscale 2&gt;</em></p>
<p><em>16:30:59.280623 IP 192.168.2.8.32862 &gt; 192.168.2.9.22: P 1789751392:1789751536(144) ack 1673970440 win 1780 &lt;nop,nop,timestamp 25550670 20899816&gt;</em></p>
<p><em>16:30:59.280627 IP 192.168.2.8.32864 &gt; 192.168.2.9.22: . ack 1678854426 win 1460 &lt;nop,nop,timestamp 25550670 20899837&gt;</em></p>
<p><em>16:30:59.280631 IP 192.168.2.8.32864 &gt; 192.168.2.9.22: P 1787890827:1787890848(21) ack 1678854426 win 1460 &lt;nop,nop,timestamp 25550670 20899837&gt;</em></p>
<p><em>16:30:59.280635 IP 192.168.2.8.32865 &gt; 192.168.2.9.22: . ack 1673861913 win 1460 &lt;nop,nop,timestamp 25550671 20899851&gt;</em></p>
<p><em>16:30:59.280639 IP 192.168.2.8.32865 &gt; 192.168.2.9.22: P 1788072432:1788072453(21) ack 1673861913 win 1460 &lt;nop,nop,timestamp 25550671 20899851&gt;</em></p>
<p><em>16:30:59.280643 IP 192.168.2.8.32863 &gt; 192.168.2.9.22: P 1783492068:1783492220(152) ack 1687907179 win 1780 &lt;nop,nop,timestamp 25550671 20899849&gt;</em></p>
<p>There are some significant differences between those two packets and from the pattern itself we can probably identify what happen on trace 1 and trace 2.</p>
<p>So what do you think?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hazrulnz.net/763/spot-the-difference.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Interviews, Analyst and other stuff..</title>
		<link>http://blog.hazrulnz.net/761/interviews-analyst-and-other-stuff.html</link>
		<comments>http://blog.hazrulnz.net/761/interviews-analyst-and-other-stuff.html#comments</comments>
		<pubDate>Fri, 11 Jul 2008 05:13:12 +0000</pubDate>
		<dc:creator>ayoi</dc:creator>
		
		<category><![CDATA[work and IT]]></category>

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

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

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

		<guid isPermaLink="false">http://blog.hazrulnz.net/?p=761</guid>
		<description><![CDATA[
I dun have any appropriate post topic actually but let me sums up whatever that I have in my head.
For yesterday&#8217;s interview, like I&#8217;ve mentioned in my previous post, I didn&#8217;t expect too much and boy it helps. On the happy note, most of the candidates show a lot of passion and it seems that [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/what-to-do-pops-x.jpg"><img class="alignnone size-medium wp-image-762" title="what-to-do-pops-x" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/what-to-do-pops-x-300x232.jpg" alt="" width="192" height="149" /></a></p>
<p>I dun have any appropriate post topic actually but let me sums up whatever that I have in my head.</p>
<p>For yesterday&#8217;s interview, like I&#8217;ve mentioned in my previous post, I didn&#8217;t expect too much and boy it helps. On the happy note, most of the candidates show a lot of passion and it seems that they have the right attitude to be in this industry but perhaps because whenever you are in an interview, you will try your best to project that you ARE the suitable candidate and you DO HAVE the right attitude rite? But as I am a good person, I just give good recommendation for the higher management to decide. Sad note? I think it is better for me to keep it to myself.</p>
<p>On the other hand, I think I am getting more and more macro view on overall picture of my current work. It seems that I (think) managed to pull all the strings together. Use other information to relate on my current work and managed somehow to see the bigger picture. Even though I have to admit that I do miss doing some full blown tasks like research and learning on new things fully (not on ad hoc basis), reading properly (like my assembly thingy) but somehow I think I can live with that for now. I&#8217;ve downloaded all the packets listed in the openpacket.org but for now that&#8217;s all. Hope I can play with those later on and still not yet finish with those brute force thingy.</p>
<p>Hopefully I can finally managed to do all the stuff that I love to do but for now, I think I am doing just fine.</p>
<p>Ahh.. I&#8217;ve notice that my poyo <a href="http://http://blog.hazrulnz.net/567/interview-the-outcome.html" target="_blank">interview questions</a> attract <a href="http://nickkhor.spaces.live.com/blog/cns!10A58F7C2B159DB8!1748.entry" target="_blank">some interest here</a>. Unfortunately the reply is not that accurate. So let me ellaborate or just giving the answer here.</p>
<p><strong>Q1: If I ping from host A to host B, using ICMP Type 8 code 0, this ICMP packet will goes to which port?</strong></p>
<p>A1: No port. The ICMP protocol structure didn&#8217;t has any port field in it. The message or the code and types will be processed by the receiving machines and appropriate response will be given.</p>
<p><strong>Q2: Based on this information=<a title="handshake2.txt" href="../wp-content/uploads/2008/03/handshake2.txt">handshake2.txt</a> point out the handshake packets.</strong></p>
<p>A2: Packet 7, packet 9 and packet 10. Take note on the TCP Control Flags AND the<strong> </strong>Sequence Numbers.</p>
<p><strong>Q3: What kind of event that you can derive from this trace file :<a title="trace1.pdf" href="../wp-content/uploads/2008/03/trace1.pdf">trace1.pdf</a></strong></p>
<p>A3: Port Scanning using SYN flag or nmap -sS.</p>
<p><strong>Q4: And what kind of event that you can derive from this trace file? :  <a title="trace2.pdf" href="../wp-content/uploads/2008/03/trace2.pdf">trace2.pdf</a></strong></p>
<p>A4: SYN FLOOD. I used hping2 to create this packet. SO what&#8217;s the diff with trace1? Scanning is a form of information gathering, meaning you need to know and receive the response from the targeted machine. While when flooding a system, you DO NOT WANT its responses. <img src='http://blog.hazrulnz.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Q5: Based on this alerts information :<a title="alerts.pdf" href="../wp-content/uploads/2008/03/alerts.pdf">alerts.pdf</a> ,  can you identify any possible irregular behaviour  of the traffic?(<a title="traffic_a.pdf" href="../wp-content/uploads/2008/03/traffic_a.pdf">traffic_a.pdf)</a></strong></p>
<p>A5: Possibly that the 443 port was used for other means. HTTPS channel is an encrypted channel and there&#8217;s no way IDS (without any SSL terminator/SSL proxy/SSL Accelerator used) can observe its traffic and subsequently produce alerts. And yes, when you can see uid=0 and guid=0 in a suppose encrypted channel, you need to investigate further.</p>
<p><strong>Q6: With the existence of IPS, what do you think on the relevance of IDS</strong></p>
<p>A6: This is merely an opinion question, so IMHO, the IDS is still relevant as in sense of deployment, IPS is more inline device which need to have super correct detection/prevention rules or zero false positive rules. In this perspective, most of the time, only confirmed, selective rules will be implemented. While IDS is a passive device which will never interrupts the network flow. So when an attack which the IPS rules didn&#8217;t recognized or filtered (due to false positive risk), the IDS will become the safety net (in sense of alerting for investigation). I&#8217;ve posted many times on this matter so I won&#8217;t ellaborate more.</p>
<p>So that&#8217;s it. <img src='http://blog.hazrulnz.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hazrulnz.net/761/interviews-analyst-and-other-stuff.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Another interview..And good luck!</title>
		<link>http://blog.hazrulnz.net/756/another-interviewand-good-luck.html</link>
		<comments>http://blog.hazrulnz.net/756/another-interviewand-good-luck.html#comments</comments>
		<pubDate>Wed, 09 Jul 2008 08:21:27 +0000</pubDate>
		<dc:creator>ayoi</dc:creator>
		
		<category><![CDATA[work and IT]]></category>

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

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

		<category><![CDATA[security analyst]]></category>

		<guid isPermaLink="false">http://blog.hazrulnz.net/?p=756</guid>
		<description><![CDATA[
Yes, my HOD asked me to conduct an interview session tomorrow for Security Analyst posts available here. Well as usual I&#8217;ve prepared a series of questions to ask the candidates. And no, I wont reveal the questions here. It is not that I dun want to be called &#8220;poyo&#8221; again but I think this time [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/timemachine.gif"><img class="alignnone size-medium wp-image-757" title="timemachine" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/timemachine-300x231.gif" alt="" width="300" height="231" /></a><a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/qsa-small.jpg"><img class="alignnone size-medium wp-image-759" title="qsa-small" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/qsa-small.jpg" alt="" width="125" height="163" /></a></p>
<p>Yes, my HOD asked me to conduct an interview session tomorrow for Security Analyst posts available here. Well as usual I&#8217;ve prepared a series of questions to ask the candidates. And no, I wont reveal the questions here. It is not that I dun want to be called &#8220;poyo&#8221; again but I think this time the questions will be really really really easy and very basic. No tcpdump output stuff, no incident identification from packet dumps, no snort alerts interpretation stuff, and no more on what-do-you-think-about-IDS-IPS-stuff either. What&#8217;s the point of asking those questions when I know 90% of the candidates will possible failed to answer those questions.</p>
<p><a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/dumbstruck.jpg"><img class="alignnone size-medium wp-image-758" title="dumbstruck" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/dumbstruck-300x294.jpg" alt="" width="170" height="167" /></a></p>
<p>How bout asking on IDS deployment in a network? Maybe not as I think maybe nobody can or will answer that. Maybe I shud ask about basic network diagram? I used to ask the candidate to draw a simple diagram of a network that has basic security devices either inline or passive but then still nobody answer it. I didn&#8217;t expect anybody to answer perfectly. Nobody is perfect and nobody is NOBODY. (Wifey used to reply &#8220;I am Nobody&#8221; when I say &#8220;nobody is perfect).</p>
<p>So for tomorrow, I just looking for anybody that has the right attitude, the passion and the level of knowledge that they had for the post. (When you have the right attitude, have the passion, I do believe that you have the basic knowledge and skills as the result of DIYs, googling and try-and-error methods. Agree?)</p>
<p>So for the candidates who will attend the interview session tomorrow, I wish them good luck and please&#8230;</p>
<p>Do some simple google search anything about ICT Security, and of cause about Security Analyst.</p>
<p>Good luck.</p>
<p><a href="http://blog.hazrulnz.net/wp-content/uploads/2008/07/u105_good_luck.jpg"><img class="alignnone size-medium wp-image-760" title="u105_good_luck" src="http://blog.hazrulnz.net/wp-content/uploads/2008/07/u105_good_luck-300x300.jpg" alt="" width="172" height="172" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hazrulnz.net/756/another-interviewand-good-luck.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 2.273 seconds -->
