Showing posts with label terminal. Show all posts
Showing posts with label terminal. Show all posts

Friday, March 25, 2016

How to create a hotspot in MICROSOFT WINDOWS without any software (using CMD only)

Hey Guys,

Lots of guys asked me


    "How to make hotspot in your windows laptop without using any SOFTWARE"

NOTE: Using CMD(Command Prompt) Only

1. Open CMD
  a. by pressing START+R and type cmd in it.
  b. just type cmd in start search bar(for windows 7+)


2. Now just type the following commands in it:

# netsh wlan set hostednetwork mode=allow ssid=tricksvibe key=password

# netsh wlan start hostednetwork



3.  To check the status of hotspot:

# netsh wlan show hostednetwork



4. To stop hotspot:

# netsh wlan stop hostednetwork



Or if you are lazy like me then just download the scripts written by me and double click on them :p

StartScript

ShowStatusScript

StopScript

So this was my little post for
how to make hotspot in windows without using any software (only using cmd).

Like us
Subscribe us
If u liked what we did.

Thanx for watching and hope it helped.



Read more

Monday, March 07, 2016

Enabling Monitor Mode in Kali 2.0 SANA



Hey guys
Today I am gonna show you "how to enable monitor mode in kali 2.0 SANA"

First of all press (ctrl+alt+t) to open "Terminal".Then type following commands :





Commands:

To get name of your wifi card type "ifconfig" only it should be something like "wlan0,wlan1" (i.e, wlan in starting and a no. at last)

ifconfig wlan0 down
iwconfig wlan0 mode monitor
ifconfig wlan0 up



To check whether your monitor mode is enabled or not, just type:

airodump-ng wlan0 

Note: In kali 2.0, latest version of aircrack is used, in which monitor mode name is same as wifi card name i.e., wlan0,wlan1 types(not mon0).


For KALI's previous versions, the command for enabling monitor mode was:

airmon-ng start wlan0

and name of monitor mode will be mon0, so it was very simple in the previous versions of aircrack :p


Thanx for visiting. :)

Hope it helped.

Subscribe us and like us if you liked our posts.

Our youtube channel: tricksvibe

Video Description : Enabling Monitor Mode in Kali 2.0 SANA
Read more

Monday, January 18, 2016

How to install ADB+FASTBOOT in LINUX OS

Hello guys,

As we all know that the best OS for doing Development tasks is LINUX, so today i am gonna tell you guys to install "ADB+FASTBOOT" in LINUX with simply installing ".sh" scripts.


Steps:

1. Download this zip from here.

2. Extract it.

3. Open terminal emulator ( shortcut key: alt + ctrl + T )

4. Now just type the following command:

#sudo -i                                                  (then enter your passwod)
#cd "Directory where you extracted that zip" (eg: cd /home/username/Download/V1.Automatic-Adb+Fastboot_Linux_Installer/)
# ./Adb+Fastboot_Drivers_installer.sh

Done

Comment below if any problem........... Have a good time.... :)
Read more