Tips and Advice For Your Web Site
In: Internet
9 Mar 2010Microsoft has started banning what users in areas of the world can search for. The latest ban is in all Arabic-speaking countries. If you’re in one of those areas, and search for the word “sex,” you receive the following response:
Similar “bans” are in place in China, Taiwan, Hong Kong, India, Turkey, Thailand, Singapore, and Malaysia! The Open Net Initiative found that the additional English and Arabic terms are also being blocked:
The question is: why would Microsoft be doing this? The same bans are not in place on Google, Yahoo, etc. Very strange! Do you think they’re being influenced by governments in the region?
In: Internet| Miscellaneous
2 Mar 2010Topeka, Kansas has officially (and temporarily) changed its name to Google, Kansas. In an effort to sway Google, Inc. to provide Topeka…I mean Google…with its new gigabit fiber Internet, Mayor Bill Bunten signed a proclamation yesterday!
The name change is in place for the entire month of March. According to Bunten, the hope is that the name change “would set Topeka apart from other cities vying for Google’s attention, which include Grand Rapids, Mich., and Baton Rouge, La.”
I think they might be on to something here. Google, Inc. is initially going to be releasing the new Internet service to a select few places before making a more widespread offering…and it will be hard to ignore the name change of a fairly large city. Maybe I can increase my chances by naming my unborn daughter Google (due in June)? Just a thought…
This is a quick and easy way to help secure your WordPress blog. Last September, tons of blogs worldwide were infected with malicious codes.
By creating a new file and uploading it to your plugin directory (/wp-content/plugins/) you can automatically block malicious URL requests! Just open a new php file, and paste the following in the file:
<?php /* Plugin Name: Block Bad Queries */
if (strlen($_SERVER['REQUEST_URI']) > 255 ||
strpos($_SERVER['REQUEST_URI'], “eval(“) ||
strpos($_SERVER['REQUEST_URI'], “base64″)) {
@header(“HTTP/1.1 414 Request-URI Too Long”);
@header(“Status: 414 Request-URI Too Long”);
@header(“Connection: Close”);
@exit;
} ?>
I definitely don’t understand much about hacking, but the major attacks in September were base64 code. This file will check for base64 as well as evel( code that could be a threat going forward. This is definitely worth the 5 minutes it will take!
<?php /* Plugin Name: Block Bad Queries */
if (strlen($_SERVER['REQUEST_URI']) > 255 ||
strpos($_SERVER['REQUEST_URI'], “eval(“) ||
strpos($_SERVER['REQUEST_URI'], “base64″)) {
@header(“HTTP/1.1 414 Request-URI Too Long”);
@header(“Status: 414 Request-URI Too Long”);
@header(“Connection: Close”);
@exit;
} ?>
In: Humor
5 Feb 2010This is funny. While I don’t think the “Full Gadget Ratio” equation literally works…you still get the idea!
In: Humor
4 Feb 2010We’ve all gotten the emails. Dear sir, I’ve just inherited a large fortune but need your assistance in getting the money released. Please provide me with you bank account, and I will share the money…
But nobody actually responds to those emails, right? Well apparently, there are more suckers out there than I’d realized. According to a study by an investigation firm, Ultrascan, $9.3 billion was stolen in 2009 as a direct result of these scams! Those figures are up from $6.3 billion in 2008.
These scams are typically referred to as 419 scams, referring to article 419 of the Nigerian Criminal Code (the country where these scams first originated). The reason in the huge growth is that scammers are now focusing their efforts on emerging Internet markets, like China, India, South Korea, and Vietnam.
So what’s the solution? Apparently, one isn’t in sight. While a growing number of people in the US and Europe have gotten wise to the attempts, much of the rest of the world still needs to catch up. And furthermore, it’s virtually impossible for law enforcement to go after scammers outside of their country. Personally, I have come up with a solution: just email me your social security number, and I’ll share it with you
Starting a web site or trying to improve your online presence can be a daunting task for the casual computer user. Drawing from experience in the web hosting and ecommerce industry, The Common Hoster is your spot for technical resources, in an easy to understand format!