Using Facebook or Twitter account while you are on a public network unsecured wifi is like giving invitation to hackers.Then this is the time that you should think about your account security.If you think that facebook or Twitter are secured websites then it’s the time to face the reality. they are not secured.Whenever you login into your facebook or twiiter account check the address bar of your browser you will see something like

http://www.facebook.com/home.php?Similar is the case with twitter.They use http protocol instead of secured https protocol.But if you login into your gmail account you will notice that it uses https protocol.

So, the trick I am telling you works only on websites like facebook, twiiter, flickr but not on secured websites like Gmail. So here isTrick to Hack Facebook and Twitter Password on Wifiand also the method of protection from this hack.This trickdoesn’trequire any programmingknowledgeand everyone can use this trick easily.


1.Download firesheeFirefox extension.This is a freeware extension for firefox browser.

2. Once installed it will open a sidebar window into your firefox browser.
3.Now it will show all the people who are connected to unsecured wifi network.Once they login into your facebook or twitter account you will get a notification and with a single click you can login into their account.
This whole thing work on the technique of cookie hijacking.Once your session cookie is hacked then anybody can login into your account.These cookies can be easily caputered on unsecured wifi network.
The best way to protect yourself from such a hacking trick is to avoid using your facebook or twitter accounts on unsecured wifi networks as it is a security lapse from the websites not on your side.

Backtrack

Posted: April 22, 2012 in MOBILE TIPS&TRICKS
Tags:

 

Login to BackTrack

Once the BackTrack is Installed, the default username and password required to log in are root / toor.
NOTE: You will not be able to see the password as you type it.

GUI

After login give startx command.

Getting Networking to work

Setting your IP manually

We will first set up the networking manually. In the following example we will assume the following addresses and their purpose:
IP Address – 192.168.1.112/24
Default Gateway – 192.168.1.1
DNS server – 192.168.1.1

In order to set these up we will run the following commands:
root@bt:~# ifconfig eth0 192.168.1.112/24
root@bt:~# route add default gw 192.168.1.1
root@bt:~# echo nameserver 192.168.1.1 > /etc/resolv.conf

Getting a static IP to stick between reboots

These settings however will only last until you reboot, so if we want to save them between reboots we need to edit the /etc/network/interfaces file like this:

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0
iface eth0 inet static
address 192.168.1.112
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1

Edit the file as appropriate, then have the network come up automatically at boot time:

root@bt:~# update-rc.d networking defaults
root@bt:~# /etc/init.d/networking restart

Getting an IP from DHCP

In order to get an IP from a DHCP server we can issue the dhclientcommand as follows:

root@bt:~# dhclient eth0
Internet Systems Consortium DHCP Client V3.1.1
Copyright 2004-2008 Internet Systems Consortium.
All rights reserved.
For info, please visit http://www.isc.org/sw/dhcp/

Listening on LPF/eth0/00:0c:29:81:74:21
Sending on LPF/eth0/00:0c:29:81:74:21
Sending on Socket/fallback
DHCPREQUEST of 192.168.1.112 on eth0 to 255.255.255.255 port 67
DHCPACK of 192.168.1.112 from 192.168.1.1
bound to 192.168.1.112 — renewal in 37595 seconds.
root@bt:~#

Using the script to start networking

There is a script to start networking in the /etc/init.d directory which attempts to start every interface listen in /etc/network/interfaces (you can remove the ones you don’t need). To start it issue the following command:
root@bt:~# /etc/init.d/networking start

WICD Network Manager

Another way to set up your networking is using the WICD Network Manager, you can find it in the menu:
Menu > Internet > Wicd Network Manager

Changing the root password

As you know Backtrack comes with a default username and password (root/toor) it is IMPORTANT that we change that root password especially when running services such as SSH. We can change the password by issuing the passwd command:

root@bt:~# passwd Enter new UNIX password: {enter your new password here } Retype new UNIX password: {enter your new password again} passwd: password updated successfully root@bt:~#

Starting services

BackTrack has various services such as Apache, SSH, MySQL, VNC, etc. They are all disabled by default. To start a service such as SSH, you can use the service init scripts. For example, to start the SSH service:

