Description


The purpose of this website is to provide education and share information about Linux, Kali linux, its tools , usage, and more about relevant topics

Saturday, December 31, 2022

Fluxion tool in linux

 This is a tool in linux or specially used in kali linux for security auditing and social engineering purposes. It is actually a research tool that was used in past as vk496 and its the latest version consisting more functionalities. The fluxion tool is used to hack wifi passwords of WPA and WPA2 of the targetted wireless networks by fishing.

Fluxion Tool Appearance










It is preinstalled on BlackArch linux distribution

Installation process on Kali Linux:

    1. $: git clone https://github.com/FluxionNetwork/fluxion

    2. $: cd fluxion/

    3. $: sudo ./fluxion.sh

After installation you start it by typing the commands and if you start it as root

    1. $ :sudo ./fluxion

Friday, December 30, 2022

cd command in linux

Change Directory cd, cd command is used to change the directory to another. It is used when you want to move from one directory or folder to another to you use cd command.
Example:
$: cd directoryname





suppose you want to go to Desktop folder then use the command
$: cd Desktop

If you want to come back from the Desktop to root then only type
$: cd

--help command in linux

 in any distributions of the linux you can use the command help with two hyphens before it like --help to fine help. And if you use any command you can find help for that by typing --help.

 Example:

$: --help

or 

$: [option] --help



ps command in linux

 Process Status (or ps) ps command in linux is used to display that which programs are under execution or which process are running on the system. it lists currently running process and their PIDs with some many other information.

Example:

$:ps [option]



Echo command in linux

 Echo command in linux is used to display text that written after the keyword echo. it can be a message or any other information

example:

$: echo Hello Guys





Fluxion tool in linux