Termux Basic Commands.

TO UPDATE

apt update

Check whether termux is properly installed

pkg install sl

sl

Now you will be seeing a moving train if all is well with the setup of Termux.

Know all running processes in Termux

top

Display text in a different style

apt install figlet

figlet anyword

See Matrix background animation on Termux

apt install cmatrix

cmatrix + ENTER

Find factors of a number

pkg install coreutils

factor 1337

Go to the friendly interactive shell, fish

apt install fish

fish+ENTER

To see text in colorful style

apt install toilet

toilet -f mono12 -F green BugBounty

To open any site in termux

apt install w3m

w3m google.com

Installing Metasploit in Termux

First, install curl

pkg install curl

after that:

curl -LO https://raw.githubusercontent.com/Hax4us/Metasploit_termux/master/metasploit.sh

Get access permission

chmod 777 metasploit.sh

./metasploit.sh


Comments