RN-QQHFzQYtPGkUCfyu8eve2qf0

Sunday 29 December 2013

The missing ingredient

0 comments

It didn't work!

Followed that tutorial right from the first line to the last one. Did everything it said, but still didn't get what you were looking for? Believe me, it was supposed to be that way. Step by step code execution on the cli is not what it takes to be a hacker. Every wireless adapter, computer system, operating system, and wireless network is different. There is no fixed set of code which is bound to work with all wifi's on all machines. Hacking is like mathematics. Knowing the formula doesn't mean you can solve all the problems, and seeing the solution of one problem will definitely not help you with another one. So, when you are hacking a WEP wifi network, what are you actually doing?






What were you doing?

Firstly, you are capturing the packets that the wifi network is... like throwing away in the air. The sole purpose of those packets is to indicate its presence. Airodump just takes all the packets that come its way and collects them. These packets usually contain some useful information.Secondly, you are using a program to extract the password from the captured data packets.


How were you doing it?

Now, firstly, we do something not completely required. We turn on monitor mode. Its just like creating a virtual interface which you'll use solely for monitoring purpose. Now this task is achieved my using airmon-ng and the new interface is called mon0.
Secondly, we use airodump-ng to capture packets from mon0 and store them in a file. Finally, we use aircrack-ng to use the data in the dump file to extract the password.


What problems are you going to face?

Most of the time, I have seen beginners are unable to configure their machines properly to a state where they can execute the commands. For this, look at the other tutorials.I am assuming you have Kali completely setup and running fine and accepting your wireless cards. So the problems-
  1. Not enough data packets.
  2. Not WEP enrypted. (i.e. WPA or WPA-2)
  3. Hidden
Now the last two problems will be dealt with in the tutorials to come. The first problem is very common and there is no straightforward way to deal with it. You can only try to speed up the data capture rate. There are a lot of ways to do that. A lot depends on how far you are from the network. I am writing a complete tutorial for this. But remember, hacking requires patience. You're gonna need it when you get to higher levels where you will bruteforce networks for the passwords.
For now, here is a great tutorial on getting data packets fast.

Speeding Up WEP Hacking

Tuesday 26 November 2013

Make Your Any Android Phone Faster By 10x (2014) - Jpt Videos

0 comments
Make Your Any Android Phone Faster By 10x (2014) In Just One Simple Step.You Don't Need Any Software For This.Increase performance of your Android smartphone with simple trick.

Speed up android smartphone with just a single tip.

Share this video:- http://youtu.be/RdxnLVYNzdg
 
   Make your android phone faster like iphone.Make android faster 2014 latest new video.

Please Subscribe :-  https://www.youtube.com/user/jptv1dz?annotation_id=channel%3A54640200-0000-2ee8-8053-001a113dc044&feature=iv&src_vid=aUZJzIU9LeE

Increase performance of your Android smartphone with simple trick.

Speed up android smartphone with just a single tip.

Links:-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
http://facebook.com/suraj.pandey.3532
http://instagram.com/canugod
http://itstrickszone.blogspot.com

How to make Android faster By 10x (2014).Speed up your android phone by 10x.Make your android phone faster than before.

Speed up youtube videos:- https://www.youtube.com/watch?v=0d8vsBHfHws&list=TLcWz6cgnJ2Yc

Speed up your google chrome:- https://www.youtube.com/watch?v=Pdtu0RrE7Co&index=4&list=TLcWz6cgnJ2Yc

Epic Girl Friend Prank:- https://www.youtube.com/watch?v=aUZJzIU9LeE&index=1&list=TLcWz6cgnJ2Yc

How to make Android faster By 10x (2014).Make android faster.speed up android phone.make android faster 2014,speed up your android phone like new...

Watch it again:- http://youtu.be/RdxnLVYNzdg

How to make Android faster By 10x (2014)
How to make Android faster By 10x 
How to make Android faster

Friday 8 November 2013

Installing Kali On Hard Disk using usb

