Crack Password with termux

30

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

How To Hack Facebook With termux

25

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

TERMUX COMMANDS

4

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

©CmTechz

HOW TO HACK A WEBSITE

6

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


HACK ANDROID PHONES

5
Hack Any Android device With Metasploit-Framework On Termux Without Having Root...

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
This script will install the latest version of metasploit-framework.script also include some extras to make updating metasploit faster. If all goes well, i.e. No red colored warnings, you can start metasploit using ./msfconsole.

Manual Installation

Prequisities

Make sure you have these packages installed
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
Clone the metasploit-framework repository
git clone https://github.com/rapid7/metasploit-framework
cd metasploit-framework
NOTE
Cloning repository is not recommended as it may have some bugs!
Or you can download and extract the latest source package
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
Install bundler gem
gem install bundler

Install gems

Not all dependencies can be installed with bundler. Manual workarounds are needed to get them going.

nokogiri

nokogiri gem will try to compile its own libxml and libxslt, which does not work in Termux because the configure script has incorrect shebang. Instruct gem to use local libraries
gem install nokogiri -- --use-system-libraries
Read #69 and #79 to learn more.

All other dependencies can be easily installed with
bundle install -j5

Fix shebangs

Termux is a prefixed system, so, all executables are not available at /usr/bin. To fix this run $PREFIX/bin/find -type f -executable -exec termux-fix-shebang \{\} \;

Now you can run ./msfconsole

Meta2.png

Connect to Database

Metasploit-framework uses postgresql as database adapter. First we have to setup postgresql
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
(database is already done setting up if you are using automatic installation)

KALI LINUX IN TERMUX

11
Install All Kali Linux Tools in Termux ..

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 1 :- Install Termux from Play Store

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
git clone https://github.com/Gameye98/Lazymux.git

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.
 

Popular Posts