Friday, October 3, 2014

How To Unblock Streaming Sites In Australia (Or Anywhere)

Want to unblock streaming sites from Government blocks? There are many programs you can use, or websites but by far the cheapest option we have found is 143VPN. You can use this coupon code for 10% off: TDJM13K1KX

Examples of sites you can unblock:

  • Kinox.to

  • Movie4k

  • Hulu

  • Netflix


With the recent blockage from Australia of Kinox.to and Movie4k, this is a powerful tool to have in your movie watching toolbelt.

How To Keep Hackers From Scanning Your Websites For Vulnerabilities

Want to prevent hackers from scanning your site for exploits? Paste this code in your .htaccess file on the root directory and it will block most scanners from being able to scan your website.

How To Troll Email Harvesters On Your Sites

Want to stop email harvesters from gathering information on your website? This is a little trick I want to show you on how to basically troll email harvester programs into harvesting fake email addressed when they attempt to harvest from your website. Add the below code to your .htaccess file in your root directory of your websites and they will get random emails instead of the ones on your website.


#protect htaccess file

<Files .htaccess>
deny from all
</Files>

RewriteEngine on

RewriteBase /
RewriteCond %{HTTP_USER_AGENT} ^EmailSiphon [OR]
RewriteCond %{HTTP_USER_AGENT} ^EmailWolf [OR]
RewriteCond %{HTTP_USER_AGENT} ^ExtractorPro [OR]
RewriteCond %{HTTP_USER_AGENT} ^Mozilla.*NEWT [OR]
RewriteCond %{HTTP_USER_AGENT} ^Crescent [OR]
RewriteCond %{HTTP_USER_AGENT} ^CherryPicker [OR]
RewriteCond %{HTTP_USER_AGENT} ^[Ww]eb[Bb]andit [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebEMailExtrac.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^NICErsPRO [OR]
RewriteCond %{HTTP_USER_AGENT} ^Teleport [OR]
RewriteCond %{HTTP_USER_AGENT} ^Zeus.*Webster [OR]
RewriteCond %{HTTP_USER_AGENT} ^Microsoft.URL [OR]
RewriteCond %{HTTP_USER_AGENT} ^Wget [OR]
RewriteCond %{HTTP_USER_AGENT} ^LinkWalker [OR]
RewriteCond %{HTTP_USER_AGENT} ^sitecheck.internetseer.com [OR]
RewriteCond %{HTTP_USER_AGENT} ^ia_archiver [OR]
RewriteCond %{HTTP_USER_AGENT} ^DIIbot [OR]
RewriteCond %{HTTP_USER_AGENT} ^psbot [OR]
RewriteCond %{HTTP_USER_AGENT} ^EmailCollector
RewriteCond %{HTTP_USER_AGENT} ^Anarchie [OR]
RewriteCond %{HTTP_USER_AGENT} ^ASPSeek [OR]
RewriteCond %{HTTP_USER_AGENT} ^attach [OR]
RewriteCond %{HTTP_USER_AGENT} ^autoemailspider [OR]
RewriteCond %{HTTP_USER_AGENT} ^Xaldon\ WebSpider [OR]
RewriteCond %{HTTP_USER_AGENT} ^Xenu [OR]
RewriteCond %{HTTP_USER_AGENT} ^Zeus.*Webster [OR]
RewriteCond %{HTTP_USER_AGENT} ^Zeus

RewriteRule ^.*$ http://english-61925045732.spampoison.com [R,L]