0 comments
Booting and installing Kali from a USB stick is the easiest and fastest method of getting up and running. In order to do this, we first need to create the Kali ISO image on a USB drive. 

Preparing for the USB copy

  1. Download Kali linux.
  2. If running Windows, download Win32 Disk Imager.
  3. No special software is needed for a *nix OS.
  4. A USB Key (at least 2GB capacity).

Kali Linux Live USB Install Procedure

Imaging Kali on a Windows Machine

  1. Plug your USB stick into your Windows USB port and launch the Win32 Disk Imager software
  2. Choose the Kali Linux ISO file to be imaged and verify that the USB drive to be overwritten is the correct one.
  3. kali-usb-install-windows
  4. Once the imaging is complete, safely eject the USB drive from the Windows machine. You can now use the USB device to boot into Kali Linux.
If you just want to use Kali live, you can stop right here. Reboot and press F-12 or whatever shows up the multiboot menu, select the USB drive and run kali live.

Imaging Kali on a Linux Machine

Creating a bootable Kali Linux USB key in a Linux environment is easy. Once you’ve downloaded your Kali ISO file, you can use dd to copy it over to your USB stick as follows:
WARNING. Although the process of imaging Kali on a USB stick is very easy, you can just as easily destroy arbitrary partitions with dd if you do not understand what you are doing. 
In other words, you can completely mess up your hard drive to a state from which repair would required professional help. You have been warned.
  1. Plug in your USB device to your Linux computer’s USB port.
  2. Verify the device path of your USB storage with dmesg.
  3. Proceed to (carefully!) image the Kali ISO file on the USB device:
 dd if=kali.iso of=/dev/sdb bs=512k
That’s it, really! You can now boot into a Kali Live / Installer environment using the USB device.

Adding Persistence to Your Kali Live USB

Adding persistence (the ability to save files and changes across live boots) to your Kali Linux image can be very useful in certain situations. To make your Kali Linux USB stick persistent, follow these steps. In this example, we assume our USB drive is /dev/sdb. If you want to add persistence, you’ll need a larger USB device than we listed in our prerequisites above.
  1. Image the Kali Linux ISO to your USB stick as explained above, using the “Linux Method” and dd.
  2. Create and format an additional partition on the USB stick. In our example, we usegparted by invoking: 

     gparted /dev/sdb
  3. Your current partitioning scheme should look similar to this: 

    usb-persistence-basic-partitioning
  4. Proceed to format a new partition of your desired size to be used for persistence. In our example, we used all the remaining space available. Make sure the volume label of the newly created partition is persistence, and format it using the ext4 filesystem.
    usb-persistence-creating-partition
  5. Once the process is complete, mount your persistence USB partition using the following commands:

     mkdir /mnt/usb
     mount /dev/sdb2 /mnt/usb
     echo "/ union" >> /mnt/usb/persistence.conf
     umount /mnt/usb
  6. Plug the USB stick into the computer you want to boot up. Make sure your BIOS is set to boot from your USB device. When the Kali Linux boot screen is displayed, select “Live boot” from the menu (don’t press enter), and press the tab button. This will allow you to edit the boot parameters. Add the word “persistence” to the end of the boot parameter line each time you want to mount your persistent storage. 
    usb-persistence

Installing Kali - Dual Booting Kali With Windows

0 comments

Kali Linux Dual Boot with Windows

Installing Kali alongside a Windows installation can be quite useful. However, you need to exercise caution during the setup process. First, make sure that you’ve backed up any important data on your Windows installation. Since you’ll be modifying your hard drive, you’ll want to store this backup on external media. Once you’ve completed the backup, we recommend you peruse Kali Linux Hard Disk Install, which explains the normal procedure for a basic Kali install.
In our example, we will be installing Kali Linux alongside an installation of Windows 7, which is currently taking up 100% of the disk space in our computer. We will start by resizing our current Windows partition to occupy less space and then proceed to install Kali Linux in the newly-created empty partition.
Download Kali Linux and either burn the ISO to DVD, or prepare a USB stick with Kali linux Liveas the installation medium. If you do not have a DVD or USB port on your computer, check out the Kali Linux Network Install. Ensure you have:
  • Minimum of 8 GB free disk space on Windows
  • CD-DVD / USB boot support