root@bt:~# sshd-generate # Specific to the SSH service – needed to generate SSH keys
root@bt:~# /etc/init.d/ssh start
Starting OpenBSD Secure Shell server: sshd.
root@bt:~# /etc/init.d/ssh stop
Stopping OpenBSD Secure Shell server: sshd.
root@bt:~#
When using a ssh server for the first time on Backtrack you will need to generate keys:
root@bt:~# sshd-generate
To enable a service at boot time, you can use the update-rc.d command, for example, having SSH start at boot time:
root@bt:~# update-rc.d -f ssh defaults
Adding system startup for /etc/init.d/ssh …
/etc/rc0.d/K20ssh -> ../init.d/ssh
/etc/rc1.d/K20ssh -> ../init.d/ssh
/etc/rc6.d/K20ssh -> ../init.d/ssh
/etc/rc2.d/S20ssh -> ../init.d/ssh
/etc/rc3.d/S20ssh -> ../init.d/ssh
/etc/rc4.d/S20ssh -> ../init.d/ssh
/etc/rc5.d/S20ssh -> ../init.d/ssh
root@bt:~#

Common apt commands

apt-get install Downloads and all of its dependencies, and installs or upgrades them.
apt-get remove [--purge] Removes and any packages that depend on it. –purge specifies that packages should be purged.
apt-get update Updates packages listings from the repo, should be run at least once a week.
apt-get upgrade Upgrades all currently installed packages with those updates available from the repo. should be run once a week.
apt-get dist-upgrade [-u] Similar to apt-get upgrade, except that dist-upgrade will install or remove packages to satisfy dependencies.
apt-cache search Searches packages and descriptions for .
apt-cache show Shows the full description of .
apt-cache showpkg Shows a lot more detail about , and its relationships to other packages.
man apt Will give you more info on these commands as well as many that are in less common usage.

Common dpkg commands

dpkg -i Installs a package file; one that you downloaded manually, for example.
dpkg -c Lists the contents of a .deb file.
dpkg -I Extracts package information from a .deb file.
dpkg -r Removes an installed package named dpkg -P Purges an installed package named . The difference between remove and purge is that while remove only deletes data and executables, purge also deletes all configuration files in addition.
dpkg -L Gives a listing of all the files installed by . See also dpkg -c for checking the contents of a .deb file.
dpkg -s Shows information on the installed package . See also apt-cache show for viewing package information in the Debian archive and dpkg -I for viewing package information extracted from a .deb file.
dpkg-reconfigure Reconfigures an installed package
man dpkg Will give you more info on these commands as well as many that are in less common usage.

How do I find more information on a particular command or programs usage ?

Most commands will have what is called a man page (manual page) which can be viewed by typing:
root@bt:~# man
Another very good resource on linux command usage can be found at linuxcommand.org
Some programs do not have a man page, but you can usually get more information on it’s usage by typing:
root@bt:~# Just the program name without any arguements.
or
root@bt:~# -help
or
root@bt:~# –help
or
root@bt:~# -h
Some programs use other methods, but they are usually just a variation of one of the above five commands.

Make your PC speak

Posted: April 22, 2012 in MOBILE TIPS&TRICKS
Tags:

Now you can create your own text to speech converter software to make your computer speak whatever you type. This is a VBS script trick and It’s pretty cool. Just run this script and make it read any funny sentence. Copy the code given below in notepad and save it as anyname.vbs. Make sure that you save it as .vbs file.

Dim message, sapi
message=InputBox(“What do you want me to say?”,”Speak to Me”)
Set sapi=CreateObject(“sapi.spvoice”)
sapi.Speak message

Note: If copy paste doesn’t work then you have to type the code yourself. (Make sure of the double quotes used in the code in the copy/paste case)

After making a vbs file just double click on that file and type anything you want in the textbox.

Google Search without Internet

Posted: April 22, 2012 in MOBILE TIPS&TRICKS
Tags:

You can search Google’s Search Engine from your cell by sending Google an SMS. You don’t need an internet connection for this, and it’s free except for the standard SMS charges.

Just send an SMS to Google and you will get your search results via SMS from Google.

SMS to 9773300000

Dancing Firefox

Posted: April 22, 2012 in MOBILE TIPS&TRICKS
Tags:

Type the following in your firefox address bar (the place where you type the website name)

chrome://global/content/alerts/alert.xul

Now you access Facebook even with stone age phones like Nokia 1100 which even don’t have Gprs facility.

Access to facebook account and Status updates is completely free.If you also want to use features like Notifications, updating friends wall you have to subscribe to Fonetwish premium plan which is very cheap.

How it Works:

Just dial *325# or *fbk# from your mobile and wait for the confirmation message on the screen. Give your username and password to access Facebook without any Data Charges.

Note:-This service is currently available on Airtel, Aircel and Tata Docomo (India)

 

 


DOWNLOAD HERE