Wednesday 10 June 2020

Enable Android Permissions Automatically in Android payload

4 comments

Enable Android Permissions


Hey geeks i hope you are doing great and today I am here with a new trick to enable all Android permissions in any App ( whether it's binded with payload or not ) 

So let's see then :)

So first we will fulfill our requirements :

  • Apkmod must be installed in termux
  • That's it :)

How to install Apkmod ? 

  • First download installer script 
wget https://raw.githubusercontent.com/Hax4us/Apkmod/master/setup.sh

  • Now execute or run it
sh setup.sh


Ok so now everything is setup :)

Enable Android Permissions 

apkmod --enable-perm=/path/to/app.apk -o output.apk


In Case if you want to watch a practical video 


Read More

Monday 1 June 2020

How to install trape in termux

2 comments
Hax4Us

Hey guys so i am here again with a awesome post where we will see that how can we install trape in termux.

Trust me it's going to be a easy task :)

Ok so let me tell the requirements first
  • A good internet connection
  • And wait ? What ? Yes that's it
Lets do this then 
  • First install TermuX BlacK ( A TermuX repository for hackers ) 
Ok so how to install TermuX BlacK then ? Well let's see
Just execute following commands one by one 
       wget https://github.com/Hax4us/TermuxBlack/raw/master/install.sh

       sh install.sh

Ok so now TermuX BlacK is installed and now you can easily install trape by just one
Command
       apt install trape

Now to launch trape 
      trape
Now you will see interface like this


That's it :) now configure your trape as usual & in case of anytype of query you can always join our community in telegram CLICK HERE

In case if you don't know how to setup/configure trape at first time so you can watch below video



Read More

Wednesday 20 May 2020

How to install metasploit in termux android lolipop or marshmallow

2 comments
Hax4Us

So after many issues faced by users of android below nougat , i decided to add android 5 and 6 support in my script.

Steps :

  • download the script in $HOME directory wget https://raw.githubusercontent.com/Hax4us/Metasploit_termux/master/metasploit.sh
  • Run chmod +x metasploit.sh && ./metasploit.sh
Now you can use or run metasploit by command 
msfconsole
Well in case of any error you can always comment here or open an issue on my GitHub repository Metasploit_termux
Read More

Tuesday 31 March 2020

How To Install Masscan In Termux (Android)

3 comments

Hax4Us.com
Hey geeks so i am here again after a long time, with a cool stuff. As you can see in topic section , we are going to install Masscan ( A powerful tool for CTF ) which was requested by Shiv Twitter Uname @1ndianl33t

So without any delay , let's see requirements and steps.

Note :- All commands are written in bold style & in red color.

Requirements :-





  1. Termux ( offcourse )
  2. Build essential packages ( see step 1 )
  3. Good internet connection
  4. And at last patience.

Steps :-


  1. Install build essential packages apt install build-essential
  2. Download the Masscan package wget https://Hax4us.github.io/files/masscan.tar.gz & Extract it tar xf masscan.tar.gz
  3. Goto masscan directory cd masscan 
  4. Now it's time to build it make
  5. Move it to bin so that you can access it easily mv bin/masscan $PREFIX/bin 
  6. Give execution permissions chmod +x $PREFIX/bin/masscan
  7. That's it :) Now you can use it.

Read More