Preparing for the Installation

  1. Download Kali Linux.
  2. Burn The Kali Linux ISO to DVD or copy Kali Linux Live to USB.
  3. Ensure that your computer is set to boot from CD / USB in your BIOS.

Dual Boot Installation Procedure

  1. To start your installation, boot with your chosen installation medium. You should be greeted with the Kali Boot screen. Select Live, and you should be booted into the Kali Linux default desktop.
  2. Now launch the gparted program. We’ll use gparted to shrink the existing Windows partition to give us enough room to install Kali Linux. 

    dual-boot-kali-01
  3. Select your Windows partition. Depending on your system, it will usually be the second, larger partition. In our example, there are two partitions; the first is the System Recovery partition, and Windows is actually installed in /dev/sda2. Resize your Windows partition and leave enough space (8GB minimum) for the Kali installation. 

    dual-boot-kali-03
  4. Once you have resized your Windows partition, ensure you “Apply All Operations” on the hard disk. Exit gparted and reboot.
    dual-boot-kali-05

Kali Linux Installation Procedure

  1. The installation procedure from this point onwards is similar to a Kali Linux Hard Disk install, until the point of the partitioning, where you need to select “Guided – use the largest continuous free space” that you created earlier with gparted.

    dual-boot-kali-09
  2. Once the installation is done, reboot. You should be greeted with a GRUB boot menu, which will allow you to boot either into Kali or Windows. 
    dual-boot-kali-11

VMWare Tools

0 comments
Once you are done setting Kali Linux with VMWare, there is still stuff that you might want to do.
Note: This article assumes that you have basic knowledge about linux cli and have already installed kali linux. If not, read this article about installing kali linux and getting acquainted to command line interface.

Should you decide to create your own VMware installation of Kali Linux rather than using the  pre-made VMware images available at Kali Linux official site, you will need to follow the instructions below in order to successfully install VMware Tools in your Kali installation. You can opt to install either open-vm-tools, or the native VMWare tools.

Installing open-vm-Tools

This is probably the easiest way to get “VMWare tools” functionality inside a kali VMWare guest.
apt-get install open-vm-tools

This should be sufficient, but if you are feel that this was way too easy, then you are up for an adventure. Without knowledge of cli, what follows might look like a nightmare.

Installing VMware Tools in Kali

If open-vm-tools does not work for you, or if you prefer using native VMWare tools, begin by installing some packages that are required by the VMware Tools installer:
echo cups enabled >> /usr/sbin/update-rc.d
echo vmware-tools enabled >> /usr/sbin/update-rc.d

apt-get install gcc make linux-headers-$(uname -r)
ln -s /usr/src/linux-headers-$(uname -r)/include/generated/uapi/linux/version.h /usr/src/linux-headers-$(uname -r)/include/linux/
Next, mount the Vmware tools ISO by clicking “Install VMware Tools” from the appropriate menu. Once the VMware Tools ISO has been attached to the virtual machine, we mount the drive and copy the VMware Tools installer to /tmp/.
mkdir /mnt/vmware
mount /dev/cdrom /mnt/vmware/
cp -rf /mnt/vmware/VMwareTools* /tmp/
Then, change directory to /tmp/, extract the tarball and start the installer:
cd /tmp/
tar zxpf VMwareTools-*.tar.gz
cd vmware-tools-distrib/
./vmware-tools-install.pl
Follow the prompts for the VMware Tools installation and you are done.
Lastly, to get rid of possible VMWare service errors, edit the /etc/init.d/vmware-tools script, and at around line 876, change:
 # POSIX shell uses '!' for negation during bracket expansion.
   # See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html
   IFS=.
   set -- `uname -r`
