Saturday, January 30, 2010
There isn't an overview for this tutorial, seeing as it's so short. I'll make it a step-by-step thing.
1. Download and install uTorrent.
2. Open it and hit "Create New Torrent".
3. Select your file, or directory. Add your trackers in the box (look on your torrent site for this info). Check the "Start Seeding" box.
4. It will generate a .torrent file. This is the file you upload to the torrent site.
5. Log in to whatever torrent site it is, find the upload button. Fill out all the info, and then hit upload.
6. Within a few minutes of uploading your .torrent file, you will notice in uTorrent that you have activity. Congratulations, you are now seeding.
Links to torrent sites:
http://www.demonoid.com/
http://thepiratebay.org/
http://www.torrentreactor.net/
http://isohunt.com/
http://www.sumotorrent.com/index.php
Total defence against SQL injection
GPC, 3 ways of authentication.
G- GET, P – POST and C – Cookie.
Hackers, often use GET method to inject their “union+select+” queries or POST method from one server to another, if authentication has javascript filtering using their OR 1=1 method and the last but not the least, cookies. Cookies are used by very few hackers, however with the use of session cookies, their successful attempts are limited to minimum.
addslashes() is one of the function that a developer can use if !(get_magic_quotes_gpc). But, adding this line can be troublesome in most cases, where amount of variables are really high, it may make the code look sluggish to have mysql_real_escape_string() in every variable passed. To get rid of all these:
Go to your php.ini file and set:
magic_quotes_gpc = On
magic_quotes_gpc is by default set to Off for optimal performance of the server.
However, if you are using a shared/paid hosting and do not have access to php.ini file then add the following to your .htaccess file.
php_flag magic_quotes_gpc on
However, cannot promise that above mentioned “tweak” will work till eternity. You can never know what 0-day comes up!
Play safe be secured
Play Safe!
Friday, October 2, 2009
Speed up your internet by 20%
Microsoft reserves 20% of your available bandwidth for their own purposes like Windows Updates and interrogating your PC etc
You can get it back:
Click Start then Run and type "gpedit.msc" without quotes.This opens the group policy editor. Then go to:
Local Computer Policy
then Computer Configuration
then Administrative Templates then Network then QOS Packet Scheduler and then to Limit Reservable Bandwidth.
Double click on Limit Reservable bandwidth. It will say it is not configured, but the truth is under the 'Explain' tab i.e."By default, the Packet Scheduler limits the system to 20 percent of the bandwidth of a connection, but you can use this setting to override the default."
So the trick is to ENABLE reservable bandwidth, then set it to ZERO. This will allow the system to reserve nothing, rather than the default 20%.
Gr8 no.......