<?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>Sekiur My Thoughts &#187; hacking</title>
	<atom:link href="http://blog.sekiur.com/tag/hacking/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sekiur.com</link>
	<description>VoIP, Mobility, Security, Open Source, Science, Politics, and Technology.</description>
	<lastBuildDate>Wed, 24 Aug 2011 19:46:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Safeguard Against Random Password Hacks</title>
		<link>http://blog.sekiur.com/2009/02/safeguard-against-random-password-hacks/</link>
		<comments>http://blog.sekiur.com/2009/02/safeguard-against-random-password-hacks/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 21:08:55 +0000</pubDate>
		<dc:creator>Jose Vicente Ortega</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[attack]]></category>
		<category><![CDATA[fail2ban]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[ids]]></category>
		<category><![CDATA[Intrusion Prevention System]]></category>
		<category><![CDATA[ips]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://blog.sekiur.com/?p=735</guid>
		<description><![CDATA[<a href="http://commons.wikipedia.org/wiki/Image:Internet_map_1024.jpg"></a> Image via <a href="http://commons.wikipedia.org/wiki/Image:Internet_map_1024.jpg">Wikipedia</a> <p>A great tool I ran across to protect your server from random password attacks which I have been receiving recently from China.</p> <p><a class="zem_slink" title="Fail2ban" rel="homepage" href="http://www.fail2ban.org/">Fail2ban</a> scans log files and bans IP addresses that make repeated, unsuccessful attempts to access the server and then it updates the IPtables [...]]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img" style="margin: 1em; display: block;">
<div>
<dl class="wp-caption alignleft" style="width: 212px;">
<dt class="wp-caption-dt"><a href="http://commons.wikipedia.org/wiki/Image:Internet_map_1024.jpg"><img title="Partial map of the Internet based on the Janua..." src="http://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Internet_map_1024.jpg/202px-Internet_map_1024.jpg" alt="Partial map of the Internet based on the Janua..." height="202" width="202"></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image via <a href="http://commons.wikipedia.org/wiki/Image:Internet_map_1024.jpg">Wikipedia</a></dd>
</dl>
</div>
</div>
<p>A great tool I ran across to protect your server from random password attacks which I have been receiving recently from China.</p>
<p><a class="zem_slink" title="Fail2ban" rel="homepage" href="http://www.fail2ban.org/">Fail2ban</a> scans log files and bans IP addresses that make repeated, unsuccessful attempts to access the server and then it updates the IPtables rules to reject those IP addresses for a period of time which is defined by you. It can also be configured to notify you if once these events occur.</p>
<p>Its no high-end <a class="zem_slink" title="Intrusion-prevention system" rel="wikipedia" href="http://en.wikipedia.org/wiki/Intrusion-prevention_system">Intrusion Prevention System</a>, but it does the job.</p>
<p>Fail2ban comes preconfigured to detect and block attacks to ports 22 (ssh), 25 (SMTP) and 80 (http). Instructions on installing on <a class="zem_slink" title="CentOS" rel="homepage" href="http://www.centos.org/">CentOS</a> are detailed below as well as adding functionality for ProFTPD.</p>
<p>I love package management as opposed to compiling because its clean and easy to maintain, so we will need to subscribe to repositories to install Fail2ban.</p>
<p><strong>* </strong><strong>Update the system </strong></p>
<p>yum update</p>
<p><strong>* </strong><strong>Install DAG’s GPG key </strong></p>
<p>rpm –import http://dag.wieers.com/rpm/packages/RPM-GPG-KEY.dag.txt</p>
<p><strong>* </strong><strong>Verify the package you have downloaded</strong></p>
<p>rpm -K rpmforge-release-0.3.6-1.el5.rf.*.rpm</p>
<p>Security warning: The rpmforge-release package imports GPG keys into your RPM database. As long as you have verified the package and trust Dag then it should be safe.</p>
<p><strong>* </strong><strong>Download and Install the package </strong></p>
<p>wget http://packages.sw.be/rpmforge-release/rpmforge-release-0.3.6-1.el5.rf.i386.rpm<br />
rpm -ivh rpmforge-release-0.3.6-1.el5.rf.*.rpm</p>
<p>This will add a yum repository config file and import the appropriate GPG keys. At this point, you can set the priority of the RPMForge repository, and also of the CentOS repositories if you have not done so yet.</p>
<p><strong>* </strong><strong>Test with this command: </strong></p>
<p>yum check-update</p>
<p><strong>* </strong><strong>Update the system </strong></p>
<p>yum update</p>
<p><strong>* Install Fail2ban</strong></p>
<p>yum install fail2ban</p>
<p><strong>* Configure Fail2ban</strong> by editing and adding to /etc/fail2ban.conf</p>
<p>maxfailures = 3 (the default is 5)</p>
<p>ignoreip = 127.0.0.1 &lt;the_server_IP&gt; &lt;network_you_want_excluded/24&gt;</p>
<p><strong>* Enable E-Mail Notification</strong></p>
<p>[MAIL]<br />
# Option:&nbsp; enabled<br />
# Notes.:&nbsp; enable mail notification when banning an IP address.<br />
# Values:&nbsp; [true | false]&nbsp; Default:&nbsp; false<br />
#<br />
enabled = true</p>
<p>to = &lt;your_email_address&gt;</p>
<p><strong>* Add ProFTPD functionality</strong></p>
<p>[proftpd]<br />
enabled = true<br />
logfile = /var/log/secure<br />
fwstart = <a class="zem_slink" title="Iptables" rel="homepage" href="http://www.netfilter.org/">iptables</a> -N fail2ban-proftpd<br />
iptables -I INPUT -p tcp &#8211;dport ftp -j fail2ban-proftpd<br />
iptables -A fail2ban-proftpd -j RETURN<br />
fwend = iptables -D INPUT -p tcp &#8211;dport ftp -j fail2ban-proftpd<br />
iptables -F fail2ban-proftpd<br />
iptables -X fail2ban-proftpd<br />
fwcheck = iptables -L INPUT | grep -q fail2ban-proftpd<br />
fwban = iptables -I fail2ban-proftpd 1 -s &lt;ip&gt; -j DROP<br />
fwunban = iptables -D fail2ban-proftpd -s &lt;ip&gt; -j DROP<br />
timeregex = \S{3}\s{1,2}\d{1,2} \d{2}:\d{2}:\d{2}<br />
timepattern = %%b %%d %%H:%%M:%%S<br />
failregex = Maximum login attempts|no such user found|Failed password</p>
<p><strong>* Set it to startup automatically with the system</strong></p>
<p>chkconfig &#8211;levels 235 fail2ban on</p>
<p><strong>* Start Fail2ban and walk away</strong></p>
<p>/etc/init.d/fail2ban start</p>
<p style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-3340920433757461";
google_ui_features = "rc:10";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "0000FF";
google_color_text = "000000";
google_color_url = "008000";

//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.linux.com/feature/149492">Security scans with OpenVAS</a> (linux.com)</li>
<li class="zemanta-article-ul-li"><a href="http://www.linux.com/feature/149491">Monitor your network with GroundWork Monitor Community Edition</a> (linux.com)</li>
<li class="zemanta-article-ul-li"><a href="http://arnoldit.com/wordpress/2008/12/17/logrhythm-analysis-and-search-of-log-files/">LogRhythm: Analysis and Search of Log Files</a> (arnoldit.com)</li>
<li class="zemanta-article-ul-li"><a href="http://www.channelweb.co.uk/crn/news/2231802/security-market-growing">IT security market still growing</a> (channelweb.co.uk)</li>
<li class="zemanta-article-ul-li"><a href="http://www.linux.com/feature/152460">Access remote network services with SSH tools</a> (linux.com)</li>
<li class="zemanta-article-ul-li"><a href="http://britg.com/2008/10/23/getting-rid-of-ssh-or-sftp-delay/">Getting Rid of SSH or SFTP Delay</a> (britg.com)</li>
</ul>
<div style="margin-top: 10px; height: 15px;" class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/028ed8ed-982f-489c-91c0-83d91bf007f3/" title="Zemified by Zemanta"><img style="border: medium none ; float: right;" class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_e.png?x-id=028ed8ed-982f-489c-91c0-83d91bf007f3" alt="Reblog this post [with Zemanta]"></a><span class="zem-script more-related"><script type="text/javascript" src="http://static.zemanta.com/readside/loader.js" defer="defer"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.sekiur.com/2009/02/safeguard-against-random-password-hacks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Locking Down The Blackberry Network</title>
		<link>http://blog.sekiur.com/2009/01/locking-down-the-blackberry-network/</link>
		<comments>http://blog.sekiur.com/2009/01/locking-down-the-blackberry-network/#comments</comments>
		<pubDate>Sun, 11 Jan 2009 09:02:08 +0000</pubDate>
		<dc:creator>Jose Vicente Ortega</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[audit]]></category>
		<category><![CDATA[bes]]></category>
		<category><![CDATA[blackberry]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[rim]]></category>
		<category><![CDATA[risk]]></category>
		<category><![CDATA[risk management]]></category>
		<category><![CDATA[smartphone]]></category>
		<category><![CDATA[vulnerability]]></category>

		<guid isPermaLink="false">http://blog.sekiur.com/?p=683</guid>
		<description><![CDATA[<p><a href="http://blog.sekiur.com/wp-content/uploads/2009/01/lockdown.jpg"></a>Early last year India threatened to discontinue Blackberry service if Research In Motion (RIM), the company behind the Blackberry did not allow the Indian Government to monitor the Blackberry network traffic raising serious security concerns. Here are a few articles from <a href="http://www.pcworld.com/article/143351/india_scrutinizes_blackberry_security.html" target="_blank">PCWorld</a>, <a href="http://www.infoworld.com/article/08/03/12/BlackBerry-under-security-scrutiny-in-India_1.html" target="_blank">InfoWorld</a>, and <a href="http://news.cnet.com/8301-10784_3-9953395-7.html" target="_blank">CNet</a>.</p> <p>Now president-elect Barack [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.sekiur.com/wp-content/uploads/2009/01/lockdown.jpg"><img class="alignleft size-medium wp-image-689" title="lockdown" src="http://blog.sekiur.com/wp-content/uploads/2009/01/lockdown-300x190.jpg" alt="" width="300" height="190" /></a>Early last year India threatened to discontinue Blackberry service if Research In Motion (RIM), the company behind the Blackberry did not allow the Indian Government to monitor the Blackberry network traffic raising serious security concerns. Here are a few articles from <a href="http://www.pcworld.com/article/143351/india_scrutinizes_blackberry_security.html" target="_blank">PCWorld</a>, <a href="http://www.infoworld.com/article/08/03/12/BlackBerry-under-security-scrutiny-in-India_1.html" target="_blank">InfoWorld</a>, and <a href="http://news.cnet.com/8301-10784_3-9953395-7.html" target="_blank">CNet</a>.</p>
<p>Now president-elect Barack Obama <a href="http://www.telegraph.co.uk/news/worldnews/northamerica/usa/barackobama/4174298/Barack-Obama-vows-to-keep-Blackberry-despite-hacking-fears.html" target="_blank">vows to keep his Blackberry</a> despite hacking fears and concerns by the Secret Service.</p>
<p>This will not only be a headache for the Secret Service but its pretty likely that hacking attempts towards the RIM network will increase exponentially.</p>
<p>Generally people just don&#8217;t think about the risk that a smart-phone poses, specially if its connected to a Blackberry Enterprise Server. How could my phone be a risk to anyone? Well a smartphone is not just a phone, but rather a miniature computer that is not just capable of making calls but it also an un-metered gateway into the corporate network.</p>
<p>In order to understand what actions to take to protect a smart-phone, in particular the Blackberry you have to understand how it works and how it interacts with the Blackberry Enterprise Server.</p>
<p><strong>Vulnerabilities:</strong></p>
<ul>
<li>Lack of authentication</li>
<li>Lack of encryption</li>
<li>Lack of mobile code execution controls</li>
<li>Difficult to enforce controls</li>
<li>Peripheral devices introduce additional vulnerabilities</li>
<li>Infrastructure vulnerabilities service specific operating systems, platforms, applications, etc.</li>
<li>Small size is prone to theft and loss</li>
<li>All devices may not be corporate owned</li>
<li>Multiple configurations of the Blackberry Enterprise Server (BES) architecture</li>
<li>Limited centralized update mechanisms</li>
<li>Limited IT/CIO Control</li>
</ul>
<p><a href="http://blog.sekiur.com/wp-content/uploads/2009/01/bes.png"><img class="aligncenter size-full wp-image-684" title="bes" src="http://blog.sekiur.com/wp-content/uploads/2009/01/bes.png" alt="" width="466" height="257" /></a></p>
<p><strong>Sources of Recommended Controls and Security Guidelines:</strong></p>
<ul>
<li>The Vendor  (Microsoft, Treo, RIM, etc.)</li>
<li>SANS (www.sans.org)</li>
<li>NIST has a great publication</li>
<li>Other existing guidelines</li>
<li>3rd Party Solutions often fill the gaps</li>
</ul>
<p>Once the vulnerabilities have been identified we proceed to implement controls and audits.</p>
<p><strong>Controls:</strong></p>
<p>Controls will include policies, standards, practices, procedures, guidelines, awareness, authentication, encryption, and asset management.</p>
<p><strong>Audits:</strong></p>
<p>Once the scope has been defined, allow to review the implementation of policies between the BES, servers, Blackberry devices, and Blackberry desktop agents. Audits also allow the review of configuration and options to ensure that security is not just available but implemented. Additionally configurations pushed down to end devices need to be audited as well.</p>
<p>The infrastructure design and configuration of network components (firewalls, routers, switches, VLANs, etc.) will need to be audited as they play an intricate part of the overall security of the system.</p>
<p><strong>Risk Assessment:</strong></p>
<p>Although this requires additional resources and expertise, its a must in certain environments like corporate or government. A risk assessment will identity security vulnerabilities and provide a 2nd chance to identify all &#8220;assets&#8221;.</p>
<p>Once this has been completed, validating the risk by performing an &#8220;ethical hack&#8221; will remove any uncertainty by proving the vulnerabilities identified actually exist.</p>
<p><strong>Conclusion:</strong></p>
<p>Providing documentation on the findings is vital. The documentation required will contain an executive summary, action items and details for system administrators, and a clear and concise report with both the good and the bad findings.</p>
<p>A couple of things that should not fall through the cracks are ensuring that the corrective actions are implementable within the organization and the next audit scheduled.</p>
<p><strong>Sample Policy:</strong></p>
<p><a rel="bookmark" href="../2009/01/sample-blackberry-enterprise-server-policy/">Sample Blackberry Enterprise Server Policy</a></p>
<p style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-3340920433757461";
google_ui_features = "rc:10";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "0000FF";
google_color_text = "000000";
google_color_url = "008000";

//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sekiur.com/2009/01/locking-down-the-blackberry-network/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Security Conferences</title>
		<link>http://blog.sekiur.com/2008/12/security-conferences/</link>
		<comments>http://blog.sekiur.com/2008/12/security-conferences/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 07:38:49 +0000</pubDate>
		<dc:creator>Jose Vicente Ortega</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[hacking]]></category>

		<guid isPermaLink="false">http://blog.sekiur.com/?p=599</guid>
		<description><![CDATA[<p>It is my intention next year to attend at least a couple of security conferences if not more.</p> <p>Below is a list of the most established and ones I found attractive.</p> CSI <p style="text-align: center;"><a href="http://blog.sekiur.com/wp-content/uploads/2008/12/csi.jpg"></a></p> <p>The largest information security conference on the East Coast is also the only security conference expressly assembling experts to [...]]]></description>
			<content:encoded><![CDATA[<p>It is my intention next year to attend at least a couple of security conferences if not more.</p>
<p>Below is a list of the most established and ones I found attractive.</p>
<h2><strong>CSI</strong></h2>
<p style="text-align: center;"><a href="http://blog.sekiur.com/wp-content/uploads/2008/12/csi.jpg"><img class="size-full wp-image-604 aligncenter" title="csi" src="http://blog.sekiur.com/wp-content/uploads/2008/12/csi.jpg" alt="" width="182" height="56" /></a></p>
<p>The largest information security conference on the East Coast is also the only security conference expressly assembling experts to challenge the status quo.</p>
<p>CSI thinks that we should forget about tweaking the status quo. We&#8217;re already well into a post-perimeter world but without a consensus on the strategic plan moving forward. It&#8217;s time to grapple with the issues and technologies that can radically alter the way security works-now, and in the months and years ahead.</p>
<p><a href="http://www.csiannual.com/" target="_self">Site Link</a></p>
<h2><strong>Defcon</strong></h2>
<p style="text-align: center;"><a href="http://blog.sekiur.com/wp-content/uploads/2008/12/defcon.jpg"><img class="size-full wp-image-605 aligncenter" title="defcon" src="http://blog.sekiur.com/wp-content/uploads/2008/12/defcon.jpg" alt="" width="281" height="124" /></a></p>
<p>It’s the largest underground hacker convention in the world!</p>
<p>When: July 31 &#8211; August 2, 2009<br />
Where: Riviera Hotel &amp; Casino in Las Vegas, Nevada, USA<br />
Cost: $100 (USD) NB. It’s cash only. (free if you’re a full badge Black Hat attendee)</p>
<p><a href="http://www.defcon.org/" target="_self">Site Link</a></p>
<h2><strong>Black Hat</strong></h2>
<p><a href="http://blog.sekiur.com/wp-content/uploads/2008/12/blackhat.jpg"><img class="aligncenter size-full wp-image-607" title="blackhat" src="http://blog.sekiur.com/wp-content/uploads/2008/12/blackhat.jpg" alt="" width="303" height="203" /></a></p>
<p>The Black Hat Briefings are a series of highly technical information security conferences that bring together thought leaders from all facets of the infosec world – from the corporate and government sectors to academic and even underground researchers. The environment is strictly vendor-neutral and focused on the sharing of practical insights and timely, actionable knowledge. Black Hat remains the best and biggest event of its kind, unique in its ability to define tomorrow’s information security landscape.</p>
<p>When: Various<br />
Where: Las Vegas, Amsterdam, Tokyo, Washington DC<br />
Cost: Varies</p>
<p><a href="http://www.blackhat.com/" target="_self">Site Link</a></p>
<h2><strong>SecTor</strong></h2>
<p><a href="http://blog.sekiur.com/wp-content/uploads/2008/12/sector.jpg"><img class="aligncenter size-full wp-image-608" title="sector" src="http://blog.sekiur.com/wp-content/uploads/2008/12/sector.jpg" alt="" width="177" height="111" /></a></p>
<p>SecTor brings the world’s brightest (and darkest) minds together to identify, discuss, dissect and debate the latest digital threats facing corporations today. Unique to central Canada, SecTor provides an unmatched opportunity for IT Professionals to collaborate with their peers and learn from their mentors. Held at the Metro Toronto Convention Centre in downtown Toronto, SecTor runs two full days. The event features Keynotes from North America’s most respected and trusted experts. Speakers are true security professionals with depth of understanding on topics that matter. SecTor is a must attend event for every IT Professional.</p>
<p>When: October 5-7, 2009<br />
Where: Toronto, Ontario, Canada<br />
Cost: Early Bird: $499, Standard: $749, Full: $999 (CDN)</p>
<p><a href="http://www.sector.ca/" target="_self">Site Link</a></p>
<h2><strong>ShmooCon</strong></h2>
<p><a href="http://blog.sekiur.com/wp-content/uploads/2008/12/shmoo.jpg"><img class="aligncenter size-full wp-image-609" title="shmoo" src="http://blog.sekiur.com/wp-content/uploads/2008/12/shmoo.jpg" alt="" width="214" height="119" /></a></p>
<p>ShmooCon is an annual East coast hacker convention hell-bent on offering three days of an interesting atmosphere for demonstrating technology exploitation, inventive software &amp; hardware solutions, and open discussions of critical infosec issues. The first day is a single track of speed talks, One Track Mind. The next two days, there are three tracks: Break It!, Build It!, and Bring It On!.</p>
<p>When: February 6-8, 2009<br />
Where: Wardman Park Marriott, Washington DC, USA<br />
Cost: From $100-$300</p>
<p><a href="http://www.shmoocon.org/" target="_self">Site Link</a></p>
<h2><strong>Chaos Communication Congress</strong></h2>
<p><a href="http://blog.sekiur.com/wp-content/uploads/2008/12/chaos_com.jpg"><img class="aligncenter size-full wp-image-610" title="chaos_com" src="http://blog.sekiur.com/wp-content/uploads/2008/12/chaos_com.jpg" alt="" width="128" height="128" /></a></p>
<p>The Chaos Communication Congress is an international, five-day open-air event for hackers and associated life-forms. The Camp features two conference tracks with interesting lectures, a workshop-track and over 30 villages providing workshops and gettogethers covering a specific topic.</p>
<p>When: December 27th to 30th, 2008<br />
Where: bcc Berliner Congress Center, Berlin, Germany<br />
Cost: 130 € &#8211; 1500 €</p>
<p><a href="http://events.ccc.de/camp/" target="_self">Site Link</a></p>
<h2><strong>Toorcon</strong></h2>
<p><a href="http://blog.sekiur.com/wp-content/uploads/2008/12/toorcon.jpg"><img class="aligncenter size-full wp-image-611" title="toorcon" src="http://blog.sekiur.com/wp-content/uploads/2008/12/toorcon.jpg" alt="" width="341" height="56" /></a></p>
<p>ToorCon is San Diego’s hacker conference bringing together the top security experts to present their new tricks of the trade and have fun in the sunny and beautiful city of San Diego.</p>
<p>When: September 2009<br />
Where: San Diego, California, USA<br />
Cost: From $120-$200</p>
<p><a href="http://toorcon.org/" target="_self">Site Link</a></p>
<h2><strong>HITB Security Conference</strong></h2>
<p><a href="http://blog.sekiur.com/wp-content/uploads/2008/12/hitb.jpg"><img class="aligncenter size-full wp-image-612" title="hitb" src="http://blog.sekiur.com/wp-content/uploads/2008/12/hitb.jpg" alt="" width="230" height="94" /></a></p>
<p>The main aim of our conferences is to enable the dissemination, discussion and sharing of network security information. Presented by respected members of both the mainstream network security arena as well as the underground or black hat community, this years conference promises to deliver a look at several new attack methods that have not been seen or discussed in public before.</p>
<p>When: Various<br />
Where: Dubai, Malaysia<br />
Cost: Varies</p>
<p><a href="http://conference.hackinthebox.org/" target="_self">Site Link</a></p>
<h2><strong>Phreaknic</strong></h2>
<p><a href="http://blog.sekiur.com/wp-content/uploads/2008/12/phreaknic.jpg"><img class="aligncenter size-full wp-image-613" title="phreaknic" src="http://blog.sekiur.com/wp-content/uploads/2008/12/phreaknic.jpg" alt="" width="223" height="59" /></a></p>
<p>PhreakNIC is an annual gathering in Nashville, TN, for hackers, makers, security professionals, and general technology enthusiasts. Hours upon hours of both informative and entertaining presentations are given by volunteers and many areas are set up with the intent of encouraging socialization.</p>
<p>When: October 2009<br />
Where: Nashville, Tennessee, USA<br />
Cost: $25</p>
<p><a href="http://www.phreaknic.info/" target="_self">Site Link</a></p>
<h2><strong>SANS</strong></h2>
<p><a href="http://blog.sekiur.com/wp-content/uploads/2008/12/sans.jpg"><img class="aligncenter size-full wp-image-614" title="sans" src="http://blog.sekiur.com/wp-content/uploads/2008/12/sans.jpg" alt="" width="153" height="87" /></a></p>
<p>SANS provides intensive, immersion training designed to help you and your staff master the practical steps necessary for defending systems and networks against the most dangerous threats &#8211; the ones being actively exploited. The courses are full of important and immediately useful techniques that you can put to work as soon as you return to your offices. They were developed through a consensus process involving hundreds of administrators, security managers, and information security professionals, and address both security fundamentals and awareness, and the in-depth technical aspects of the most crucial areas of IT security.</p>
<p>When: Various<br />
Where: Various<br />
Cost: Varies</p>
<p><a href="http://www.sans.org/" target="_self">Site Link</a></p>
<h2><strong>Techno Security Conference</strong></h2>
<p><a href="http://blog.sekiur.com/wp-content/uploads/2008/12/techno.jpg"><img class="aligncenter size-full wp-image-615" title="techno" src="http://blog.sekiur.com/wp-content/uploads/2008/12/techno.jpg" alt="" width="355" height="183" /></a></p>
<p>TheTrainingCo. is both new and old. As a corporation, it is the culmination of a dream that we have been sharing with people for the past decade. In that sense, it is new. We officially opened our doors in early 1999.<br />
We are old in that the experiences of our senior staff are almost unmatched in their knowledge of the subjects being addressed at our conferences and speaking engagements. Every bit of that hard earned knowledge came as a result of years of highly specialized work and contact with thousands of people. Our two senior members alone bring more than one half of a century of pioneering efforts in the fields of Techno-Security and Cyber-Crime Prevention.</p>
<p>When: May 31 &#8211; June 3, 2009<br />
Where: Myrtle Beach, SC, USA<br />
Cost: $895</p>
<p><a href="http://www.techsec.com/" target="_self">Site Link</a></p>
<h2><strong>CEIC Conference</strong></h2>
<p><a href="http://blog.sekiur.com/wp-content/uploads/2008/12/ceic.jpg"><img class="aligncenter size-full wp-image-616" title="ceic" src="http://blog.sekiur.com/wp-content/uploads/2008/12/ceic.jpg" alt="" width="244" height="93" /></a></p>
<p>CEIC offers lectures and hands-on labs delivered by industry-leading experts, which gives attendees the opportunity to learn the latest techniques and methodologies in computer forensics, eDiscovery, incident response and enterprise investigations.</p>
<p>When: May 17-20, 2009<br />
Where: Loews Royal Pacific Resort, Universal Orlando, USA<br />
Cost: $895</p>
<p><a href="http://www.ceicconference.com/" target="_self">Site Link</a></p>
<h2><strong>IntrusionWorld Conference</strong></h2>
<p><a href="http://blog.sekiur.com/wp-content/uploads/2008/12/intrusion.jpg"><img class="aligncenter size-full wp-image-617" title="intrusion" src="http://blog.sekiur.com/wp-content/uploads/2008/12/intrusion.jpg" alt="" width="154" height="45" /></a></p>
<p>The IntrusionWorld Conference &amp; Expo is the forum for business and corporate executives, Industry, government, legal and academic experts that aim to present the state-of-the-art of the practice, emerging technologies in intrusion prevention. Peer-to-peer groups will help us understand the trends and confront the challenges inherent in today’s intrusion prevention technologies, products, systems implementation and risk management. Field practitioners will exchange best practices and lessons learned. Participants will share ideas and expand business and professional contacts during lunch roundtables, workshops, receptions and other activities.</p>
<p>When: May , 2009<br />
Where: Baltimore, MD, USA<br />
Cost: $875</p>
<p><a href="http://www.unatekconference.com/" target="_self">Site Link</a></p>
<h2><strong>The Last Hope</strong></h2>
<p><a href="http://blog.sekiur.com/wp-content/uploads/2008/12/hope.jpg"><img class="aligncenter size-medium wp-image-618" title="hope" src="http://blog.sekiur.com/wp-content/uploads/2008/12/hope-177x300.jpg" alt="" width="177" height="300" /></a></p>
<p>We all knew these days would come. The Last HOPE is the seventh Hackers On Planet Earth conference.</p>
<p>When: July, 2009<br />
Where: Hotel PennSylvania, New York, USA<br />
Cost: $</p>
<p><a href="http://www.thelasthope.org/" target="_self">Site Link</a></p>
<h2><strong>RSA Security Conference</strong></h2>
<p><a href="http://blog.sekiur.com/wp-content/uploads/2008/12/rsa.jpg"><img class="aligncenter size-full wp-image-619" title="rsa" src="http://blog.sekiur.com/wp-content/uploads/2008/12/rsa.jpg" alt="" width="183" height="58" /></a></p>
<p>In information security, you’re trained to expect the unexpected. Changes occur in a nanosecond. Stay on top by staying one step ahead — attend RSA® Conference 2008!<br />
Join us for the most comprehensive forum in information security. Come learn about the latest trends and technologies, get access to new best practices, and gain insight into the practical and pragmatic perspectives on the most business critical issues facing you today.<br />
Connect and collaborate. Build your professional network. And mingle with 17,000 of the industry’s best and brightest.</p>
<p>When: April 20-24, 2009<br />
Where: Moscone Center, San Francisco, California, USA<br />
Cost: From $1495 &#8211; $3295</p>
<p><a href="http://www.rsaconference.com/2009/US/Home.aspx" target="_self">Site Link</a></p>
<h2><strong>Info Security Canada</strong></h2>
<p><a href="http://blog.sekiur.com/wp-content/uploads/2008/12/infosec_canada.jpg"><img class="aligncenter size-full wp-image-620" title="infosec_canada" src="http://blog.sekiur.com/wp-content/uploads/2008/12/infosec_canada.jpg" alt="" width="250" height="98" /></a></p>
<p>When it comes to your critical information &#8211; it’s not a question of if it’s at risk, it’s a question of when. Stay in front of the fast, ever changing information security curve, at Infosecurity Canada 2008, your first and best line of defense.</p>
<p>When: June, 2009<br />
Where: Toronto, Ontario, Canada<br />
Cost: TBD</p>
<p><a href="http://www.infosecuritycanada.com" target="_self">Site Link</a></p>
<p style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-3340920433757461";
google_ui_features = "rc:10";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "0000FF";
google_color_text = "000000";
google_color_url = "008000";

//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sekiur.com/2008/12/security-conferences/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Its the FMI&#8217;s Turn at Being Hacked</title>
		<link>http://blog.sekiur.com/2008/11/its-the-fmis-turn-at-being-hacked/</link>
		<comments>http://blog.sekiur.com/2008/11/its-the-fmis-turn-at-being-hacked/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 05:41:58 +0000</pubDate>
		<dc:creator>Jose Vicente Ortega</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[fox news]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[hacked]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[imf]]></category>
		<category><![CDATA[incident]]></category>
		<category><![CDATA[spyware]]></category>

		<guid isPermaLink="false">http://blog.sekiur.com/?p=562</guid>
		<description><![CDATA[<p>Within weeks of the World Bank&#8217;s story breaking about its computer systems being breached by hackers, Fox News has reported here that Cyber-Hackers have broken into the IMF computer system.</p> <p>The International Monetary Fund (IMF) is an <a title="International organization" href="http://en.wikipedia.org/wiki/International_organization">international organization</a> that oversees the <a title="Global financial system" href="http://en.wikipedia.org/wiki/Global_financial_system">global financial system</a> by following the [...]]]></description>
			<content:encoded><![CDATA[<p>Within weeks of the World Bank&#8217;s story breaking about its computer systems being breached by hackers, Fox News has reported here that Cyber-Hackers have broken into the IMF computer system.</p>
<blockquote><p>The <strong>International Monetary Fund</strong> (<strong>IMF</strong>) is an <a title="International organization" href="http://en.wikipedia.org/wiki/International_organization">international organization</a> that oversees the <a title="Global financial system" href="http://en.wikipedia.org/wiki/Global_financial_system">global financial system</a> by following the <a class="mw-redirect" title="Macroeconomic policies" href="http://en.wikipedia.org/wiki/Macroeconomic_policies">macroeconomic policies</a> of its member countries, in particular those with an impact on <a title="Exchange rate" href="http://en.wikipedia.org/wiki/Exchange_rate">exchange rates</a> and the <a title="Balance of payments" href="http://en.wikipedia.org/wiki/Balance_of_payments">balance of payments</a>. It also offers financial and technical assistance to its members, making it an international <a title="Lender of last resort" href="http://en.wikipedia.org/wiki/Lender_of_last_resort">lender of last resort</a>. Its headquarters are located in <a title="Washington, D.C." href="http://en.wikipedia.org/wiki/Washington,_D.C.">Washington, D.C.</a>, <a title="United States" href="http://en.wikipedia.org/wiki/United_States">USA</a>.</p></blockquote>
<p>The IMF of course absolutely denies that the event took place. <span id="intelliTXT">The spyware discoveries came at a particularly sensitive time for the international bailout institution, which along with the World Bank is expected to play a central role in trying to combat global financial turmoil.</span></p>
<p>This is too much of a coincidence in my opinion. Any information taken by the attackers will likely be used as leverage to blackmail the institutions rather than being made public to embarass them.</p>
<blockquote><p><span id="intelliTXT">In fact, the computer assaults on the World Bank and the IMF are only part of a rash of sensitive cyber-burglaries that even reached into the U.S. presidential campaign. Both London&#8217;s Financial Times and Newsweek recently reported that the computer network of the White House, and the Obama and McCain campaigns, were seriously breached.</span></p>
<p>The Pentagon claims the Chinese army has established units to develop viruses to attack enemy computer systems. Chinese hackers penetrated the Pentagon last year, in an attack that obtained e-mails from the system serving Defense Secretary Robert Gates.</p>
<p>Despite vigorous Chinese denials, &#8220;everyone in the intelligence community knows that China is the biggest player in cyber espionage,&#8221; says John Tkacik, a former head of China intelligence for the U.S. State Department. Tkacik told FOX News that later this month, President-elect Obama will be presented with a new top-secret National Intelligence Estimate (NIE) report that &#8220;will cause the scales to drop from his eyes&#8221; regarding Chinese cyber-espionage.</p>
<p>&#8220;What the Chinese are particularly interested in at the IMF is what loans the IMF is likely to give to other countries,&#8221; says Nick Day, a former British intelligence officer who runs Diligence, a private investigative firm that does extensive work for many international corporations and institutions.</p>
<p>&#8220;The geopolitics of this is that essentially you&#8217;ve got a few countries in the world that are stacked on huge foreign capital reserves — Russia, China, Japan, the Middle East — and the rest of us are pretty much borrowers to those lenders.</p></blockquote>
<p style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-3340920433757461";
google_ui_features = "rc:10";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "0000FF";
google_color_text = "000000";
google_color_url = "008000";

//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sekiur.com/2008/11/its-the-fmis-turn-at-being-hacked/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox Extensions For Penetration Testing</title>
		<link>http://blog.sekiur.com/2008/11/firefox-extensions-for-penetration-testing/</link>
		<comments>http://blog.sekiur.com/2008/11/firefox-extensions-for-penetration-testing/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 13:30:27 +0000</pubDate>
		<dc:creator>Jose Vicente Ortega</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[hacker]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[penetration testing]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://blog.sekiur.com/?p=510</guid>
		<description><![CDATA[<p>This year at the SecTor security conference in Toronto, Canada, Security Compass introduced a series of open source firefox extensions aiding in penetration testing exercises.</p> <p>Illuminating the Black Art of Security. SecTor brings the world&#8217;s brightest (and darkest) minds together to identify, discuss, dissect and debate the latest digital threats facing corporations today. Unique to [...]]]></description>
			<content:encoded><![CDATA[<p>This year at the SecTor security conference in Toronto, Canada, Security Compass introduced a series of open source firefox extensions aiding in penetration testing exercises.</p>
<blockquote><p><span class="Content">Illuminating the Black Art of Security. SecTor brings the world&#8217;s brightest (and darkest) minds together to identify, discuss, dissect and debate the latest digital threats facing corporations today. Unique to central Canada, SecTor provides an unmatched opportunity for IT Professionals to collaborate with their peers and learn from their mentors. Held at the Metro Toronto Convention Centre in downtown Toronto, SecTor runs two full days, October 7th and 8th. The event features Keynotes from North America&#8217;s most respected and trusted experts. Speakers are true security professionals with depth of understanding on topics that matter. SecTor is a must attend event for every IT Professional.</span></p></blockquote>
<p>This suite of web application security testing tools is named Exploit-Me and its designed to be lightweight and easy to use.</p>
<p>The suite is compromised of <strong>XSS-Me</strong> allowing Cross-Site Scripting, which is a common flaw found in web applications, <strong>SQL Inject-Me</strong> used to check for SQL Injection vulnerabilities which would allow malicious users to view, delete and modify records and finally <strong>Access-Me</strong> which test for access vulnerabilities by trying to access resources without being authenticated.</p>
<p class="section_header">XSS-Me</p>
<p><a href="http://securitycompass.com/exploit_me/xssme/xssme_faq.shtml"><img class="small" src="http://securitycompass.com/img/xssme_img.jpg" alt="" /></a></p>
<p class="section_body">Cross-Site Scripting (XSS) is a common flaw found   in today&#8217;s web applications. XSS flaws can cause serious damage to a web   application. Detecting XSS vulnerabilities early in the development   process will help protect a web application from unnecessary flaws. XSS-Me is the    Exploit-Me tool used to test for reflected XSS vulnerabilities.</p>
<ul class="arrows">
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/7598">Download XSS-Me Now!</a></li>
<li><a href="http://securitycompass.com/exploit_me/xssme/xssme-0.4.0.shtml">XSS-Me 0.4 release notes</a></li>
<li><a href="http://securitycompass.com/exploit_me/xssme/xssme_source-0.4.0.zip">Get the source</a></li>
<li><a href="http://securitycompass.com/exploit_me/xssme/xssme_faq.shtml">Read the FAQ to find out more</a></li>
<li><a href="http://securitycompass.com/exploit_me/xssme/xssme_extended_strings.shtml">Extended XSS string set</a></li>
<li><a href="http://securitycompass.com/exploit_me/exploitme_issues.shtml">Known issues</a></li>
</ul>
<p class="section_header">SQL Inject-Me</p>
<p><a href="http://securitycompass.com/exploit_me/sqlime/sqlime_faq.shtml"><img class="small" src="http://securitycompass.com/img/sqlinjectme_img.jpg" alt="" /></a></p>
<p class="section_body">SQL Injection vulnerabilities can cause a lot of damage to a   web application. A malicious user can possibly view records, delete   records, drop tables or gain access to your server. SQL Inject-Me is the Exploit-Me tool used    to test for SQL Injection vulnerabilities.</p>
<ul class="arrows">
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/7597">Download SQL Inject-Me Now!</a></li>
<li><a href="http://securitycompass.com/exploit_me/sqlime/sqlime-0.4.0.shtml">SQL Inject-Me 0.4 release notes</a></li>
<li><a href="http://securitycompass.com/exploit_me/sqlime/sqlime_source.zip">Get the source</a></li>
<li><a href="http://securitycompass.com/exploit_me/sqlime/sqlime_faq.shtml">Read the FAQ to find out more</a></li>
<li><a href="http://securitycompass.com/exploit_me/exploitme_issues.shtml">Known issues</a></li>
</ul>
<p class="section_header">Access-Me</p>
<p><a href="http://securitycompass.com/exploit_me/accessme/accessme_faq.shtml"><img class="small" src="http://securitycompass.com/img/app_train_img.jpg" alt="" /></a></p>
<p class="section_body">Access vulnerabilities in an application can allow an attacker   to access resources without being authenticated.  Access-Me is the Exploit-Me tool used    to test for Access vulnerabilities.</p>
<ul class="arrows">
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/7595">Download Access-Me Now!</a></li>
<li><a href="http://securitycompass.com/exploit_me/accessme/accessme-0.2.shtml">Access-Me 0.2 release notes</a></li>
<li><a href="http://securitycompass.com/exploit_me/accessme/accessme_source-0.2.zip">Get the source</a></li>
<li><a href="http://securitycompass.com/exploit_me/accessme/hacking_accessme.shtml">Learn to Hack Access Me to add evaluation code</a></li>
<li><a href="http://securitycompass.com/exploit_me/accessme/accessme_faq.shtml">Read the FAQ to find out more</a></li>
<li><a href="http://securitycompass.com/exploit_me/exploitme_issues.shtml">Known issues</a></li>
</ul>
<p style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-3340920433757461";
google_ui_features = "rc:10";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "0000FF";
google_color_text = "000000";
google_color_url = "008000";

//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sekiur.com/2008/11/firefox-extensions-for-penetration-testing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Root Shell &#8211; The Holy Grail</title>
		<link>http://blog.sekiur.com/2008/10/root-shell-the-holy-grail/</link>
		<comments>http://blog.sekiur.com/2008/10/root-shell-the-holy-grail/#comments</comments>
		<pubDate>Thu, 09 Oct 2008 20:30:05 +0000</pubDate>
		<dc:creator>Jose Vicente Ortega</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[exploit]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[penetration testing]]></category>
		<category><![CDATA[pentest]]></category>

		<guid isPermaLink="false">http://blog.sekiur.com/?p=327</guid>
		<description><![CDATA[<p><a href="http://blog.sekiur.com/wp-content/uploads/2008/10/root.gif"></a>The &#8220;Holy Grail&#8221; of any attack is the creation of a root shell. On UNIX/Linux, the &#8220;root&#8221; user is a superuser account that has the capability of running any process on the machine. An exploit will attempt to gain root access to a system by obtaining a root shell prompt from which any command [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.sekiur.com/wp-content/uploads/2008/10/root.gif"><img class="alignleft size-full wp-image-329" title="root" src="http://blog.sekiur.com/wp-content/uploads/2008/10/root.gif" alt="" width="145" height="176" /></a>The &#8220;Holy Grail&#8221; of any attack is the creation of a root shell. On UNIX/Linux, the &#8220;root&#8221; user is a superuser account that has the capability of running any process on the machine. An exploit will attempt to gain root access to a system by obtaining a root shell prompt from which any command can be executed.</p>
<p>The hacker will attack a system running an exploit script that breaks into the system, following with establishment of a root shell bound to a TCP connection, which will then allow the attacker to remotely enter commands into the system.</p>
<p>There are basically three way that these shells can be bound to a TCP connection:</p>
<ol>
<li>Conversion &#8211; The TCP connection used to exploit the server (such as SMTP, DNS, FTP) is converted to a shell prompt.</li>
<li>Listen &#8211; The most popular method is to register a shell (/bin/sh, /bin/ksh, etc.) within a service bound  to a particular port.</li>
<li>Connect &#8211; This exploit will create a outbound connection back to the attacker.</li>
</ol>
<p>In the early days, these exploits were developed by the &#8220;<a href="http://en.wikipedia.org/wiki/Leet" target="_self">Leet</a>&#8221; hackers using either <a href="http://en.wikipedia.org/wiki/Reverse_Engineering" target="_self">reverse engineering</a> and/or a trial and error approach to see how applications/systems behaved when unexpected packets were sent their way.</p>
<p>Later tools started to appear in the wild on the Internet, which then prompted the existence of the term &#8220;<a href="http://en.wikipedia.org/wiki/Script_kiddie" target="_self">Script Kiddie</a>&#8220;; allowing people without the ability to write hacking programs on their own to target machines on the Internet.</p>
<p>On the security consultant side, vendors in the late 80s and early 90s provided extremely expensive equipment/software such as NetTest, NetScout Systems and Sniffer Technologies as well as automated scanning tools such as ISS&#8217; Internet Scanner.</p>
<p>Online vulnerability repositories like http://rootshell.org were used target specific applications to determine actual levels of threat probabilities.</p>
<p>With the open source initiative, many of these high-end tools have become widely available and have even matched and in some cases mastered their proprietary counterparts. Examples of these are Ethereal which then became <a href="http://en.wikipedia.org/wiki/Wireshark" target="_self">Wireshark</a>, <a href="http://nmap.org/" target="_self">Nmap</a>, <a href="http://www.nessus.org/" target="_self">Nessus</a>.</p>
<p>Rootshell.org has since disappeared and been replace by <a href="http://www.milw0rm.com/" target="_self">Milw0rm.com</a>, an online exploit database. Hacking tools have become much more sophisticated in methods and automation, for instance the &#8220;<a href="http://www.metasploit.com/" target="_self">Metasploit Project</a>&#8221; providing information about security vulnerabilities and aiding in penetration testing with the capability of querying exploit databases in real-time to scan and attack for the most recent exploits.</p>
<p>This without a doubt raises serious questions on the approach security professional and system administrator need to take to protect and guard their systems.</p>
<p>We are well past the point when hacking was for the elite, when ill-intentioned people can monitor the release of security patches released by vendors and using the window of time between the patch release date and when patches are actually applied to make mischief.</p>
<p style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-3340920433757461";
google_ui_features = "rc:10";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "0000FF";
google_color_text = "000000";
google_color_url = "008000";

//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sekiur.com/2008/10/root-shell-the-holy-grail/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>No-Tech Hacking</title>
		<link>http://blog.sekiur.com/2008/10/no-tech-hacking/</link>
		<comments>http://blog.sekiur.com/2008/10/no-tech-hacking/#comments</comments>
		<pubDate>Thu, 09 Oct 2008 18:47:36 +0000</pubDate>
		<dc:creator>Jose Vicente Ortega</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[defcon]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[johnny long]]></category>
		<category><![CDATA[social engineering]]></category>

		<guid isPermaLink="false">http://blog.sekiur.com/?p=319</guid>
		<description><![CDATA[<p>Observation is one of the most important traits of a hacker. Johnny Long outlined at <a href="http://en.wikipedia.org/wiki/Defcon" target="_self">Defcon</a> 15 last year in Las Vegas just how much observation and/or social engineering can go when gathering information.<br /> </p> <p>His most recent book takes a look at how to defeat every conceivable high-tech security system by [...]]]></description>
			<content:encoded><![CDATA[<p>Observation is one of the most important traits of a hacker. Johnny Long outlined at <a href="http://en.wikipedia.org/wiki/Defcon" target="_self">Defcon</a> 15 last year in Las Vegas just how much observation and/or social engineering can go when gathering information.<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="450" height="450" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="id" value="VideoPlayback" /><param name="src" value="http://video.google.com/googleplayer.swf?docid=-2160824376898701015&amp;hl=en&amp;fs=true" /><embed id="VideoPlayback" type="application/x-shockwave-flash" width="450" height="450" src="http://video.google.com/googleplayer.swf?docid=-2160824376898701015&amp;hl=en&amp;fs=true"></embed></object></p>
<p>His most recent book takes a look at how to defeat every conceivable high-tech security system by keeping it simple.<br />
<script type="text/javascript"><!--
google_ad_client = "pub-3340920433757461";
google_ui_features = "rc:10";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "0000FF";
google_color_text = "000000";
google_color_url = "008000";

//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sekiur.com/2008/10/no-tech-hacking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