to :
 # POSIX shell uses '!' for negation during bracket expansion.
   # See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html
   IFS=.
   set -- `uname -r|cut -d"-" -f1`
Once changed, proceed to restart the VMWare tool service.

Slow Mouse Movement in VMware

If your mouse movement is slow and sluggish in a Kali Linux VMware guest, try installing the xserver-xorg-input-vmmouse package in the Kali guest.
apt-get install xserver-xorg-input-vmmouse
reboot

Monday 4 November 2013

How To Grow Up Your Nails In A Week By JPT Videos

0 comments
Do you want to grow up your nails in a very small time ? If your answer is yes then follow some basic steps from here.

Materials Required:-
   1) Mustard Oil
   2) Water
   3) Salt
   4) Bowl or Cup


Steps:-
  1) Put some amount of water in a bowl.
  2) Mix 1 spoon of salt in it.
  3) Add Some amount of mustard oil.
  4) Mix them properly.
  5) Again add some amount of salt.
  6) Now put your finger in it or drop your nail in it for an hour or more than that.Do this process daily till a week you will see the changes which will 101% make you satisfied.

Thank You Everyone Hope This Tutorial Will Help You. See You Next Time In Next Post.
   Comment Below If You Have Any Question.

Live Video:- 

Monday 14 October 2013

Samsung Galaxy Ace 3 Tips & Tricks - Jpt videos

0 comments
Samsung galaxy Ace 3 hidden tips and tricks By Jpt Videos.In this tutorial i have shown you some basic tips and tricks for samsung galaxy ace 3.

Subscribe:- http://www.youtube.com/subscription_center?add_user=jptv1dz
Share this video:- http://youtu.be/cC5uiaRjOHM

Samsung Galaxy Ace 3 Tips & Tricks
Samsung Galaxy Ace 3 Tips & Tricks
samsung ace 3 tips and tricks

Links:-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
http://facebook.com/suraj.pandey.3532
http://instagram.com/canugod
http://itstrickszone.blogspot.com

Samsung Galaxy Ace 3 Tips & Tricks  .Samsung galaxy ace 3 tricks,Samsung galaxy ace 3 tricks.

Subscribe:- http://www.youtube.com/subscription_center?add_user=jptv1dz

Share This Video:- http://youtu.be/cC5uiaRjOHM

Speed up youtube videos:- https://www.youtube.com/watch?v=0d8vsBHfHws&list=TLcWz6cgnJ2Yc

Speed up your google chrome:- https://www.youtube.com/watch?v=Pdtu0RrE7Co&index=4&list=TLcWz6cgnJ2Yc

Epic Girl Friend Prank:- https://www.youtube.com/watch?v=aUZJzIU9LeE&index=1&list=TLcWz6cgnJ2Yc

Samsung Galaxy Ace 3 Tips & Tricks
Samsung Galaxy Ace 3 Tips & Tricks
Samsung Galaxy Ace 3 Tips and Tricks
samsung galaxy ace 3 tips
samsung ace 3 tips and tricks

CLICK TO WATCH THIS VIDEO

Tuesday 8 October 2013

How To Lose Weight | Best Way To Lose Weight Fast

1 comments
Do you want to lose your weight fast in a very simple and easy way if your answer is yes then you are in the best place just you need to do is follow 1 rule that is shown in the given video . After watching this video you will be able to lose your weight very very fast.So, what are you waiting for just click in the given video link and don't forget to share it .This Video Shows You How To Lose Your  Weight Very Very Fast In Just One Simple Step. A Best Way To Lose Weight Fast And Quickly.

  Share this video :- http://youtu.be/hlRpeGGKZRI

Subscribe :-
http://www.youtube.com/subscription_center?add_user=jptv1dz

     This is a very very simple step to lose your weight in a small time. Just you need to do some simple step daily for 1 months and see the changes yourself.



