Skip to main content

Posts

Showing posts from May, 2020

sQL map

Installing SQLMAP:  Sqlmap is a tool used to find and inject SQL injection vulnerabilities in a database/web application. The process of installing sqlmap is a little more complex because you can’t install it directly from the pkg install command. Here is the installation process: Update pkg update Install Python2 pkg install python2 Install Git pkg install git Clone sqlmap git repository: git clone  https://github.com/sqlmapproject/sqlmap.git Now list all the directories in the current location and change to the sqlmap directory ls (to list all directories) cd sqlmap (if you find the sqlmap directory in the list then type this command) Now find sqlmap.py and run it ls (to list all directories/files to find sqlmap) python2 sqlmap.py (to run the sqlmap.py script) That’s it. Now you can use sqlmap.

Hydra

Installing Hydra: Hydra is one of the best password cracking and brute-forcing tool. It supports different services like telnet, ssh, ftp, etc. To install hydra in termux use this command: pkg install hydra

Nmap

Installing Nmap: Nmap is a complete network mapping tool used for scanning ports and vulnerabilities in a network. To install Nmap simply use the following command: pkg install nmap

Metasploit

Installing the Metasploit framework on Termux: Metasploit is one of the best and most used hacking tools right now. It is a complete framework that finds vulnerabilities, finds exploits related to those vulnerabilities and other hacking works. To install the metasploit framework on your termux follow these commands: pkg install unstable-repo pkg install metasploit

Hacking in termux

Hacking on Termux: Now let’s discuss how to use termux for Hacking. Termux allows you to install many useful hacking tools on your Android phone. These awesome hacking tools include Wireshark, Nmap, Metasploit framework, Sqlmap, etc. If I started covering all the tools, the article will become a booklet. That’s why I’ve going to share only the most used tools with the installation process.

Why Termux

Why Termux? Now we know that termux is a Linux Terminal Emulator. But why it is so famous and sometimes called a hacking machine. Well, that’s somehow true and sometimes a piece of false information also. Termux is not a standalone hacking application. As we discussed, it’s a program that takes instructions and runs scripts. In some Linux distributions like Kali, Parrot OS, we find a lot of tools for penetration testing. Most of them are CLI based and run through the terminal. We can also install various other tools and run different scripts made for Pentesting. So on Android, obviously you get a complete GUI environment. Where these tools won’t work without any command line utility. That is where termux is used to install such tools on your Android Platform. Our Android is also based on a modified Linux kernel. That’s why we can use Bash scripting in it. That’s why termux can easily connect to the file system to perform the majority of the set of features. Which allows you to ...

What is shell

What is Shell? A shell is a command line interface, or you can say a program that takes commands from the user and instructs the operating system to perform tasks on the basis of these commands. There are many shells used in different operating systems like Bourne shell, C shell, Bourne Again shell. All have a different set of features and command behavior. Most of the Linux distributions have Bourne Again shell also known as bash as their default command line.

Tool-X

Tool-X       Introduction Tool-X is a Kali Linux hacking tools installer for Termux and linux system.  Tool-X was developed for Termux and linux based systems. Using Tool-X, you can install almost 370+ hacking tools in Termux (android) and other Linux based distributions. Now Tool-X is available for Ubuntu, Debian etc.     Operating System Requirements Tool-X works on any of the following operating systems: •  Android  (Using the Termux App) •  Linux  (Debian Based Systems) •  Unix How to Install Open the terminal and type following commands. apt update apt install git git clone https://github.com/rajkumardusad/Tool-X.git cd Tool-X chmod +x install.aex sh install.aex  if not work than use  ./install.aex How to Use ? Enter a Number for a specific output: (1) : To show all available tools and type the number of a tool which you want to install. (2) : To show tools category. (3) : If you want to update Tool-X. (4) : If you wa...