<?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>MSWEB Network Solutions &#187; Tips and Tricks</title>
	<atom:link href="http://blog.mswebnetwork.net/category/tips-and-tricks/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.mswebnetwork.net</link>
	<description>The Official News and Updates Blog of MSWEB Network!</description>
	<lastBuildDate>Tue, 07 Feb 2012 08:14:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>How to fix corrupted tables in Joomla caused by Mysql upgrade</title>
		<link>http://blog.mswebnetwork.net/570/how-to-fix-corrupted-tables-in-joomla-caused-by-mysql-upgrade/</link>
		<comments>http://blog.mswebnetwork.net/570/how-to-fix-corrupted-tables-in-joomla-caused-by-mysql-upgrade/#comments</comments>
		<pubDate>Mon, 18 Jul 2011 04:20:07 +0000</pubDate>
		<dc:creator>marleo.salazar</dc:creator>
				<category><![CDATA[cPanel]]></category>
		<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Solutions]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Web Hosting]]></category>

		<guid isPermaLink="false">http://blog.mswebnetwork.net/?p=570</guid>
		<description><![CDATA[<p style="text-align: justify;">Do you know that you will encounter error in your Joomla webpage when you&#8217;ve upgrade your Mysql 4 to Mysql 5? This fix can revive your Joomla website by rebuilding the corrupted database table of your Joomla in case you haven&#8217;t backup your database.</p> <p style="text-align: justify;">Simply follow the procedure below:</p> Login to your PhpMyAdmin. [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Do you know that you will encounter error in your Joomla webpage when you&#8217;ve upgrade your Mysql 4 to Mysql 5? This fix can revive your Joomla website by rebuilding the corrupted database table of your Joomla in case you haven&#8217;t backup your database.</p>
<p style="text-align: justify;">Simply follow the procedure below:</p>
<ol>
<li>Login to your PhpMyAdmin.</li>
<li>Click the SQL tab.</li>
<li>Paste the details below one at a time to rebuild jos_components, jos_core_acl_aro and jos_session.</li>
</ol>
<p style="text-align: justify;">===============================================================</p>
<p style="text-align: justify;">DROP TABLE `jos_components`;<br />
CREATE TABLE `jos_components` (<br />
`id` int(11) NOT NULL auto_increment,<br />
`name` varchar(50) NOT NULL default &#8221;,<br />
`link` varchar(255) NOT NULL default &#8221;,<br />
`menuid` int(11) unsigned NOT NULL default &#8217;0&#8242;,<br />
`parent` int(11) unsigned NOT NULL default &#8217;0&#8242;,<br />
`admin_menu_link` varchar(255) NOT NULL default &#8221;,<br />
`admin_menu_alt` varchar(255) NOT NULL default &#8221;,<br />
`option` varchar(50) NOT NULL default &#8221;,<br />
`ordering` int(11) NOT NULL default &#8217;0&#8242;,<br />
`admin_menu_img` varchar(255) NOT NULL default &#8221;,<br />
`iscore` tinyint(4) NOT NULL default &#8217;0&#8242;,<br />
`params` text NOT NULL,<br />
`enabled` tinyint(4) NOT NULL default &#8217;1&#8242;,<br />
PRIMARY KEY  (`id`),<br />
KEY `parent_option` (`parent`, `option`(32))<br />
) TYPE=MyISAM CHARACTER SET `utf8`;</p>
<p style="text-align: justify;">INSERT INTO `jos_components` VALUES (1, &#8216;Banners&#8217;, &#8221;, 0, 0, &#8221;, &#8216;Banner Management&#8217;, &#8216;com_banners&#8217;, 0, &#8216;js/ThemeOffice/component.png&#8217;, 0, &#8216;track_impressions=0\ntrack_clicks=0\ntag_prefix=\n\n&#8217;, 1);<br />
INSERT INTO `jos_components` VALUES (2, &#8216;Banners&#8217;, &#8221;, 0, 1, &#8216;option=com_banners&#8217;, &#8216;Active Banners&#8217;, &#8216;com_banners&#8217;, 1, &#8216;js/ThemeOffice/edit.png&#8217;, 0, &#8221;, 1);<br />
INSERT INTO `jos_components` VALUES (3, &#8216;Clients&#8217;, &#8221;, 0, 1, &#8216;option=com_banners&amp;c=client&#8217;, &#8216;Manage Clients&#8217;, &#8216;com_banners&#8217;, 2, &#8216;js/ThemeOffice/categories.png&#8217;, 0, &#8221;, 1);<br />
INSERT INTO `jos_components` VALUES (4, &#8216;Web Links&#8217;, &#8216;option=com_weblinks&#8217;, 0, 0, &#8221;, &#8216;Manage Weblinks&#8217;, &#8216;com_weblinks&#8217;, 0, &#8216;js/ThemeOffice/component.png&#8217;, 0, &#8216;show_comp_description=1\ncomp_description=\nshow_link_hits=1\nshow_link_description=1\nshow_other_cats=1\nshow_headings=1\nshow_page_title=1\nlink_target=0\nlink_icons=\n\n&#8217;, 1);<br />
INSERT INTO `jos_components` VALUES (5, &#8216;Links&#8217;, &#8221;, 0, 4, &#8216;option=com_weblinks&#8217;, &#8216;View existing weblinks&#8217;, &#8216;com_weblinks&#8217;, 1, &#8216;js/ThemeOffice/edit.png&#8217;, 0, &#8221;, 1);<br />
INSERT INTO `jos_components` VALUES (6, &#8216;Categories&#8217;, &#8221;, 0, 4, &#8216;option=com_categories&amp;section=com_weblinks&#8217;, &#8216;Manage weblink categories&#8217;, &#8221;, 2, &#8216;js/ThemeOffice/categories.png&#8217;, 0, &#8221;, 1);<br />
INSERT INTO `jos_components` VALUES (7, &#8216;Contacts&#8217;, &#8216;option=com_contact&#8217;, 0, 0, &#8221;, &#8216;Edit contact details&#8217;, &#8216;com_contact&#8217;, 0, &#8216;js/ThemeOffice/component.png&#8217;, 1, &#8216;contact_icons=0\nicon_address=\nicon_email=\nicon_telephone=\nicon_fax=\nicon_misc=\nshow_headings=1\nshow_position=1\nshow_email=0\nshow_telephone=1\nshow_mobile=1\nshow_fax=1\nbannedEmail=\nbannedSubject=\nbannedText=\nsession=1\ncustomReply=0\n\n&#8217;, 1);<br />
INSERT INTO `jos_components` VALUES (8, &#8216;Contacts&#8217;, &#8221;, 0, 7, &#8216;option=com_contact&#8217;, &#8216;Edit contact details&#8217;, &#8216;com_contact&#8217;, 0, &#8216;js/ThemeOffice/edit.png&#8217;, 1, &#8221;, 1);<br />
INSERT INTO `jos_components` VALUES (9, &#8216;Categories&#8217;, &#8221;, 0, 7, &#8216;option=com_categories&amp;section=com_contact_details&#8217;, &#8216;Manage contact categories&#8217;, &#8221;, 2, &#8216;js/ThemeOffice/categories.png&#8217;, 1, &#8216;contact_icons=0\nicon_address=\nicon_email=\nicon_telephone=\nicon_fax=\nicon_misc=\nshow_headings=1\nshow_position=1\nshow_email=0\nshow_telephone=1\nshow_mobile=1\nshow_fax=1\nbannedEmail=\nbannedSubject=\nbannedText=\nsession=1\ncustomReply=0\n\n&#8217;, 1);<br />
INSERT INTO `jos_components` VALUES (10, &#8216;Polls&#8217;, &#8216;option=com_poll&#8217;, 0, 0, &#8216;option=com_poll&#8217;, &#8216;Manage Polls&#8217;, &#8216;com_poll&#8217;, 0, &#8216;js/ThemeOffice/component.png&#8217;, 0, &#8221;, 1);<br />
INSERT INTO `jos_components` VALUES (11, &#8216;News Feeds&#8217;, &#8216;option=com_newsfeeds&#8217;, 0, 0, &#8221;, &#8216;News Feeds Management&#8217;, &#8216;com_newsfeeds&#8217;, 0, &#8216;js/ThemeOffice/component.png&#8217;, 0, &#8221;, 1);<br />
INSERT INTO `jos_components` VALUES (12, &#8216;Feeds&#8217;, &#8221;, 0, 11, &#8216;option=com_newsfeeds&#8217;, &#8216;Manage News Feeds&#8217;, &#8216;com_newsfeeds&#8217;, 1, &#8216;js/ThemeOffice/edit.png&#8217;, 0, &#8216;show_headings=1\nshow_name=1\nshow_articles=1\nshow_link=1\nshow_cat_description=1\nshow_cat_items=1\nshow_feed_image=1\nshow_feed_description=1\nshow_item_description=1\nfeed_word_count=0\n\n&#8217;, 1);<br />
INSERT INTO `jos_components` VALUES (13, &#8216;Categories&#8217;, &#8221;, 0, 11, &#8216;option=com_categories&amp;section=com_newsfeeds&#8217;, &#8216;Manage Categories&#8217;, &#8221;, 2, &#8216;js/ThemeOffice/categories.png&#8217;, 0, &#8221;, 1);<br />
INSERT INTO `jos_components` VALUES (14, &#8216;User&#8217;, &#8216;option=com_user&#8217;, 0, 0, &#8221;, &#8221;, &#8216;com_user&#8217;, 0, &#8221;, 1, &#8221;, 1);<br />
INSERT INTO `jos_components` VALUES (15, &#8216;Search&#8217;, &#8216;option=com_search&#8217;, 0, 0, &#8216;option=com_search&#8217;, &#8216;Search Statistics&#8217;, &#8216;com_search&#8217;, 0, &#8216;js/ThemeOffice/component.png&#8217;, 1, &#8216;enabled=0\n\n&#8217;, 1);<br />
INSERT INTO `jos_components` VALUES (16, &#8216;Categories&#8217;, &#8221;, 0, 1, &#8216;option=com_categories&amp;section=com_banner&#8217;, &#8216;Categories&#8217;, &#8221;, 3, &#8221;, 1, &#8221;, 1);<br />
INSERT INTO `jos_components` VALUES (17, &#8216;Wrapper&#8217;, &#8216;option=com_wrapper&#8217;, 0, 0, &#8221;, &#8216;Wrapper&#8217;, &#8216;com_wrapper&#8217;, 0, &#8221;, 1, &#8221;, 1);<br />
INSERT INTO `jos_components` VALUES (18, &#8216;Mail To&#8217;, &#8221;, 0, 0, &#8221;, &#8221;, &#8216;com_mailto&#8217;, 0, &#8221;, 1, &#8221;, 1);<br />
INSERT INTO `jos_components` VALUES (19, &#8216;Media Manager&#8217;, &#8221;, 0, 0, &#8216;option=com_media&#8217;, &#8216;Media Manager&#8217;, &#8216;com_media&#8217;, 0, &#8221;, 1, &#8216;upload_extensions=bmp,csv,doc,epg,gif,ico,jpg,odg,odp,ods,odt,pdf,png,ppt,swf,txt,xcf,xls,BMP,CSV,DOC,EPG,GIF,ICO,JPG,ODG,ODP,ODS,ODT,PDF,PNG,PPT,SWF,TXT,XCF,XLS\nupload_maxsize=10000000\nfile_path=images\nimage_path=images/stories\nrestrict_uploads=1\ncheck_mime=1\nimage_extensions=bmp,gif,jpg,png\nignore_extensions=\nupload_mime=image/jpeg,image/gif,image/png,image/bmp,application/x-shockwave-flash,application/msword,application/excel,application/pdf,application/powerpoint,text/plain,application/x-zip\nupload_mime_illegal=text/html&#8217;, 1);<br />
INSERT INTO `jos_components` VALUES (20, &#8216;Articles&#8217;, &#8216;option=com_content&#8217;, 0, 0, &#8221;, &#8221;, &#8216;com_content&#8217;, 0, &#8221;, 1, &#8216;show_noauth=0\nshow_title=1\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\nfeed_summary=0\n\n&#8217;, 1);<br />
INSERT INTO `jos_components` VALUES (21, &#8216;Configuration Manager&#8217;, &#8221;, 0, 0, &#8221;, &#8216;Configuration&#8217;, &#8216;com_config&#8217;, 0, &#8221;, 1, &#8221;, 1);<br />
INSERT INTO `jos_components` VALUES (22, &#8216;Installation Manager&#8217;, &#8221;, 0, 0, &#8221;, &#8216;Installer&#8217;, &#8216;com_installer&#8217;, 0, &#8221;, 1, &#8221;, 1);<br />
INSERT INTO `jos_components` VALUES (23, &#8216;Language Manager&#8217;, &#8221;, 0, 0, &#8221;, &#8216;Languages&#8217;, &#8216;com_languages&#8217;, 0, &#8221;, 1, &#8221;, 1);<br />
INSERT INTO `jos_components` VALUES (24, &#8216;Mass mail&#8217;, &#8221;, 0, 0, &#8221;, &#8216;Mass Mail&#8217;, &#8216;com_massmail&#8217;, 0, &#8221;, 1, &#8216;mailSubjectPrefix=\nmailBodySuffix=\n\n&#8217;, 1);<br />
INSERT INTO `jos_components` VALUES (25, &#8216;Menu Editor&#8217;, &#8221;, 0, 0, &#8221;, &#8216;Menu Editor&#8217;, &#8216;com_menus&#8217;, 0, &#8221;, 1, &#8221;, 1);<br />
INSERT INTO `jos_components` VALUES (27, &#8216;Messaging&#8217;, &#8221;, 0, 0, &#8221;, &#8216;Messages&#8217;, &#8216;com_messages&#8217;, 0, &#8221;, 1, &#8221;, 1);<br />
INSERT INTO `jos_components` VALUES (28, &#8216;Modules Manager&#8217;, &#8221;, 0, 0, &#8221;, &#8216;Modules&#8217;, &#8216;com_modules&#8217;, 0, &#8221;, 1, &#8221;, 1);<br />
INSERT INTO `jos_components` VALUES (29, &#8216;Plugin Manager&#8217;, &#8221;, 0, 0, &#8221;, &#8216;Plugins&#8217;, &#8216;com_plugins&#8217;, 0, &#8221;, 1, &#8221;, 1);<br />
INSERT INTO `jos_components` VALUES (30, &#8216;Template Manager&#8217;, &#8221;, 0, 0, &#8221;, &#8216;Templates&#8217;, &#8216;com_templates&#8217;, 0, &#8221;, 1, &#8221;, 1);<br />
INSERT INTO `jos_components` VALUES (31, &#8216;User Manager&#8217;, &#8221;, 0, 0, &#8221;, &#8216;Users&#8217;, &#8216;com_users&#8217;, 0, &#8221;, 1, &#8216;allowUserRegistration=1\nnew_usertype=Registered\nuseractivation=1\nfrontend_userparams=1\n\n&#8217;, 1);<br />
INSERT INTO `jos_components` VALUES (32, &#8216;Cache Manager&#8217;, &#8221;, 0, 0, &#8221;, &#8216;Cache&#8217;, &#8216;com_cache&#8217;, 0, &#8221;, 1, &#8221;, 1);<br />
INSERT INTO `jos_components` VALUES (33, &#8216;Control Panel&#8217;, &#8221;, 0, 0, &#8221;, &#8216;Control Panel&#8217;, &#8216;com_cpanel&#8217;, 0, &#8221;, 1, &#8221;, 1);</p>
<p style="text-align: justify;">===============================================================</p>
<p style="text-align: justify;">DROP table `jos_core_acl_aro`;<br />
CREATE TABLE `jos_core_acl_aro` (<br />
`id` int(11) NOT NULL auto_increment,<br />
`section_value` varchar(240) NOT NULL default &#8217;0&#8242;,<br />
`value` varchar(240) NOT NULL default &#8221;,<br />
`order_value` int(11) NOT NULL default &#8217;0&#8242;,<br />
`name` varchar(255) NOT NULL default &#8221;,<br />
`hidden` int(11) NOT NULL default &#8217;0&#8242;,<br />
PRIMARY KEY  (`id`),<br />
UNIQUE KEY `#__section_value_value_aro` (`section_value`(100),`value`(100)),<br />
KEY `#__gacl_hidden_aro` (`hidden`)<br />
) TYPE=MyISAM CHARACTER SET `utf8`;</p>
<p style="text-align: justify;">===============================================================</p>
<p style="text-align: justify;">DROP table `jos_session`;<br />
CREATE TABLE `jos_session` (<br />
`username` varchar(150) default &#8221;,<br />
`time` varchar(14) default &#8221;,<br />
`session_id` varchar(200) NOT NULL default &#8217;0&#8242;,<br />
`guest` tinyint(4) default &#8217;1&#8242;,<br />
`userid` int(11) default &#8217;0&#8242;,<br />
`usertype` varchar(50) default &#8221;,<br />
`gid` tinyint(3) unsigned NOT NULL default &#8217;0&#8242;,<br />
`client_id` tinyint(3) unsigned NOT NULL default &#8217;0&#8242;,<br />
`data` longtext,<br />
PRIMARY KEY  (`session_id`(64)),<br />
KEY `whosonline` (`guest`,`usertype`),<br />
KEY `userid` (`userid`),<br />
KEY `time` (`time`)<br />
) TYPE=MyISAM CHARACTER SET `utf8`;</p>
<p style="text-align: justify;">===============================================================</p>
<p style="text-align: justify;">That&#8217;s it!</p>
<p style="text-align: justify;">Once you have finished the steps, you can visit your Joomla Page without error.</p>
<p style="text-align: justify;">Thanks for visiting this thread, hope it helps you!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mswebnetwork.net/570/how-to-fix-corrupted-tables-in-joomla-caused-by-mysql-upgrade/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Osama bin Laden leaked videos scam resurrected on Facebook</title>
		<link>http://blog.mswebnetwork.net/510/osama-bin-laden-leaked-videos-scam-resurrected-on-facebook/</link>
		<comments>http://blog.mswebnetwork.net/510/osama-bin-laden-leaked-videos-scam-resurrected-on-facebook/#comments</comments>
		<pubDate>Thu, 19 May 2011 03:34:20 +0000</pubDate>
		<dc:creator>marvin.salazar</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Scam]]></category>
		<category><![CDATA[Security Tips]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[leaked video]]></category>
		<category><![CDATA[malware]]></category>
		<category><![CDATA[naked security]]></category>
		<category><![CDATA[osama bin laden]]></category>
		<category><![CDATA[scam]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://blog.mswebnetwork.net/?p=510</guid>
		<description><![CDATA[The message is linked at first glance on Youtube, but after a closer look it actually points to a website similarly named to the most popular video sharing site. Looking further it has a domain extension ending in ".in" which is an indian extension.]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">We posted this scam last May 05, 2011 titled <a title="Permanent Link to Avoid the death video of Osama Bin Laden malware" rel="bookmark" href="http://blog.mswebnetwork.net/474/avoid-the-death-video-of-osama-bin-laden-malware/">Avoid the death video of Osama Bin Laden malware</a> when it started to flourish. Now like bugs it&#8217;s here again.</p>
<p style="text-align: justify;">Jean Rasczak once said when he arrived on Planet P after it has been bombed &#8220;All right. SPREAD OUT! Fire Teams, you see a bug hole, NUKE IT!&#8221;</p>
<p style="text-align: justify;">Well this is basically what we are doing, if malwares keep on spreading, MSWEB Network, the Philippines Best Web Hosting Provider keeps our users aware by exposing threats online&#8230; and again on Facebook!</p>
<p style="text-align: justify;">Naked Security reports about the latest variation seen of a viral scam that poses as a video of the killing of Osama bin Laden:</p>
<p style="text-align: justify;"><img class="size-full wp-image-511 aligncenter" title="osama-real-video" src="http://blog.mswebnetwork.net/wp-content/uploads/2011/05/osama-real-video.jpg" alt="Osama bin Laden Scam Video" width="497" height="167" /></p>
<blockquote>
<p style="text-align: justify;">OSAMA KILLING REAL VIDEO LEAKEDOMG! real video of Osama Bin Laden being killed. Video leaked by wikileaks. Watch it before it get deleted.</p>
</blockquote>
<p style="text-align: justify;">The message is linked at first glance on <a title="YouTube" href="http://www.youtube.com">Youtube</a>, but after a closer look it actually points to a website similarly named to <a title="The Most Popular Video Sharing Site" href="http://www.alexa.com/siteinfo/youtube.com">the most popular video sharing site</a>. Looking further it has a domain extension ending in &#8220;.in&#8221; which is an indian extension.</p>
<p style="text-align: justify;">Clicker happy folks would end up taken to a third party webpage which poses as a security verification check which pretends to be from YouTube.</p>
<p style="text-align: justify;"><img class="size-full wp-image-512 aligncenter" title="osama-captcha" src="http://blog.mswebnetwork.net/wp-content/uploads/2011/05/osama-captcha.jpg" alt="Osama Captcha Request" width="498" height="543" />If it&#8217;s really from <a title="YouTube" href="http://www.youtube.com">Youtube</a> there will be no questions asked just to view videos.</p>
<p style="text-align: justify;">According to Naked Security &#8220;But what’s happening here is that when you submit the so-called CAPTCHA text you are unwittingly publishing the message to your own Facebook wall. This spreads the message virally to your Facebook friends, and helps spread the scam further on behalf of the bad guys.</p>
<p style="text-align: justify;">The scammers make their money by tricking you into taking an online survey. They earn commission for each person they managed to complete it, and you might be the sort of person who is tempted to answer the questionnaire in the belief that you’ll get to see a video of the Osama bin Laden being killed.&#8221;</p>
<p style="text-align: justify;"><img class="size-full wp-image-513 aligncenter" title="osama-survey" src="http://blog.mswebnetwork.net/wp-content/uploads/2011/05/osama-survey.jpg" alt="Osama Scam Survey" width="498" height="356" /></p>
<p style="text-align: justify;">Ok guys, just remember that the real <a title="YouTube" href="http://www.youtube.com">Youtube</a> would never ask you to complete an online survey before watching a video, and that scams like this are rife across Facebook. As long as Facebook users keep falling for scams like this, they’ll carry on being a problem.</p>
<p style="text-align: justify;">Read from the source: http://nakedsecurity.sophos.com/2011/05/18/osama-bin-laden-leaked-video-scam-rises-again/</p>
<p style="text-align: justify;">The Philippines Best Web Hosting Provider, MSWEB Network Solutions shares awareness and security to all our friends and business partners and to all netizens to promote better and safer internet use.</p>
<p style="text-align: justify;">Send in your comments and share your insights and thoughts about this spreading scam. Visit us at <a title="www.mswebnetwork.net" href="http://www.mswebnetwork.net/">www.mswebnetwork.net</a></p>
<p style="text-align: justify;"><a title="www.mswebnetwork.net" href="http://www.mswebnetwork.net/"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mswebnetwork.net/510/osama-bin-laden-leaked-videos-scam-resurrected-on-facebook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Android Security flaw could affect 99.7% of smartphones</title>
		<link>http://blog.mswebnetwork.net/503/google-android-security-flaw-could-affect-99-7-of-smartphones/</link>
		<comments>http://blog.mswebnetwork.net/503/google-android-security-flaw-could-affect-99-7-of-smartphones/#comments</comments>
		<pubDate>Wed, 18 May 2011 04:58:24 +0000</pubDate>
		<dc:creator>marvin.salazar</dc:creator>
				<category><![CDATA[Gadget]]></category>
		<category><![CDATA[Security Tips]]></category>
		<category><![CDATA[Smartphones]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Vulnerability]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[authToken]]></category>
		<category><![CDATA[flaw]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[hole]]></category>
		<category><![CDATA[vulnerability]]></category>

		<guid isPermaLink="false">http://blog.mswebnetwork.net/?p=503</guid>
		<description><![CDATA[According to the German researchers Bastian Könings, Jens Nickels, and Florian Schaub's this affects Android 2.3.3 and earlier also includes the Calendar, Contacts which transmit information "in the clear" via HTTP, and retrieve an authentication token (authToken) from Google.]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Security is a serious thing and it applies not to just our computers and servers but also to our personal mobile devices such as our smartphones. Android devices might pose a risk in which unauthorized parties might be able to peek at your Google Calendar and Contacts information. So what? Well check this out as it could be a major stalker tool and for everyone who minds their privacy might want to patch up.</p>
<p style="text-align: justify;">The flaw was discovered by the researchers from University of Ulm and exposes a serious issues about privacy and the hardships that is to maintain and keep your Android phones updated.</p>
<p style="text-align: justify;"><img class="alignleft" title="Auth Token Masked" src="http://www.uni-ulm.de/fileadmin/website_uni_ulm/iui.inst.100/institut/mitarbeiter/koenings/authToken_masked.jpg" alt="Auth Token Masked" width="576" height="446" /></p>
<p style="text-align: justify;">According to the German researchers Bastian Könings, Jens Nickels, and Florian Schaub&#8217;s this affects Android 2.3.3 and earlier also includes the Calendar, Contacts which transmit information &#8220;in the clear&#8221; via HTTP, and retrieve an authentication token (authToken) from Google.</p>
<p>See more of the report in the University&#8217;s website @ <a href="http://www.uni-ulm.de/en/in/mi/staff/koenings/catching-authtokens.html">http://www.uni-ulm.de/en/in/mi/staff/koenings/catching-authtokens.html</a></p>
<p>The Philippines Best Web Hosting Provider, MSWEB Network Solutions shares awareness and security to all our friends and business partners and to all netizens to promote better and safer internet use.</p>
<p>Visit us at <a title="www.mswebnetwork.net" href="http://www.mswebnetwork.net">www.mswebnetwork.net</a></p>
<p style="text-align: justify;">&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mswebnetwork.net/503/google-android-security-flaw-could-affect-99-7-of-smartphones/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Warning: Want to see who has viewed your Facebook profile? Take care..</title>
		<link>http://blog.mswebnetwork.net/482/warning-want-to-see-who-has-viewed-your-facebook-profile-take%c2%a0care/</link>
		<comments>http://blog.mswebnetwork.net/482/warning-want-to-see-who-has-viewed-your-facebook-profile-take%c2%a0care/#comments</comments>
		<pubDate>Thu, 05 May 2011 06:37:00 +0000</pubDate>
		<dc:creator>marvin.salazar</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Security Tips]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Vulnerability]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[Gullibility]]></category>
		<category><![CDATA[malware]]></category>
		<category><![CDATA[scam]]></category>
		<category><![CDATA[vulnerability]]></category>

		<guid isPermaLink="false">http://blog.mswebnetwork.net/?p=482</guid>
		<description><![CDATA[Scammers, malware and clikjacking are beginning to stomp their way on FB and many users are falling prey to the scam. Here is the real score why you should not believe "Want to see who has viewed your Facebook profile?"]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><img style="margin: 10px;" title="View your profile status scam!" src="http://sophosnews.files.wordpress.com/2010/07/views-your-profile-status1.jpg?w=640" alt="View your profile status scam!" width="548" height="409" /></p>
<p>I constantly get a lot of this request on FB, even asking if this is true? Here is the real score on this scam.</p>
<p>According to security expert blog Naked Security from Sophos: &#8220;Remember, this scam doesn&#8217;t work as the result of clickjacking, or a vulnerability on Facebook. The scammers are achieving their ends because of human gullibility &#8211; pure and simple. If people considered what they were doing and thought twice about the possible consequences then we would see nothing like as many of these attacks occurring, and our news feeds on Facebook would see less spam.&#8221;</p>
<p>Read the reason why on <a title="NakedSecurity by Sophos" href="http://nakedsecurity.sophos.com/2010/07/23/viewed-facebook-profile-care/" target="_blank">NakedSecurity</a></p>
<p>The Philippines Best Web Hosting Provider, MSWEB Network Solutions shares awareness and security to all our friends and business partners and to all netizens to promote better and safer internet use.</p>
<p>MSWEB Network&#8217;s Official Blog @ <a title="MSWEB Network's Official Blog" href="http://blog.mswebnetwork.net" target="_blank">http://blog.mswebnetwork.net</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mswebnetwork.net/482/warning-want-to-see-who-has-viewed-your-facebook-profile-take%c2%a0care/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t Be An Easy Bait For Hackers</title>
		<link>http://blog.mswebnetwork.net/470/dont-be-an-easy-bait-for-hackers/</link>
		<comments>http://blog.mswebnetwork.net/470/dont-be-an-easy-bait-for-hackers/#comments</comments>
		<pubDate>Wed, 04 May 2011 02:16:08 +0000</pubDate>
		<dc:creator>marvin.salazar</dc:creator>
				<category><![CDATA[Security Tips]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Vulnerability]]></category>
		<category><![CDATA[Generators]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[password]]></category>

		<guid isPermaLink="false">http://blog.mswebnetwork.net/?p=470</guid>
		<description><![CDATA[<p>From the beginning, when people started using passwords it didn’t take long to understand how many people uses the very same passwords over and over. Misspelled words, numbers, birthdays, etc. These are just too predictable for the most ordinary hacker.</p> <p>To give you an idea on how predictable people are, check the list of the [...]]]></description>
			<content:encoded><![CDATA[<p>From the beginning, when people started using passwords it didn’t take long to understand how many people uses the very same passwords over and over. Misspelled words, numbers, birthdays, etc. These are just too predictable for the most ordinary hacker.</p>
<p>To give you an idea on how predictable people are, check the list of the most common and worse password of all time here: http://www.whatsmypass.com/the-top-500-worst-passwords-of-all-time.</p>
<p>If you see your password on this list, please change it now! Why? Keep in mind that every password listed on that website has been used by at least hundreds if not thousands of other people. It&#8217;s like neighboor has the same exact house key or car key that you uses.</p>
<p>Tip: That is why it is recommend to use password generators. There are paid and there are free which is as useful as their commercial counterparts. We uses this one: keepass.info. This utility acts as a generator and a vault.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mswebnetwork.net/470/dont-be-an-easy-bait-for-hackers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Always Backup WordPress Before You Upgrade</title>
		<link>http://blog.mswebnetwork.net/451/always-backup-wordpress-before-you-upgrade/</link>
		<comments>http://blog.mswebnetwork.net/451/always-backup-wordpress-before-you-upgrade/#comments</comments>
		<pubDate>Tue, 03 May 2011 03:39:48 +0000</pubDate>
		<dc:creator>marvin.salazar</dc:creator>
				<category><![CDATA[cPanel]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.mswebnetwork.net/?p=451</guid>
		<description><![CDATA[Even if you use the automatic upgrader inside the wordpress dashboard, it is still a good idea to manually backup. This is where cpanel backup comes in handy.]]></description>
			<content:encoded><![CDATA[<p>It is alway a good idea to upgrade your WordPress installation to the latest build. But before every upgrade it is just as important that you backup your site. </p>
<p>Even if you use the automatic upgrader it is still a good idea to backup. This is where cpanel backup comes in handy.</p>
<div class="wp-caption alignleft" style="width: 610px"><img alt="Cpanel Backup" src="http://www.nete-quette.com/tutorials/images/cpanel-backup.jpg" title="cpanel backup" width="600" height="193" /><p class="wp-caption-text">cpanel backup</p></div>
<p>To learn more on how to backup your site using cpanel backup, please refer to our earlier post on Cpanel Backup.</p>
<p>Cpanel makes your website management such a breeze as it backups your entire WordPress in a click of a button.</p>
<p>WordPress recommends it, Cpanel recommends and MSWEB Network recommends it! </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mswebnetwork.net/451/always-backup-wordpress-before-you-upgrade/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Use Cpanel Backup</title>
		<link>http://blog.mswebnetwork.net/454/how-to-use-cpanel-backup/</link>
		<comments>http://blog.mswebnetwork.net/454/how-to-use-cpanel-backup/#comments</comments>
		<pubDate>Tue, 03 May 2011 03:23:08 +0000</pubDate>
		<dc:creator>marvin.salazar</dc:creator>
				<category><![CDATA[cPanel]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[Restoration]]></category>

		<guid isPermaLink="false">http://blog.mswebnetwork.net/?p=454</guid>
		<description><![CDATA[Essential of a backup is priceless. Often times this is being disregarded only to realize that it s too late. Backup is important period!]]></description>
			<content:encoded><![CDATA[<p>Cpanel backup is an indispensable tool, we always recommend that you do a local backup where you will always have access to. </p>
<p>You can do your backup quite easily. Account backups can be performed using the cPanel backup via the backup icon inside cpanel. If your account is not too big in terms of disk usage, then you can perform a full account backup with just one click.</p>
<div class="wp-caption alignleft" style="width: 610px"><img alt="Cpanel Backup and Restore" src="http://www.backlinkintelligence.com/wp-content/uploads/2009/11/cpanel-Restore-Backup.jpg" title="Cpanel Backup and Restore" width="600" height="435" /><p class="wp-caption-text">Cpanel Backup and Restore</p></div>
<p>If the account is too large for a full automatic backup, it is recommended that you backup the files and the database separately. Cpanel gives you this option.</p>
<p>Access your backup for safekeeping and restoration<br />
A good backup is a backup that works and that you can access easily in a event that you want to perform a restoration. After you perform a full or partial backup, download your compressed file or tarball from your public_html folder to your computer by using your favorite FTP client. After that you can easily upload back the files to your hosting account and your website can easily be restored back.</p>
<p>You may also request MSWEB Network to perform an affordable full backup creation in cd or dvd of your whole website and hand delivered it to your doors steps.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mswebnetwork.net/454/how-to-use-cpanel-backup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook scam with a difference &#8211; Social Tagging Worldwide avoids rogue apps</title>
		<link>http://blog.mswebnetwork.net/448/facebook-scam-with-a-difference-social-tagging-worldwide-avoids-rogue-apps/</link>
		<comments>http://blog.mswebnetwork.net/448/facebook-scam-with-a-difference-social-tagging-worldwide-avoids-rogue-apps/#comments</comments>
		<pubDate>Sat, 30 Apr 2011 15:10:28 +0000</pubDate>
		<dc:creator>marvin.salazar</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Security Tips]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://blog.mswebnetwork.net/?p=448</guid>
		<description><![CDATA[<p style="text-align: justify;">Just a friendly reminder for all of us who uses facebook and it&#8217;s apps. This security notice was released by sophos via their award winning blog named naked security.</p> <p style="text-align: justify;">Quoted from the Naked Security site: &#8220;One of the reasons people fall for these scams is that they promise to provide what [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Just a friendly reminder for all of us who uses facebook and it&#8217;s apps. This security notice was released by sophos via their award winning blog named naked security.</p>
<p style="text-align: justify;">Quoted from the Naked Security site: &#8220;One of the reasons people fall for these scams is that they promise to provide what sounds like useful data &#8211; a list of the people who are most interested in your activities. In particular, most of the scams imply that anyone who is stalking you is likely to end up at the top of the list of people who check your profile.&#8221;</p>
<p style="text-align: justify;">For more info please head on to the Naked Security Blog and see the full details of the rogue apps. Alternatively here is the link for your convenience:  <a href="http://nakedsecurity.sophos.com/2011/04/11/facebook-scam-social-tagging-worldwide/">http://nakedsecurity.sophos.com/2011/04/11/facebook-scam-social-tagging-worldwide/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mswebnetwork.net/448/facebook-scam-with-a-difference-social-tagging-worldwide-avoids-rogue-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Resource Sites</title>
		<link>http://blog.mswebnetwork.net/368/wordpress-resource-sites/</link>
		<comments>http://blog.mswebnetwork.net/368/wordpress-resource-sites/#comments</comments>
		<pubDate>Wed, 26 Jan 2011 09:33:21 +0000</pubDate>
		<dc:creator>marvin.salazar</dc:creator>
				<category><![CDATA[Security Tips]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[32 million]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.mswebnetwork.net/?p=368</guid>
		<description><![CDATA[There are over 32 million WordPress publishers as of December 2010: 16 million blogs hosted on WordPress.com plus 16.7 million active installations of the WordPress.org software.]]></description>
			<content:encoded><![CDATA[<p>We love WordPress and we believe that it is a great application in creating blogs and websites. As a matter of fact base on the statistics given by WordPress itself can be found here: <a href="http://en.wordpress.com/stats/">http://en.wordpress.com/stats/</a> there are about 32 million installations of WordPress! That is the same amount of breached password in Rockyou.com according to <a title="Imperva" href="http://www.imperva.com" target="_blank">Imperva</a> <a title="Consumer Pass Woes" href="http://www.imperva.com/docs/WP_Consumer_Password_Worst_Practices.pdf" target="_blank">analysis report</a>. So why do we love wordpress? It&#8217;s easy&#8230; use WordPress and fall in love with it! Load it up now and fall in love too!</p>
<p><a href="http://en.wordpress.com/stats/"></a>To get you started here are a couple of great worpress tutorial sites that might help you in learning the application inside and out.</p>
<ul>
<li><a href="http://wordpress.tv/category/how-to/">http://wordpress.tv/category/how-to/</a></li>
<li><a href="http://www.wprecipes.com/">http://www.wprecipes.com/</a></li>
<li><a href="http://www.wp-tutorials.org/">http://www.wp-tutorials.org/</a></li>
<li><a href="http://net.tutsplus.com/category/tutorials/wordpress/">http://net.tutsplus.com/category/tutorials/wordpress/</a></li>
</ul>
<p>So why not use WordPress today and see how easy the application is <img src='http://blog.mswebnetwork.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mswebnetwork.net/368/wordpress-resource-sites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to change your admin password for WordPress</title>
		<link>http://blog.mswebnetwork.net/350/how-to-change-your-admin-password-for-wordpress/</link>
		<comments>http://blog.mswebnetwork.net/350/how-to-change-your-admin-password-for-wordpress/#comments</comments>
		<pubDate>Wed, 19 Jan 2011 04:26:36 +0000</pubDate>
		<dc:creator>marleo.salazar</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[back door]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[Philippines]]></category>
		<category><![CDATA[phpmyadmin]]></category>
		<category><![CDATA[tips and tricks]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.mswebnetwork.net/?p=350</guid>
		<description><![CDATA[When you lost or forgotten your WordPress admin password, but still have an access to cPanel or phpmyadmin then here is a tip on how you can reset your access via the back door.]]></description>
			<content:encoded><![CDATA[<p>When you got stuck and forgot your admin password, but still have an access to the database. Here is a helpful tip on how you can reset your access.</p>
<p>Pre-requisite:</p>
<ul>
<li>Recent Database Backup (Important)</li>
<li>Patience (and a whole lot of it!)</li>
<li>Access to cPanel where phpmyadmin is located</li>
<li>Access to phpmyadmin</li>
</ul>
<p>We made sure you give importance to backup, just in case anything goes wrong, you can always revert back to the last known good working backup.</p>
<p><strong>Now for the steps</strong></p>
<p>Easily change the admin password via phpmyadmin.</p>
<ol>
<li>Once logged in to your <strong>cPanel</strong>, click the <strong>phpmyadmin</strong> icon</li>
<li>Select the WordPress database (Example: domain_wprdp1)</li>
<li>On the left side menu select the table &#8220;wp_user&#8221; to browse the content<br />
<blockquote><p>You should see the admin password in encrypted formate like this.</p>
<p><a href="http://blog.mswebnetwork.net/wp-content/uploads/2011/01/Screenshot.jpg"><img src="http://blog.mswebnetwork.net/wp-content/uploads/2011/01/Screenshot-300x172.jpg" border="0" alt="" width="300" height="172" /></a></p></blockquote>
</li>
<li>Click the edit button(highlighted in blue color).</li>
<li>Edit the the current with the following details.<br />
<blockquote><p>21232f297a57a5a743894a0e4a801fc3 (This is the encrypted key for password &#8220;admin&#8221;)</p>
<p><a href="http://blog.mswebnetwork.net/wp-content/uploads/2011/01/Screenshot-11.jpg"><img src="http://blog.mswebnetwork.net/wp-content/uploads/2011/01/Screenshot-11-300x120.jpg" border="0" alt="" width="300" height="120" /></a></p></blockquote>
</li>
<li>Then clik the go button.<br />
<blockquote><p><a href="http://blog.mswebnetwork.net/wp-content/uploads/2011/01/Screenshot-12.jpg"><img src="http://blog.mswebnetwork.net/wp-content/uploads/2011/01/Screenshot-12-300x120.jpg" border="0" alt="" width="300" height="120" /></a></p>
<p><strong>Password change has completed!</strong></p></blockquote>
</li>
</ol>
<p>Now you should be able to log in to the wordpress admin with the following credentials.</p>
<p>User: admin and Password: admin</p>
<p>For more helpful tips on WordPress always visit our blog at <a href="http://blog.mswebnetwork.net">http://blog.mswebnetwork.net</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mswebnetwork.net/350/how-to-change-your-admin-password-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

