<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/1.5.1-alpha" -->
<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/"
>

<channel>
	<title>Baudizm</title>
	<link>http://baudizm.blogsome.com</link>
	<description>The charm of the byte... the beauty of Baud.</description>
	<pubDate>Sun, 07 Jun 2009 09:03:48 +0000</pubDate>
	<generator>http://wordpress.org/?v=1.5.1-alpha</generator>
	<language>en</language>

		<item>
		<title>Webserver Proxying - single public Apache HTTPD, multiple internal subdomains.</title>
		<link>http://baudizm.blogsome.com/2009/06/07/webserver-proxying-single-public-apache-httpd-multiple-internal-subdomains/</link>
		<comments>http://baudizm.blogsome.com/2009/06/07/webserver-proxying-single-public-apache-httpd-multiple-internal-subdomains/#comments</comments>
		<pubDate>Sun, 07 Jun 2009 09:03:48 +0000</pubDate>
		<dc:creator>baudizm</dc:creator>
		
	<category>Linux</category>
	<category>Tips and Tricks</category>
		<guid>http://baudizm.blogsome.com/2009/06/07/webserver-proxying-single-public-apache-httpd-multiple-internal-subdomains/</guid>
		<description><![CDATA[I needed only one Apache HTTPD server visible over the Internet, and subdomains provided by internal webservers. I proceeded with mod_proxy.]]></description>
			<content:encoded><![CDATA[	<p>I needed only one Apache HTTPD server visible over the Internet, and subdomains provided by internal webservers. I proceeded with mod_proxy.</p>
	<p>On SLES10,  go to <strong><em>/etc/apache2</em></strong> and create a file named proxy.conf:</p>
	<blockquote><p> <code>   # Sample configs<br />
    # by hardwyrd<br />
    # 05/22/2009<br />
    #<br />
    # Disclaimer:<br />
    # Use at your own risk. It works for me, it might not work for you.<br />
    # If you decide to use or follow this config, you agree that I am not responsible for the damage<br />
    # to your system.</p>
	<p>    # Listen on internal interface only. Only mod_proxy uses this.</p>
	<p>    Listen 192.168.10.1:8080</p>
	<p>    # Set the user for mod_proxy<br />
    User nobody<br />
    Group nobody</p>
	<p>    #  Turn on proxy requests<br />
    ProxyRequests On</p>
	<proxy *>
       Order deny,allow<br />
       Deny from all<br />
    </proxy>
	<p>    # Declare your subdomain rechable from the internet.</p>
	<proxy http://your-subdomain.your-domain.tld/>
       Order deny,allow<br />
       Deny from all</p>
	<p>       # Allow only from specific IP addresses or allow all if this is accessible from the net.<br />
       Allow from  all</p>
	<p>    # You can add as many<br />
<proxy> </proxy> declarations as you can.</code></p></blockquote>
	<p>Create a virtual host on the public-facing Apache server. In SLES10, the config is at <strong><em>/etc/apache2/vhosts.d</em></strong>:</p>
	<blockquote><p> <code>   # Sample configs<br />
    # by hardwyrd<br />
    # 05/22/2009<br />
    #<br />
    # Disclaimer:<br />
    # Use at your own risk. It works for me, it might not work for you.<br />
    # If you decide to use or follow this config, you agree that I am not responsible for the damage<br />
    # to your system.</p>
	<p>    # A virtual host config is needed so that we can redirect the subdomain requests coming in at port 80 to the internal Apache server.<br />
    # Create equivalent virtual host entries for every<br />
<proxy> declaration in the proxy.conf .</p>
	<p>    <virtualhost *:80><br />
       ServerName your-subdomain.your-domain.tld<br />
       ServerAlias your-subdomain.your-domain.tld<br />
       ProxyPass / http://your-subdomain.your-domain.tld/<br />
       ProxyPassReverse / http://rspace.focusoutsourcing.com/<br />
    </virtualhost></proxy></code></p></blockquote>
	<p>To enable the public Apache server forward the requests to the proper internal Apache server, you can use an internal DNS server with the correct A record for the domain pointing to the IP of the internal Apache server. Or, the quickest way is to add the subdomain to the hosts file (/etc/hosts).</p>
	<blockquote><p><code>    #/etc/hosts<br />
    192.168.10.22  your-subdomain.your-domain.tld</code></p></blockquote>
	<p>On the internal Apache server, create a standard virtual host for the subdomain.</p>
	<p>That&#8217;s it! Only one apache server will be visible to the public, and yet serve multiple subdomains, spread among various internal Apache servers.</p>
	<p>Enjoy!</p>
	<p><strong>Technorati</strong> : <img id="image329" src="http://freehogg.wordpress.com/files/2006/04/technorati.gif" alt="Technorati" /> <a href="http://www.technorati.com/tags/apache" rel="tag">apache</a>,  <a href="http://www.technorati.com/tags/mod_proxy" rel="tag">mod_proxy</a>, <a href="http://www.technorati.com/tags/web+server" rel="tag">web+server</a>, <a href="http://www.technorati.com/tags/linux" rel="tag">linux</a><br /><b>Site Search Tags:</b> <a href = "/?s=apache" rel="tag">apache</a>, <a href = "/?s=mod_proxy" rel="tag">mod_proxy</a>, <a href = "/?s=web+server" rel="tag">web+server</a>, <a href = "/?s=linux" rel="tag">linux</a></p>
]]></content:encoded>
			<wfw:commentRss>http://baudizm.blogsome.com/2009/06/07/webserver-proxying-single-public-apache-httpd-multiple-internal-subdomains/feed/</wfw:commentRss>
	</item>
		<item>
		<title>Virtualized CentOS5 via VirtualBox on Ubuntu</title>
		<link>http://baudizm.blogsome.com/2009/05/18/adding-a-custom-iptables-rule-on-centos5/</link>
		<comments>http://baudizm.blogsome.com/2009/05/18/adding-a-custom-iptables-rule-on-centos5/#comments</comments>
		<pubDate>Mon, 18 May 2009 07:59:12 +0000</pubDate>
		<dc:creator>baudizm</dc:creator>
		
	<category>Linux</category>
	<category>Tips and Tricks</category>
		<guid>http://baudizm.blogsome.com/2009/05/18/adding-a-custom-iptables-rule-on-centos5/</guid>
		<description><![CDATA[Funny as it may seem, I fell for it (yet again perhaps?). I've installed CentOS5 on top of VirtualBox 2.2.2 on my Ubuntu Hardy 8.04 for the sole purpose of testing out ASP.NET hosting using Mono, XSP, and Apache. And I was in for a surprise that I could not access my virtual machine's Apache web server instance.]]></description>
			<content:encoded><![CDATA[	<p>Funny as it may seem, I fell for it (yet again perhaps?). I&#8217;ve installed CentOS5 on top of VirtualBox 2.2.2 on my Ubuntu Hardy 8.04 for the sole purpose of testing out ASP.NET hosting using Mono, XSP, and Apache. And I was in for a surprise that I could not access my virtual machine&#8217;s Apache web server instance.</p>
	<p>I was able to install VirtualBox 2.2.2 vanilla (not the official Ubuntu package) without any problems. I followed it up by installing CentOS5 as a virtual machine. I then proceeded and configured the network interface for the virtual machine on the VirtualBox Management panel, and set it up to use &#8220;Bridged&#8221; networking.<br />
<center><br />
<a href="http://i182.photobucket.com/albums/x314/hardwyrd/vbox/VB_panel.png" target="_blank"><img src="http://i182.photobucket.com/albums/x314/hardwyrd/vbox/VB_panel.png" alt="VirtualBox Panel" height="40%" width="40%" /></a></p>
	<p> <a href="http://i182.photobucket.com/albums/x314/hardwyrd/vbox/CentOS5_vmnet.png"  target="_blank"><img src="http://i182.photobucket.com/albums/x314/hardwyrd/vbox/CentOS5_vmnet.png" alt="Network Settings" height="40%" width="40%"  /></a><br />
</center><br />
I proceeded by booting the virtual machine and watched every boot message zip by without a hitch. I then logged into the virtual machine as root and configured the IP address for the network interface. After which, I pinged the IP address and got the reply I want. I then tried to log in via SSH, ang was able to get in. &#8220;Hmm&#8230; everything seems to be in order. Might as well continue.&#8221; I said to myself. Boy was I in for a surprise.</p>
	<p>I proceeded and configured the web server, enabling name-based virtual hosting, started Apache and tried to browse the test page. And then&#8230; nothing! <strong>ACCKK!!!</strong> I checked the IPTables rules if there&#8217;s something a-miss. So far everything seems to be in order (really?) . Tried a couple more times, and still get a failure from Firefox. Hmmm.. what could it be. Pondering for hours what could have been missed. A colleague suggested to flush the entire set of IPTables rules, which I did and tried accessing the web server. What do you know! I was able to browse the basic landing page. &#8220;Hmmm.. there must be something wrong with the IPTables rules&#8221; I said whispering. </p>
	<p>I proceeded and checked again /etc/sysconfig/iptables and sure enough, I found the culprit. <strong>I mistakenly added the IPTables rule that opens port 80 AFTER the reject rule!</strong> No wonder port 80 doesn&#8217;t open up. I edited the /etc/sysconfig/iptables again, and place the port 80 rule on top of the reject rule, which will then allow it to take effect first, before the reject rule is activated. And then everything worked as it should.<br />
<center><br />
<a href="http://i182.photobucket.com/albums/x314/hardwyrd/vbox/CentOS5_iptables.png"  target="_blank"><img src="http://i182.photobucket.com/albums/x314/hardwyrd/vbox/CentOS5_iptables.png" alt="IPTables rule"  height="40%" width="40%" /></a><br />
</center><br />
Lesson? Sometimes the obvious things are really hard to find and double checking definitely will prevent the unnecessary debugging for when your system goes to production. I&#8217;m just glad this is a simulation system and not production.</p>
	<p>I think it was stupid of me not to notice the order of the rules in the iptables file. What do you think?</p>
	<p><strong>Technorati</strong> <img id="image329" src="http://freehogg.wordpress.com/files/2006/04/technorati.gif" alt="Technorati" /> <a href="http://www.technorati.com/tags/linux" rel="tag">linux</a>, <a href="http://www.technorati.com/tags/virtualization" rel="tag">virtualization</a>, <a href="http://www.technorati.com/tags/virtualbox" rel="tag">virtualbox</a>, <a href="http://www.technorati.com/tags/centos5" rel="tag">centos5</a>, <a href="http://www.technorati.com/tags/apache" rel="tag">apache</a>, <a href="http://www.technorati.com/tags/webserver" rel="tag">webserver</a>, <a href="http://www.technorati.com/tags/iptables" rel="tag">iptables</a><br /><b>Site Search Tags:</b> <a href = "/?s=linux" rel="tag">linux</a>, <a href = "/?s=virtualization" rel="tag">virtualization</a>, <a href = "/?s=virtualbox" rel="tag">virtualbox</a>, <a href = "/?s=centos5" rel="tag">centos5</a>, <a href = "/?s=apache" rel="tag">apache</a>, <a href = "/?s=webserver" rel="tag">webserver</a>, <a href = "/?s=iptables" rel="tag">iptables</a></p>
]]></content:encoded>
			<wfw:commentRss>http://baudizm.blogsome.com/2009/05/18/adding-a-custom-iptables-rule-on-centos5/feed/</wfw:commentRss>
	</item>
		<item>
		<title>Authenticate OneOrZero HelpDesk Users to LDAP via OpenLDAP</title>
		<link>http://baudizm.blogsome.com/2009/01/14/authenticate-oneorzero-helpdesk-users-to-ldap-via-openldap/</link>
		<comments>http://baudizm.blogsome.com/2009/01/14/authenticate-oneorzero-helpdesk-users-to-ldap-via-openldap/#comments</comments>
		<pubDate>Wed, 14 Jan 2009 06:46:30 +0000</pubDate>
		<dc:creator>baudizm</dc:creator>
		
	<category>General OpenSource</category>
	<category>Linux</category>
	<category>Tips and Tricks</category>
		<guid>http://baudizm.blogsome.com/2009/01/14/authenticate-oneorzero-helpdesk-users-to-ldap-via-openldap/</guid>
		<description><![CDATA[We have been mulling over the idea of integrating OneOrZero HelpDesk and KnowledgeBase authentication with our existing LDAP server which also authenticates our Windows domain users via our Samba PDC. OneOrZero is pretty much convenient for us since it already has LDAP authentication capability. Or so we thought.]]></description>
			<content:encoded><![CDATA[	<p><img src="http://i182.photobucket.com/albums/x314/hardwyrd/HELPentercompressed.gif" alt="Help!" align="right" width="40%" height="40%" hspace="10" vspace="10" />We needed a helpdesk and a knowledgebase system and we prefer that it be opensource. We have found <a href="http://www.oneorzero.com/">OneOrZero HelpDesk and KnowledgeBase</a> to be a good candidate. We decided to take a look at it and see for ourselves. Installation was tad easy. All you need is an Apache server, PHP, and MySQL and voila! We have been running it using MySQL for sometime but we didn&#8217;t as of yet let users use the system.</p>
	<p>We have been mulling over the idea of integrating OneOrZero HelpDesk and KnowledgeBase authentication with our existing LDAP server which also authenticates our Windows domain users via our Samba PDC. OneOrZero is pretty much convenient for us since it already has LDAP authentication capability. Or so we thought.</p>
	<p>Setting up LDAP for OneOrZero HelpDesk, required us to modify its settings. You can do this using its own control panel, by logging in as an administrator, or you can go brute it out by going to where the OneOrZero configuration files are located. In my case it is in </p>
	<blockquote><p><code><strong>/srv/www/onezero/configuration/website_settings.php</strong></code></blockquote>
Please note that the location may not be the same in your case, depending on where you extracted your files, and where your Apache DocumentRoot is located. Make the necessary adjustments.</p>
	<p>After locating the file, make a copy first of the existing file (you dont want to lose working settings do you? <img src='http://baudizm.blogsome.com/wp-images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  then edit <code>website_settings.php</code> by opening your favorite text editor - which in my case is VI.</p>
	<blockquote><p><code><strong>vi website_settings.php</strong></code></blockquote>
Navigate your way down towards near the end of the file, and review the LDAP-related parameters. Please note, I&#8217;ll be using my own LDAP parameters as examples and yours might be different depending on your LDAP server flavor (AD, OpenLDAP, Netware/OES/others).<br />
<blockquote><code><br />
# Enable LDAP authentication. This is DB by default.<br />
auth_method = "LDAP" </p>
	<p># IP address of your LDAP server<br />
ldap_host = "192.168.10.10"</p>
	<p># If you are using AD, specify the domain name. I'm using OpenLDAP so, I ignored this.<br />
ldap_domain = ""</p>
	<p># Specify the user that will be used to bind to your LDAP server. Not needed if anonymous bind is allowed<br />
ldap_binddn = "cn=ldapbinder,dc=mydomain,dc=com"</p>
	<p># Specify the password for the binding user<br />
ldap_bindpwd = "secret"</p>
	<p># Set the location in your LDAP schema where the search will start from. In my case, I have an OU called "Users"<br />
ldap_rootdn = "ou=Users,dc=mydomain,dc=com"</p>
	<p># Provide here the search attributes. Note though that this might be different on your particular flavor of LDAP.<br />
# Use an LDAP browser utility to double check.<br />
ldap_searchattr = "uid"<br />
ldap_fname = "givenname"<br />
ldap_lname = "sn"<br />
ldap_uname = "uid"<br />
ldap_email_add = "mail"<br />
ldap_office = "l"<br />
ldap_phone = "telephonenumber"<br />
ldap_context = "dn"<br />
</code></blockquote>
Save your file after editing. </p>
	<p>We then tried logging in using our LDAP accounts, however it seems that OneOrZero cannot find our accounts, or rather LDAP cannot find the accounts passed by OneOrZero to it. So, I then looked at the LDAP log and checked what the problem is. Sure enough, I found the culprit.<br />
<blockquote><code>Jan 14 11:18:15 x2100 slapd[4044]: conn=5857 op=1 SRCH base="ou=Users,dc=mydomain,dc=com" scope=2 deref=0<strong> filter=&#8221;(uid=minime)&#8221;</strong></code></p></blockquote>
	<p>No wonder LDAP cannot locate the user. Even though it is searching on the right section of the LDAP tree, it doesn&#8217;t know which one to pick up. Remember, we use our LDAP server as authentication for our Windows users via Samba as well. Heck, we even authenticate our SSH users via LDAP also.</p>
	<p>Another challenge!<br />
<blockquote><strong>How do I hack the filter in OneOrZero so that it works for my LDAP server ? (GOD I LOVE THIS WORK!)</strong></blockquote>
Simple, I have to locate the filter string deep in the vowels of OneOrZero&#8217;s source code and insert my own filter or manipulate it so that the output filter will meet what my LDAP server really needs.</p>
	<p>OK OK! Enough suspense, how did I do it? Simple.</p>
	<p>Navigate yourself to where you extracted OneOrZero - in my case<code><strong> /srv/www/onezero/common</strong></code> , and edit the file <code><strong>common.php</strong></code> . When you open the file, navigate yourself towards <code><strong>line 164 </strong></code>. There you will find the <code><strong>$filter</strong></code> variable which receives the value from the LDAP search attribute that was set in <code><strong>website_settings.php</strong></code> .</p>
	<p>When you locate the $filter variable, comment the existing one, and replace it so that it looks like this:<br />
<blockquote>
<code>//  $filter = "($ldap_searchattr=$name)";     //This is the default filter string </code></p>
	<p><code>$filter = "(&#038;(objectClass=posixAccount)($ldap_searchattr=$name))"    // This is my new filter string to fit my LDAP server.</code></blockquote>
Save the file and do a test login.  That&#8217;s it!</p>
	<p>If you still have trouble setting it up (which I doubt), feel free to look at the Administration guide at http://www.oneorzero.com/wiki/index.php?title=OneOrZero_Settings</p>
	<p>Enjoy!</p>
	<p><strong>Technorati</strong> : <img id="image329" src="http://freehogg.wordpress.com/files/2006/04/technorati.gif" alt="Technorati" /> <a href="http://www.technorati.com/tags/oneorzero" rel="tag">oneorzero</a>, <a href="http://www.technorati.com/tags/helpdesk" rel="tag">helpdesk</a>, <a href="http://www.technorati.com/tags/linux" rel="tag">linux</a>, <a href="http://www.technorati.com/tags/ldap" rel="tag">ldap</a>, <a href="http://www.technorati.com/tags/authentication" rel="tag">authentication</a><br /><b>Site Search Tags:</b> <a href = "/?s=oneorzero" rel="tag">oneorzero</a>, <a href = "/?s=helpdesk" rel="tag">helpdesk</a>, <a href = "/?s=linux" rel="tag">linux</a>, <a href = "/?s=ldap" rel="tag">ldap</a>, <a href = "/?s=authentication" rel="tag">authentication</a></p>
]]></content:encoded>
			<wfw:commentRss>http://baudizm.blogsome.com/2009/01/14/authenticate-oneorzero-helpdesk-users-to-ldap-via-openldap/feed/</wfw:commentRss>
	</item>
		<item>
		<title>Allow NAT access to Publicly-accessible Internal Services via PFSense</title>
		<link>http://baudizm.blogsome.com/2009/01/13/allow-nat-access-to-publicly-accessible-internal-services-via-pfsense/</link>
		<comments>http://baudizm.blogsome.com/2009/01/13/allow-nat-access-to-publicly-accessible-internal-services-via-pfsense/#comments</comments>
		<pubDate>Tue, 13 Jan 2009 07:42:17 +0000</pubDate>
		<dc:creator>baudizm</dc:creator>
		
	<category>Tips and Tricks</category>
		<guid>http://baudizm.blogsome.com/2009/01/13/allow-nat-access-to-publicly-accessible-internal-services-via-pfsense/</guid>
		<description><![CDATA[You now have your nice PFSense firewall connected to the net and your users are happily connected then you decided to put up publicly-accessible network services like a web server. But horror starts to creep in when you found out that your users (or your developers) cannot access your public server using their workstations within your local network.]]></description>
			<content:encoded><![CDATA[	<p>You now have your nice PFSense firewall connected to the net and your users are happily connected then you decided to put up publicly-accessible network services like a web server. But horror starts to creep in when you found out that your users (or your developers) cannot access your public server using their workstations within your local network.</p>
	<p>You tried everything in vain and suddenly felt the urge to scream with all your might.<br />
<center><strong>AAAARRGGGHHH!!!!</strong> </center></p>
	<p>As far as you&#8217;re concerned, you&#8217;ve setup PFSense correctly. You have enabled port forwarding quite perfectly. The web server is running without a hitch. You have your DNS working perfectly. But your users cannot seem to access your internal server using your public IP address or domain..</p>
	<p><center>..then you raised your limp hands in resignation.</center></p>
	<p>Dont despair. It&#8217;s really simple.</p>
	<p>1. Open your PFSense web gui.</p>
	<p>2. Move your mouse over to <strong>System</strong>, and click <strong>Advanced</strong>.</p>
	<p><img src="http://i182.photobucket.com/albums/x314/hardwyrd/pfsense/pfsense_adv.png" alt="System - Advanced" /></p>
	<p>3. Scroll down, and look at the <strong>Disable NAT Reflection</strong> field. <strong>Make sure that it is unchecked</strong>. </p>
	<p><img src="http://i182.photobucket.com/albums/x314/hardwyrd/pfsense/pfsense_natref.png" alt="Disable NAT Reflection" /></p>
	<p>4. Click on Save.</p>
	<p>That&#8217;s all there is to it!  Enjoy!</p>
	<p><strong>Technorati</strong><img id="image329" src="http://freehogg.wordpress.com/files/2006/04/technorati.gif" alt="Technorati" /> <a href="http://www.technorati.com/tags/PFSense" rel="tag">PFSense</a>, <a href="http://www.technorati.com/tags/NAT" rel="tag">NAT</a>, <a href="http://www.technorati.com/tags/reflection" rel="tag">reflection</a><br /><b>Site Search Tags:</b> <a href = "/?s=PFSense" rel="tag">PFSense</a>, <a href = "/?s=NAT" rel="tag">NAT</a>, <a href = "/?s=reflection" rel="tag">reflection</a></p>
]]></content:encoded>
			<wfw:commentRss>http://baudizm.blogsome.com/2009/01/13/allow-nat-access-to-publicly-accessible-internal-services-via-pfsense/feed/</wfw:commentRss>
	</item>
		<item>
		<title>Wireshark: Adding Columns for Wireless Antenna Signal Strength</title>
		<link>http://baudizm.blogsome.com/2008/12/23/wireshark-adding-columns-for-wireless-antenna-signal-strength/</link>
		<comments>http://baudizm.blogsome.com/2008/12/23/wireshark-adding-columns-for-wireless-antenna-signal-strength/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 00:44:08 +0000</pubDate>
		<dc:creator>baudizm</dc:creator>
		
	<category>Throughout the Web</category>
	<category>Tips and Tricks</category>
		<guid>http://baudizm.blogsome.com/2008/12/23/wireshark-adding-columns-for-wireless-antenna-signal-strength/</guid>
		<description><![CDATA[
Here's a video article by <a href="http://www.wiresharktraining.com/">Laura Chappell</a> on how you can make your wireless snooping a bit more comfy by adding columns for your wireless antenna signal strength.]]></description>
			<content:encoded><![CDATA[	<p>Here&#8217;s a video article by <a href="http://www.wiresharktraining.com/">Laura Chappell</a> on how you can make your wireless snooping a bit more comfy by adding columns for your wireless antenna signal strength.</p>
	<p>Video is being hosted at <a href="http://www.novell.com">Novell</a>.</p>
	<p><a href="http://www.novell.com/img/flash/play.php?media=http://www.novell.com/recording/videos/connectionmagazine/1208-signalcolumn.flv?sourceid=NCM_12_08_lc"><br />
Wireshark Training : Adding Columns for Wireless Antenna Signal Strength (Hosted by Novell)</a></p>
	<p>Enjoy!</p>
	<p><strong>Technorati</strong> <img id="image329" src="http://freehogg.wordpress.com/files/2006/04/technorati.gif" alt="Technorati" /> <a href="http://www.technorati.com/tags/wireshark" rel="tag">wireshark</a>, <a href="http://www.technorati.com/tags/wireless" rel="tag">wireless</a>, <a href="http://www.technorati.com/tags/" rel="tag"></a><br /><b>Site Search Tags:</b> <a href = "/?s=wireshark" rel="tag">wireshark</a>, <a href = "/?s=wireless" rel="tag">wireless</a>, <a href = "/?s=" rel="tag"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://baudizm.blogsome.com/2008/12/23/wireshark-adding-columns-for-wireless-antenna-signal-strength/feed/</wfw:commentRss>
	</item>
		<item>
		<title>Yet Another Major Internet Explorer Flaw allows Remote Code Execution</title>
		<link>http://baudizm.blogsome.com/2008/12/17/yet-another-major-internet-explorer-flaw-allows-remote-code-execution/</link>
		<comments>http://baudizm.blogsome.com/2008/12/17/yet-another-major-internet-explorer-flaw-allows-remote-code-execution/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 02:43:37 +0000</pubDate>
		<dc:creator>baudizm</dc:creator>
		
	<category>Throughout the Web</category>
		<guid>http://baudizm.blogsome.com/2008/12/17/yet-another-major-internet-explorer-flaw-allows-remote-code-execution/</guid>
		<description><![CDATA[Microsoft announced last December 15 of yet another major flaw in version 7 of its Internet Explorer browser which allows remote code execution on the target computer (as if the others do not already). ]]></description>
			<content:encoded><![CDATA[	<p>Microsoft announced last December 15 of yet another major flaw in version 7 of its Internet Explorer browser which allows remote code execution on the target computer (as if the others do not already). </p>
	<p>Dubbed as <a href="http://www.microsoft.com/technet/security/advisory/961051.mspx">Microsoft Security Advisory (961051)</a>, the advisory went on to discuss the issue as follows:</p>
	<blockquote><p><em>The vulnerability exists as an invalid pointer reference in the data binding function of Internet Explorer. When data binding is enabled (which is the default state), it is possible under certain conditions for an object to be released without updating the array length, leaving the potential to access the deleted object&#8217;s memory space. This can cause Internet Explorer to exit unexpectedly, in a state that is exploitable.</em>
</p></blockquote>
	<p>It appears also that its not only IE7 that&#8217;s affected. It affects versions up to IE8 also. Even the <a href="http://news.bbc.co.uk/2/hi/technology/7784908.stm">BBC has snatched this issue</a> as well.</p>
	<p>What was weird for me was that the Full Disclosure community did not make any reaction to this disclosure by Microsoft. Or it might be too early as the secinfo experts and enthusiasts are scrambling to verify this if at all.</p>
	<p>My take on this is - what&#8217;s new? Honestly, I&#8217;m not surprised at all.</p>
	<p><strong>Technorati</strong> <img id="image329" src="http://freehogg.wordpress.com/files/2006/04/technorati.gif" alt="Technorati" /> <a href="http://www.technorati.com/tags/browser" rel="tag">browser</a>, <a href="http://www.technorati.com/tags/internet" rel="tag">internet</a>, <a href="http://www.technorati.com/tags/explorer" rel="tag">explorer</a>, <a href="http://www.technorati.com/tags/IE" rel="tag">IE</a>, <a href="http://www.technorati.com/tags/major" rel="tag">major</a>, <a href="http://www.technorati.com/tags/flaw" rel="tag">flaw</a>, <a href="http://www.technorati.com/tags/microsoft" rel="tag">microsoft</a>, <a href="http://www.technorati.com/tags/security" rel="tag">security</a><br /><b>Site Search Tags:</b> <a href = "/?s=browser" rel="tag">browser</a>, <a href = "/?s=internet" rel="tag">internet</a>, <a href = "/?s=explorer" rel="tag">explorer</a>, <a href = "/?s=IE" rel="tag">IE</a>, <a href = "/?s=major" rel="tag">major</a>, <a href = "/?s=flaw" rel="tag">flaw</a>, <a href = "/?s=microsoft" rel="tag">microsoft</a>, <a href = "/?s=security" rel="tag">security</a></p>
]]></content:encoded>
			<wfw:commentRss>http://baudizm.blogsome.com/2008/12/17/yet-another-major-internet-explorer-flaw-allows-remote-code-execution/feed/</wfw:commentRss>
	</item>
		<item>
		<title>Quick Tip: Use DPKG to replicate between Ubuntu installs</title>
		<link>http://baudizm.blogsome.com/2008/12/01/quick-tip-use-dpkg-to-replicate-between-ubuntu-installs/</link>
		<comments>http://baudizm.blogsome.com/2008/12/01/quick-tip-use-dpkg-to-replicate-between-ubuntu-installs/#comments</comments>
		<pubDate>Mon, 01 Dec 2008 13:22:16 +0000</pubDate>
		<dc:creator>baudizm</dc:creator>
		
	<category>Linux</category>
	<category>Tips and Tricks</category>
		<guid>http://baudizm.blogsome.com/2008/12/01/quick-tip-use-dpkg-to-replicate-between-ubuntu-installs/</guid>
		<description><![CDATA[This is just a quick tip I'm putting up in replicating existing packages between Ubuntu installs. I tend to keep forgetting how to do it every time I do a total reinstall of my Ubuntu box. The following simple commands will list down all installed packages and export it to a file, copy to a USB thumbdrive, and import later after doing a reinstall/upgrade. In other words, the following steps will automate your package reinstall that will mimic your old Ubuntu install. ]]></description>
			<content:encoded><![CDATA[	<p>This is just a quick tip I&#8217;m putting up in replicating existing packages between Ubuntu installs. I tend to keep forgetting how to do it every time I do a total reinstall of my Ubuntu box. The following simple commands will list down all installed packages and export it to a file, copy to a USB thumbdrive, and import later after doing a reinstall/upgrade. In other words, the following steps will automate your package reinstall that will mimic your old Ubuntu install. </p>
	<blockquote><p><code>hw@myubuntu:~$ dpkg --get-selections > pkginstalled</code>
</p></blockquote>
	<p>The above snippet uses the <code>dpkg</code> command with the <code>--get-selections</code> parameter to read the installed packages and dumps them to a plaintext file. You can then proceed and copy <code>pkginstalled</code> to an USB thumbdrive for later, and proceed with the reinstall or system wipeout/upgrade.</p>
	<p>After your new system has been reinstalled, instead of manually installing all the applications that you had previously, just do the following commands to automate the process.</p>
	<blockquote><p><code>hw@newbox:~$ dpkg --set-selections < /media/disk/pkginstalled<br />
hw@newbox:~$  apt-get dselect-upgrade</code><br />
</code></p></blockquote>
	<p>The above snippet imports the list of packages from the file <code>pkginstalled </code>from <code>/media/disk</code> (USB thumbdrive) or replace it with the path where you copied you package list file. The next command does the actual package installation based on the list of packages imported.</p>
	<p>NOTE: If you were using non-official repositories, please add the necessary third-party repo prior to doing the steps mentioned above.</p>
	<p>Enjoy!</p>
	<p><strong>Technorati</strong> <img id="image329" src="http://freehogg.wordpress.com/files/2006/04/technorati.gif" alt="Technorati" /> <a href="http://www.technorati.com/tags/ubuntu" rel="tag">ubuntu</a>, <a href="http://www.technorati.com/tags/linux" rel="tag">linux</a>, <a href="http://www.technorati.com/tags/dpkg" rel="tag">dpkg</a>, <a href="http://www.technorati.com/tags/package" rel="tag">package</a>, <a href="http://www.technorati.com/tags/import" rel="tag">import</a>, <a href="http://www.technorati.com/tags/export" rel="tag">export</a>, <a href="http://www.technorati.com/tags/automate" rel="tag">automate</a>, <a href="http://www.technorati.com/tags/cli" rel="tag">cli</a><br /><b>Site Search Tags:</b> <a href = "/?s=ubuntu" rel="tag">ubuntu</a>, <a href = "/?s=linux" rel="tag">linux</a>, <a href = "/?s=dpkg" rel="tag">dpkg</a>, <a href = "/?s=package" rel="tag">package</a>, <a href = "/?s=import" rel="tag">import</a>, <a href = "/?s=export" rel="tag">export</a>, <a href = "/?s=automate" rel="tag">automate</a>, <a href = "/?s=cli" rel="tag">cli</a></p>
]]></content:encoded>
			<wfw:commentRss>http://baudizm.blogsome.com/2008/12/01/quick-tip-use-dpkg-to-replicate-between-ubuntu-installs/feed/</wfw:commentRss>
	</item>
		<item>
		<title>Track your lost laptop with Adeona</title>
		<link>http://baudizm.blogsome.com/2008/11/17/track-your-lost-laptop-with-adeona/</link>
		<comments>http://baudizm.blogsome.com/2008/11/17/track-your-lost-laptop-with-adeona/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 01:47:02 +0000</pubDate>
		<dc:creator>baudizm</dc:creator>
		
	<category>Throughout the Web</category>
	<category>General OpenSource</category>
		<guid>http://baudizm.blogsome.com/2008/11/17/track-your-lost-laptop-with-adeona/</guid>
		<description><![CDATA[I was doing my daily round of sifting through opensource newsbits when I came across<a href="http://adeona.cs.washington.edu/index.html"> Adeona</a>, the first Open Source system for tracking the location of your lost or stolen laptop that does not rely on a proprietary, central service. This means that you can install Adeona on your laptop and go — there's no need to rely on a single third party. Adeona addresses a critical privacy goal different from existing commercial offerings.]]></description>
			<content:encoded><![CDATA[	<p>I was doing my daily round of sifting through opensource newsbits when I came across<a href="http://adeona.cs.washington.edu/index.html"> Adeona</a>. According to its creators, it can be described as:</p>
	<blockquote><p><em> Adeona is the first Open Source system for tracking the location of your lost or stolen laptop that does not rely on a proprietary, central service. This means that you can install Adeona on your laptop and go — there&#8217;s no need to rely on a single third party. What&#8217;s more, Adeona addresses a critical privacy goal different from existing commercial offerings. It is privacy-preserving. This means that no one besides the owner (or an agent of the owner&#8217;s choosing) can use Adeona to track a laptop. Unlike other systems, users of Adeona can rest assured that no one can abuse the system in order to track where they use their laptop.</p>
	<p>Adeona is designed to use the Open Source <a href="http://www.opendht.org/">OpenDHT</a> distributed storage service to store location updates sent by a small software client installed on an owner&#8217;s laptop. The client continually monitors the current location of the laptop, gathering information (such as IP addresses and local network topology) that can be used to identify its current location. The client then uses strong cryptographic mechanisms to not only encrypt the location data, but also ensure that the ciphertexts stored within OpenDHT are anonymous and unlinkable. At the same time, it is easy for an owner to retrieve location information. </em></p></blockquote>
	<p>Adeona has <a href="http://adeona.cs.washington.edu/downloads.html">builds for Linux, Mac OS X, and Windows</a> ready for download and follow the<a href="http://adeona.cs.washington.edu/documents.html"> installation steps</a> should anyone wanna try it out.</p>
	<p>Though I currently do not own a laptop or a UMPC (planning to), but this sure is a nice must-have for anybody that does have one or several. I gotta see this for myself. </p>
	<p><strong>Technorati</strong> <img id="image329" src="http://freehogg.wordpress.com/files/2006/04/technorati.gif" alt="Technorati" /> <a href="http://www.technorati.com/tags/Adeona" rel="tag">Adeona</a>, <a href="http://www.technorati.com/tags/laptop" rel="tag">laptop</a>, <a href="http://www.technorati.com/tags/tracking" rel="tag">tracking</a>, <a href="http://www.technorati.com/tags/theft" rel="tag">theft</a>, <a href="http://www.technorati.com/tags/opensource" rel="tag">opensource</a>, <a href="http://www.technorati.com/tags/" rel="tag"></a><br /><b>Site Search Tags:</b> <a href = "/?s=Adeona" rel="tag">Adeona</a>, <a href = "/?s=laptop" rel="tag">laptop</a>, <a href = "/?s=tracking" rel="tag">tracking</a>, <a href = "/?s=theft" rel="tag">theft</a>, <a href = "/?s=opensource" rel="tag">opensource</a>, <a href = "/?s=" rel="tag"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://baudizm.blogsome.com/2008/11/17/track-your-lost-laptop-with-adeona/feed/</wfw:commentRss>
	</item>
	</channel>
</rss>