Subscribe Me:-
http://www.youtube.com/subscription_center?add_user=jptv1dz

   After watching this video you will be able to lose your weight fast and learn some steps on how to lose weight - how to lose weight very fast - tips to lose weight fast - Ways to lose weight.

Links:-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~­~~~~~~~~
http://facebook.com/suraj.pandey.3532
http://instagram.com/canugod
http://itstrickszone.blogspot.com
http://youtube.com/jptv1dz

  How to lose weight fast - how to lose weight - tips to lose weight - how to lose weight quick - lose weight fast .....
 
Make You Android Fast By 10x:- https://www.youtube.com/watch?v=RdxnLVYNzdg&list=TLayM7DjtPSUw&index=3

Speed up youtube videos:- https://www.youtube.com/watch?v=0d8vs...

Speed up your google chrome:- https://www.youtube.com/watch?v=Pdtu0...

Epic Girl Friend Prank:- https://www.youtube.com/watch?v=aUZJz...


Some More Tags :- how to - how to lose weight fast - how to lose weight - lose weight fast - tips to lose weight - tips to lose weight fast - how to lose weight quickly - ways to lose weight - How To Lose Weight - Best Way To Lose Weight Fast - Lose weight fast 2014....

  ***A simple and best way to lose your body weight very fast***


CLICK HERE TO LOSE YOUR WEIGHT FAST

Monday 30 September 2013

How To Be Happy - Be Confident

0 comments
Do you want to be a happier person ? Just watch this video till end i beat something will change in you.You will be confident which results you to be happier.

How To Be Happy - Be Confident
**How To Be Happy - How To Be Confident**

Share This Video Among Your Friends:- http://youtu.be/PbZ1Jmwg1Yk

SUBSCRIBE:- http://www.youtube.com/subscription_center?add_user=jptv1dz

Here Are More Steps To Follow To Be A Happier Person Of This World:-

1) Always Be optimistic.
2) Own Yourself
3) Make Enough Money To Meet Basic Needs
4) Treat Your Body Like It Deserves To Be Happy
5) Always Try To Stay Close To Your Friends And Family.
6) Find Happiness In The Job You Have Now.

How To Be Happy - Be Confident
 
If you've ever wanted to be happier than you are, you're obviously not alone.Always Ask Yourself Whats the reason behind your unhappiness try to catch that mid point and try to solve it gently I promise after doing this you will be the happiest person.
   
              If You are unhappy due to your partners reason try to consult him/her express your feelings. Main point Please Don't show your attitude to your lover.

          If you are unhappy from your job why the hell you need to do that i don't think there is only one job in this world . Do the things that you love.

      If you are unhappy bzu you don't have enough money then please never give up and never try to earn more and more. Fulfill your basic needs be happy with your family why you need expansive cars and expansive this? Just to show others !!! Don't give a Fu*k on that......

Subscribe My Channel If something have changed on you after reading this :- http://www.youtube.com/subscription_center?add_user=jptv1dz

Links:-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~­~~~~~~~~
http://facebook.com/suraj.pandey.3532
http://instagram.com/canugod
http://itstrickszone.blogspot.com
http://youtube.com/jptv1dz

   Share this video:- http://youtu.be/PbZ1Jmwg1Yk

Make You Android Fast By 10x:- https://www.youtube.com/watch?v=RdxnLVYNzdg&list=TLayM7DjtPSUw&index=3

Speed up youtube videos:- https://www.youtube.com/watch?v=0d8vs...

Speed up your google chrome:- https://www.youtube.com/watch?v=Pdtu0...

Epic Girl Friend Prank:- https://www.youtube.com/watch?v=aUZJz...

Thank you http://www.ravenprodesign.com/ for intro...

***Some More Tags***
 how to be happy
how to feel happy
what is happiness
happiness book
how to be happy alone
how to be confident
how to be happy in life
how to be happy in a relationship
how to be happy everyday
how to be happy being single
how to be happy quotes
how to be positive
how to be happy in life
how to be happy with yourself
how to be truly happy
how to be happy all the time
reasons to be happy

