Sunday, November 3, 2013

Reverse tethering of lan internet for windows 7

Reverse tethering of lan internet from pc to any device by wifi without any software on windows 7.

How to Share PC/LAN internet with your Android device (No Rooting)

NO AD-HOC OR TETHERING IS REQUIRED.

1. Run CMD with administrator rights.
2. Type these commands with one followed by another
(i) netsh wlan set hostednetwork mode=allow ssid=NAME key=PASSWORD
(ii)netsh wlan start hostednetwork
(the name and password could be anything as you desire)
3.Type ncpa.cpl in the RUN command.
4. Choose the internet network you normally use. Then double click and navigate to properties and then to the sharing. Check the box and choose the network that corresponds to the network you just created.
5. Click OK and done.
6. A WIFI network would be created and you can use it to connect to the internet in your Android device.

NOTE: If you want to delete the network paste this in the cmd:
netsh wlan stop hostednetwork

Friday, May 17, 2013

Kali Linux released

Kali Linux has been released as a successor and replacement of BackTrack.

Now there will be no more backtrack new version.

It's a brand new Debian based penetration testing OS, made for support for upcoming technologies.

Read more at http://www.kali.org/


Saturday, November 10, 2012

Basic Backtrack command - 1

1. Logging

->root
->toor


2. Starting gui

->startx

3. mac changing

->macchanger --mac 11:12:43:44:75:56 eth0

4. Wireless connection

->iwconfig -a
#This will show all the wireless extension with detailed information of wireless card.

->ifconfig eth0 up
#By default all the interface is disable.To enable the eth0 interface.

->ifconfig eth0 down
#To disable the eth0 interface.

->wicd
#To show the wireless manager after enabling the interface

------------------------------------------------------------------------