CLICK HERE TO WATCH THE VIDEO

Monday 5 August 2013

Wifi Hacking - WEP - Kali Linux Aircrack-ng suite

0 comments
Alright, this post is written assuming you have Kali Linux up and running on your computer. If not, here is a post on hacking with kali linux. It will tell you about what Kali Linux is, and how to use it. It will guide you through installation process.
So if you are still following, then just follow these simple steps-


Firstly, create a wireless network to crack. Don't use this method on others. It is illegal. Then proceed with the steps below.

1. Find out the name of your wireless adapter.



Alright, now, your computer has many network adapters, so to scan one, you need to know its name. So there are basically the following things that you need to know-
  • lo - loopback. Not important currently.
  • eth - ethernet
  • wlan - This is what we want. Note the suffix associated.
Now, to see all the adapters, type ifconfig on a terminal. See the result. Note down the wlan(0/1/2) adapter.





2. Enable Monitor mode

Now, we use a tool called airmon-ng to  create a virtual interface called mon. Just type 
airmon-ng start wlan0
 Your mon0 interface will be created.



3. Start capturing packets

Now, we'll use airodump-ng to capture the packets in the air. This tool gathers data from the wireless packets in the air. You'll see the name of the wifi you want to hack.
airodump-ng mon0


4. Store the captured packets in a file 

This can be achieved by giving some more parameters with the airodump command
airodump-ng mon0 --write name_of_file

Now the captured packets will be stored in name_of_file.cap
You have to wait till you have enough data (10000 minimum)


5. Crack the wifi

If all goes well ,then you'll be sitting in front of your pc, grinning, finally you've got 10000 packets (don't stop the packet capture yet). Now, you can use aircrack-ng to crack the password. (in a new terminal)
aircrack-ng name_of_file-01.cap 
The program will ask which wifi to crack, if there are multiple available. Choose the wifi. It'll do its job. If the password is weak enough, then you'll get it in front of you. If not, the program will tell you to get more packets. The program will retry again when there are 15000 packets, and so on.

Note : This will not work with WPA-2. Here is a tutorial on -
Hacking wpa/wpa-2 wps with reaver on kali linux


Troubleshooting : Check this link if you failed to hack the network. 

The missing ingredient

Here is a comparatively advanced tutorial which will require you to have gone through this tutorial as well as the missing ingredient one. After you have got the big picture, you can move on to complicated things like speeding up wifi hacking.
Speeding Up WEP Hacking



Saturday 3 August 2013

Virtual Private Networks, Another Way To Ensure Privacy

0 comments
Before we get to the interesting part, first a little bit introduction about what a VPN is -
Put simply, a Virtual Private Network, or VPN, is a group of computers (or discrete networks) networked together over a public network—namely, the internet. Businesses use VPNs to connect remote datacenters, and individuals can use VPNs to get access to network resources when they're not physically on the same LAN (local area network), or as a method for securing and encrypting their communications when they're using an untrusted public network. When you connect to a VPN, you usually launch a VPN client on your computer (or click a link on a special website), log in with your credentials, and your computer exchanges trusted keys with a far away server. Once both computers have verified each other as authentic, all of your internet communication is encrypted and secured from eavesdropping. (lifehacker)
 So basically, what happens here is that the data you send is protected from eavesdropping. It is encrypted in  a way that can't be decrypted easily. So, other than the two methods discussed earlier, VPN is a method to stay anonymous too.

What are the advantages of using a VPN?

  1. Your data is encrypted.
  2. No-one can eavesdrop your communications.
  3. Your privacy is ensured.
  4. You can pretend to be someone you are not (You wanna use some service which is banned in your country, VPN is the answer).
  5. You can overcome browsing restrictions imposed on you.

What makes a good VPN?

  1. Price - Hell yeah, it should be priced reasonably (did I forget to mention VPNs are not free of cost)
  2. Free? Yeah, there are some free VPNs too. They serve you ads and are more or less useless. They dont do what they promise. They are good for beginners though, who want to learn, and privacy is not much of a problem.
  3. They should use SSL. If you have no idea what this means, then, simply put, its the best protocol the VPNs use, and all others come next to SSL. (other protocols have their own pros and cons)
  4. Logging- Some VPNs log your data. Not good.
  5. Exit location - There must be a lot of them. That is, you can pretend to be a lot of people. Also, if there are very less exit locations, then it will affect browsing.

How VPNs work?


If you need more info, google it. I'm not going to name specific VPN service for you, all have their pros and cons. You'll have to do your homework. However, if you need reference, then lifehacker has a good article about it.

Staying Anonymous

0 comments
Alright Guys, this is the first post of this blog. But I won't waste time with formalities. But before you become a hacker, you must know how to stay anonymous online. There are various levels in which this can be done
(Note: None of these methods are completely foolproof. If you are doing something illegal, then you'll go to jail. That's it.)

Tails OS

"Tails is a live system that aims to preserve your privacy and anonymity. It helps you to use the Internet anonymously almost anywhere you go and on any computer but leaving no trace unless you ask it to explicitly."
This is what their official website has to say about it. Actually, it is nothing but an OS that comes with all applications customized for privacy and anonymity.
Thats what tails OS looks like.


How To Use
  1. Go to their official website and read the stuff there. 
  2. Download the latest version of the OS.
  3. Put it on a USB and boot.
  4. Explore the OS, and learn more about it from their documentation.
Once you are through with the documentation and have practiced enough with the OS, your identity is safe.


Tips
  1. You should have some experience with linux if you want to become a hacker. Ubuntu is good for beginners.
  2. Do not assume that you are completely anonymous. You are not.

TOR BROWSER BUNDLE

"The Tor software protects you by bouncing your communications around a distributed network of relays run by volunteers all around the world: it prevents somebody watching your Internet connection from learning what sites you visit, it prevents the sites you visit from learning your physical location, and it lets you access sites which are blocked.
The Tor Browser Bundle lets you use Tor on Windows, Mac OS X, or Linux without needing to install any software. It can run off a USB flash drive, comes with a pre-configured web browser to protect your anonymity, and is self-contained." - Official Website
If the idea of downloading a whole OS sounds boring to you, then this browser is made for you. It, however, is not as robust as tails, and its usage is limited to anonymous browsing.

    How To Use
    1. Go to their website and read the documentation.
    2. Download the latest browser bundle.
    3. Read the documentation.
    4. Install and run.
    Note:
    Browsing is annoyingly slow, since the traffic passes through three relays.

    That's all for this post. In the next post we'll talk about VPNs.


    Tuesday 30 July 2013

    How To Make Google Chrome Faster By 5x 2014 - Jpt Videos

    0 comments
    Make Your Google Chrome Faster Then Before. By Watching This Video You Will Be Able To Increase Your Google Chrome Speed By 5X.This Is An Updated Video Of 2014 To Make Google Chrome Faster Then Before.A Best Way To Make Your Google Chrome Faster.

    Video Link;- https://www.youtube.com/watch?v=Pdtu0RrE7Co&feature=youtu.be


    SUBSCRIBE:- http://youtube.com/user/jptv1dz









    Monday 18 March 2013

    How to Disable or Turn Off Facebook Graph Search

    0 comments
    Recently Facebook developers introduced a new feature called Facebook Graph Search for it's users. Now Facebook is allowed to active Graph Search only for limited account, those who are using Facebook in (US) English.

    This is one of the advanced search feature which is loved by most of the Facebook users. But few of Facebook users are disappointed with this Graph Search feature. If you activate Facebook Graph Search once in you account, you can't disable the new search feature again.


    How to Disable or Turn Off Facebook Graph Search


    Today I'll show you a simple trick to disable Facebook Graph Search to your account. Already I said that Facebook graph Search is only available for English (US) Facebook users. So you can simply disable Graph Search on your account by changing the current language to English (UK) or any other known languages.

    Steps to disable Facebook Graph Search

    Sign in to your Facebook Account.
    Go to Account Settings.


    How to Disable or Turn Off Facebook Graph Search

    In General Account Setting, click on Language --> Edit
    Now you have to select English (UK) or any other known language.

    How to Disable or Turn Off Facebook Graph Search

    That's all, after that click on Save Changes button. Now you have successfully disabled Facebook's Graph Search and turned back to old search bar.

    Tuesday 12 March 2013

    Download Mozilla Firefox 19.0.2 Latest Version

    0 comments
    Mozilla Firefox released the latest version of Firefox 19.0.2. The latest version is released for all four major platforms Windows, Mac, Linux and Android. Mozilla developer team have fixed many bugs and improved higher security on this 19.0.2 version. Now users can download the latest version from Mozilla's official site. 

    Download Mozilla Firefox 19.0.2 Latest Version

    What's new and Bug fixes

    19.0.2: Security-driven release.
    Fixed stability issue.
    Built-in PDF viewer.
    Startup performance are improved.
    Added Remote Web Console.
    CSS page supports.
    Now CSS text transform is supports in full width.

    Click here to Download Firefox 19.0.2 for - Windows
    Click here to Download Firefox 19.0.2 for - Mac OS X
    Click here to Download Firefox 19.0.2 for - Linux
    Click here to Download Firefox 19.0.2 for - Android

    LinkedIn Reaches 1 Billion Endorsements [Infographic]

    0 comments
    LinkedIn team have officially announced that they having more than 1 billion endorsements in less than six months. Six month ago LinkedIn introduced a new new feature called Endorsements. With this useful feature, users can easily recommend their professional connection.


    LinkedIn Reaches 1 Billion Endorsements

    Now LinkedIn has designed an infographic to show their milestone. You can get to know more about this milestone by checking the below given infographic.


    A Bright Future For Your Kids Once You Spy iPhone Text Messages Of Theirs

    0 comments
    Texting texting texting; this habit of children is indeed a headache for all parents. The tic tac sound coming from your child’s room at all times is not their wall clock but the sound of their keypad buttons pressing while texting. Too much texting by kids from their iPhone is an irritating thing for parents and it’s not so good for your child’s health even. Excessive texting results in less sleep and creates plenty of problems for children. If parents decide to spy iPhone text messages of their kids with StealthGenie, then they can definitely change this irritating habit of their kids.

    A Bright Future For Your Kids Once You Spy iPhone Text Messages Of Theirs

    Monitoring Cell Phones:
    From anywhere in the world and at any time you want to, you may monitor the activities of your kids with the help of StealthGenie. This app is really small in size and it runs quietly inside your kid’s cell phone. StealthGenie is really user-friendly and extremely easy to use. This app does not even disrupt any feature of your kid’s cell phone while it is being installed in it.


    Suitable Phones:
    iPhone 4S and iPhone 5 are the latest iPhone models that are perfectly compatible with this app. You simply need to connect to the internet and use your log-in details to gain complete access to all the data that is stored inside the cell phone of your kids.


    SMS Messages:
    SMS messages present in the Inbox and Drafts of your child’s cell phone are shown to you by StealthGenie. Parents may even access all the SMS messages sent by children from their iPhone and may even retrieve any deleted SMS messages by them.

    Phone Data And imessages:
    All the photos and videos stored inside your kid’s iPhone are provided to you with the help of this app. Parents even get to view all the photos and videos shared by their children through imessages. Even all the text messages sent and received by kids through imessage are shown to parents.


    Child Monitoring:
    Teenage is one such time where all the habits of children tend to get attached with them for life. If you wish to make a good man of your kid, then you need to make sure that they mend their ways as early as possible. Spy iPhone text messages of your kids with StealthGenie and make sure that they don’t get on the wrong path.